/* ===== Variables ===== */
:root {
  --dark:   #211832;
  --dark2:  #2c2241;
  --pink:   #ef9fb6;
  --pink2:  #f8dbe4;
  --soft:   #fff7f9;
  --text:   #2b2138;
  --muted:  #7f7189;
  --line:   #ead7df;
  --gold:   #d7a35a;
  --white:  #fff;
  --shadow: 0 18px 45px rgba(33,24,50,.12);
  --radius: 22px;
  --font:   'Tajawal', Arial, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: var(--font); background: none; }
img { max-width: 100%; display: block; }

/* ===== Top Bar ===== */
.topbar {
  height: 36px;
  background: var(--soft);
  border-bottom: 1px solid #f2e4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  color: #3b3048;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 16px;
}
.topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ===== Navigation ===== */
.nav {
  height: 74px;
  background: linear-gradient(90deg, #171124, #2b203e);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 36px;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

/* Logo — rightmost in RTL (first in DOM) */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #f5b3c4;
  font-size: 34px;
  letter-spacing: 1px;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  margin-top: 3px;
  text-align: center;
  letter-spacing: .5px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 13px;
  background: linear-gradient(145deg, #fff, #f4c5d2);
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,.25);
  flex-shrink: 0;
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 9px 11px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 10px 10px 14px 14px;
  background: rgba(255,255,255,.2);
}

/* Desktop Nav links — centered */
.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.navlinks a {
  font-size: 14px;
  color: #f0e6f0;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.navlinks a:hover { color: var(--pink); }
.navlinks a.active {
  color: #f5a9bc;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 6px;
}

/* Nav icons — leftmost in RTL (last in DOM) */
.nav-icons {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #f0e6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  position: relative;
}
.nav-icon-btn:hover { background: rgba(255,255,255,.2); }
.cart-badge {
  position: absolute;
  top: -3px;
  left: -3px;
  background: #e887a1;
  color: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 1.5px solid #1e1530;
}

/* Hamburger — hidden on desktop, shown via media query */
.mobile-menu-btn {
  display: none;
  color: #f0e6f0;
  padding: 6px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  transition: background .2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,.2); }

/* ===== Mobile dropdown nav — always hidden by default ===== */
.mobile-nav {
  display: none;
  background: #1a1230;
  position: sticky;
  top: 62px;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* ===== Buttons ===== */
.btn {
  height: 50px;
  min-width: 190px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.6);
  transition: all .22s;
  text-align: center;
}
.btn-primary {
  background: var(--pink);
  color: var(--dark);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: #e88ba8;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(239,159,182,.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* ===== Hero ===== */
.hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 20% 50%, rgba(239,159,182,.35), transparent 35%),
    linear-gradient(90deg, #211832 0%, #2a203d 43%, #f9dbe4 100%);
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.06));
  pointer-events: none;
  z-index: 0;
}

/* Hero sides */
.hero-side {
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 30px;
  overflow: hidden;
}

/* Fabric */
.fabric {
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: radial-gradient(circle at 50% 0, #f7d6df 0, #d9b5c1 38%, #a68192 72%, transparent 73%);
  opacity: .55;
  filter: blur(.2px);
  pointer-events: none;
}

/* Flowers */
.flowers {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #e8a5b7 0 8%, #b76585 9% 12%, transparent 13%);
  background-size: 30px 30px;
  opacity: .6;
  filter: blur(.4px);
  pointer-events: none;
}
.flowers-right { right: 16px; top: 60px; }
.flowers-left  { left: 30px;  top: 60px; }

/* Dark spray bottle */
.spray-bottle {
  position: relative;
  width: 140px;
  height: 310px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(90deg, #16101f, #392a52 42%, #211832);
  box-shadow: 0 28px 50px rgba(0,0,0,.38);
  z-index: 2;
  margin-top: 70px;
  flex-shrink: 0;
}
.spray-bottle::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 48px;
  background: #111;
  border-radius: 9px 17px 7px 7px;
  top: -50px;
  right: 18px;
  box-shadow: 36px 4px 0 -17px #111;
}
.spray-bottle::after {
  content: "وصوف\A LINEN SPRAY";
  white-space: pre;
  position: absolute;
  inset: 100px 0 auto;
  text-align: center;
  color: #f3b2c4;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
  font-family: var(--font);
}
.gold-neck {
  position: absolute;
  top: -7px;
  right: 44px;
  width: 50px;
  height: 38px;
  background: linear-gradient(90deg, #c38b3f, #f4d087, #b47a35);
  border-radius: 4px;
  z-index: 1;
}

/* Mist */
.mist {
  position: absolute;
  width: 200px;
  height: 70px;
  top: 130px;
  right: 155px;
  background: radial-gradient(ellipse at right, rgba(255,255,255,.75), rgba(255,255,255,.2) 45%, transparent 70%);
  filter: blur(3px);
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}
.mist-left {
  right: auto;
  left: 155px;
  transform: rotate(188deg);
}

/* Body spray */
.body-spray {
  position: relative;
  width: 116px;
  height: 255px;
  border-radius: 22px;
  background: linear-gradient(90deg, #fff, #f4eef1 50%, #fff);
  box-shadow: 0 25px 45px rgba(87,54,68,.18);
  z-index: 2;
  margin-top: 70px;
  border: 1px solid rgba(255,255,255,.8);
  flex-shrink: 0;
}
.body-spray::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 60px;
  background: rgba(255,255,255,.75);
  border: 1px solid #eee;
  top: -54px;
  right: 28px;
  border-radius: 9px 9px 4px 4px;
}
.body-spray::after {
  content: "وصوف\A BODY POWDER\A SPRAY";
  white-space: pre;
  position: absolute;
  inset: 85px 0 auto;
  text-align: center;
  color: #b96c83;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  font-family: var(--font);
}

/* Hand */
.hand {
  position: absolute;
  width: 155px;
  height: 230px;
  background: #f1c7b9;
  border-radius: 85px 85px 46px 46px;
  left: 45px;
  bottom: 0;
  transform: rotate(-12deg);
  opacity: .85;
  z-index: 1;
}
.hand::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 145px;
  background: #f0c3b3;
  border-radius: 28px;
  right: 22px;
  top: -95px;
  transform: rotate(20deg);
}

/* Badges */
.badge {
  position: absolute;
  top: 44px;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: #f7c3d1;
  color: var(--dark);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  line-height: 1.45;
  font-size: 13px;
  z-index: 5;
  box-shadow: var(--shadow);
}
.badge-right { right: 36px; }
.badge-left  { left: 36px; background: #fff1f5; }

/* Hero center copy */
.center-copy {
  text-align: center;
  z-index: 3;
  padding: 36px 24px 48px;
  position: relative;
}
.center-copy h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.22;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
}
.center-copy > p {
  font-size: 18px;
  line-height: 1.9;
  margin: 0 auto 28px;
  max-width: 500px;
  color: #f0e6f1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero bottom features */
.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-features > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  color: #f0e6f1;
  font-size: 13px;
  line-height: 1.5;
}
.feat-icon {
  font-size: 26px;
  color: #f5c4d0;
  display: block;
}

/* ===== Sections ===== */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 20px;
}

.section-title-wrap {
  text-align: center;
  margin: 0 0 30px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  display: inline-block;
  position: relative;
}
.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--pink);
  vertical-align: middle;
  margin: 0 12px;
}

/* ===== Category Grid ===== */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.cat {
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(110deg, #f8dce5, #fff);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}
.cat-light { background: linear-gradient(110deg, var(--soft), #fff); }
.cat-copy { padding: 32px; }
.cat-copy h2 {
  font-size: 27px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--dark);
}
.cat-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #55465e;
  margin: 0 0 20px;
}
.smallbtn {
  background: var(--dark);
  color: #fff;
  border-radius: 7px;
  padding: 12px 22px;
  display: inline-flex;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  transition: background .2s;
}
.smallbtn:hover { background: var(--dark2); }

/* Mini bottles in category */
.mini-bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px 16px;
}
.mini-bottle {
  width: 72px;
  height: 170px;
  background: var(--dark);
  border-radius: 15px 15px 11px 11px;
  position: relative;
  box-shadow: 0 16px 28px rgba(0,0,0,.18);
  flex-shrink: 0;
}
.mini-bottle::before {
  content: "";
  position: absolute;
  top: -32px;
  right: 16px;
  width: 38px;
  height: 30px;
  background: #111;
  border-radius: 7px;
}
.mini-bottle::after {
  content: "وصوف";
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  text-align: center;
  color: #f1a8bb;
  font-weight: 800;
  font-size: 12px;
  font-family: var(--font);
}
.mini-bottle-white {
  background: #fff;
  border: 1px solid #f0dce3;
}
.mini-bottle-white::before {
  background: #f5edf0;
  border: 1px solid #eee;
}
.mini-bottle-white::after { color: #bd7288; }

/* ===== Tabs ===== */
.tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}
.tab {
  padding: 9px 18px;
  border-radius: 7px;
  background: #f6e5eb;
  color: #5a4b65;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  transition: all .2s;
}
.tab:hover { background: #eed6df; }
.tab.active { background: var(--dark); color: #fff; }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid #f1e2e8;
  border-radius: 14px;
  overflow: visible; /* allow bottle top to show */
  box-shadow: 0 8px 22px rgba(33,24,50,.07);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(33,24,50,.13);
}
.product-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #7a5f99;
  color: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.label-pink { background: #cf7f98; }

/* Product image area */
.product-img {
  height: 148px;
  background: linear-gradient(145deg, #f7dce5, #fff);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 14px 14px 0 0;
  overflow: visible;    /* allow pump (::before) at -18px to show */
  padding: 24px 0 0;   /* top space for pump */
  position: relative;
}
.product-img-light { background: linear-gradient(145deg, var(--soft), #fff); }

/* Standalone product card bottle — no inheritance issues */
.prod-bottle {
  width: 48px;
  height: 108px;
  border-radius: 11px 11px 8px 8px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}
.prod-bottle::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 10px;
  width: 26px;
  height: 18px;
  border-radius: 5px 5px 2px 2px;
}
.prod-bottle::after {
  content: "وصوف";
  position: absolute;
  top: 44px;
  right: 0;
  left: 0;
  text-align: center;
  font-weight: 800;
  font-size: 9px;
  font-family: var(--font);
}
.prod-bottle-dark {
  background: linear-gradient(160deg, #2c2046, #211832);
}
.prod-bottle-dark::before { background: #0f0a1a; }
.prod-bottle-dark::after  { color: #f1a8bb; }

.prod-bottle-white {
  background: linear-gradient(160deg, #fff, #f5eef2);
  border: 1px solid #f0dce3;
}
.prod-bottle-white::before { background: #f0e5ea; border: 1px solid #e8d5dd; }
.prod-bottle-white::after  { color: #bd7288; }

.product-body {
  padding: 14px 12px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--dark);
  line-height: 1.4;
}
.stars {
  color: #f0aa44;
  font-size: 13px;
  margin: 3px 0;
}
.stars span { color: var(--muted); font-size: 11px; }
.price {
  font-weight: 800;
  font-size: 17px;
  color: var(--dark);
  margin: 5px 0 10px;
}
.btn-cart {
  background: #e88fa8;
  color: #fff;
  border: 0;
  border-radius: 6px;
  height: 34px;
  width: 100%;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  transition: background .2s;
  margin-top: auto;
}
.btn-cart:hover { background: #d4799a; }
.btn-cart.added { background: #5a9e6f; }

/* ===== Trust Row ===== */
.trust-row {
  background: var(--soft);
  border: 1px solid #f1dce4;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(33,24,50,.06);
}
.trust-item {
  padding: 22px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.trust-item:first-child { border-right: 0; }
.trust-item > span:first-child { font-size: 24px; }
.trust-item strong { display: block; font-size: 14px; color: var(--dark); }
.trust-item > span:last-child { font-size: 12px; color: var(--muted); }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--soft);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(33,24,50,.06);
  color: #5a4b65;
}
.review-quote {
  font-size: 44px;
  color: #e2a5b8;
  line-height: .7;
  margin-bottom: 14px;
}
.review-card p { font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.review-card strong { display: block; color: var(--dark); font-size: 15px; margin-bottom: 5px; }

/* ===== Pay Bar ===== */
.pay-bar {
  background: var(--dark);
  color: #fff;
  border-radius: 16px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.pay-bar h2 { font-size: 20px; margin-bottom: 6px; }
.pay-bar p { color: #e8dce3; font-size: 14px; }
.pay-logos { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pay-badge {
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 7px 14px;
  font-weight: 800;
  font-size: 13px;
}
.pay-shipping { text-align: center; font-size: 15px; line-height: 1.7; }

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 52px 48px 0;
  margin-top: 20px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .logo { margin: 0 0 14px; font-size: 30px; }
.footer-brand p { color: #e7dce2; line-height: 1.9; font-size: 14px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--pink); }

.footer-col h4 { color: #f4b2c4; margin: 0 0 14px; font-size: 15px; }
.footer-col a { display: block; color: #e7dce2; font-size: 14px; line-height: 2.1; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }

.footer-newsletter h4 { color: #f4b2c4; margin: 0 0 10px; font-size: 15px; }
.footer-newsletter p { color: #e7dce2; font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.footer-newsletter input {
  width: 100%;
  height: 40px;
  border: 1px solid #756783;
  background: transparent;
  border-radius: 6px;
  padding: 0 12px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-newsletter input::placeholder { color: #9e8daa; }
.footer-newsletter input:focus { outline: none; border-color: var(--pink); }
.footer-newsletter button {
  width: 100%;
  height: 40px;
  background: var(--pink);
  border: 0;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 800;
  color: var(--dark);
  font-size: 14px;
  transition: background .2s;
}
.footer-newsletter button:hover { background: #e88ba8; }
.footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  color: #cfc2d6;
  font-size: 13px;
}

/* ===== Cart Drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  height: 100dvh;
  background: #fff;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--soft);
}
.cart-drawer-header h3 { font-size: 17px; font-weight: 800; color: var(--dark); }
.cart-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0e4ea;
  color: var(--text);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.cart-close:hover { background: var(--pink); color: white; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
}
.cart-empty p { font-size: 15px; font-weight: 600; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, #f7dce5, #fff);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.cart-item-price { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cart-item-remove { color: var(--muted); font-size: 18px; transition: color .2s; }
.cart-item-remove:hover { color: #e05a7a; }
.cart-drawer-footer { padding: 14px 16px; border-top: 1px solid var(--line); background: var(--soft); }
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--dark);
}

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: 0; }
}

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 768px) {

  /* Topbar */
  .topbar {
    font-size: 11.5px;
    gap: 16px;
    height: 32px;
  }
  .topbar span:nth-child(3) { display: none; } /* hide 3rd item */

  /* Nav */
  .nav {
    height: 62px;
    padding: 0 16px;
    gap: 0;
    justify-content: space-between;
  }
  .logo { font-size: 26px; gap: 8px; }
  .logo-mark { width: 34px; height: 34px; min-width: 34px; border-radius: 10px; }
  .logo-mark::before { inset: 7px 9px; }

  /* Hide desktop navlinks */
  .navlinks { display: none !important; }

  /* Nav icons — compact */
  .nav-icons { gap: 4px; }
  .nav-icon-btn { width: 34px; height: 34px; }

  /* Show hamburger */
  .mobile-menu-btn { display: flex !important; }

  /* Mobile dropdown — block + max-height animation */
  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
  }
  .mobile-nav.open { max-height: 400px; }
  .mobile-nav a {
    display: block;
    color: #f0e6f0;
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color .2s, background .2s;
  }
  .mobile-nav a:hover { color: var(--pink); background: rgba(255,255,255,.05); }
  .mobile-nav a:last-child { border-bottom: 0; }

  /* Hero — single column, no side panels */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-side { display: none !important; }
  .center-copy {
    padding: 40px 20px 44px;
  }
  .center-copy h1 { font-size: 36px; }
  .center-copy > p { font-size: 16px; max-width: 100%; }
  .hero-buttons { gap: 12px; }
  .btn { min-width: 160px; height: 46px; font-size: 15px; }
  .hero-features {
    gap: 20px;
    margin-top: 24px;
  }
  .hero-features > div { font-size: 12px; }
  .feat-icon { font-size: 22px; }

  /* Category */
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat { grid-template-columns: 1fr; min-height: auto; }
  .cat-copy { padding: 24px 20px 0; }
  .cat-copy h2 { font-size: 22px; }
  .mini-bottles { padding: 20px 16px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tabs { justify-content: center; }
  .product-img { height: 130px; }
  .mini-bottle-lg { width: 44px; height: 100px; }

  /* Trust */
  .trust-row { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Pay bar */
  .pay-bar { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; border-radius: 12px; }

  /* Footer */
  .footer { padding: 36px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Cart */
  .cart-drawer { width: 100%; }
}

@media (max-width: 400px) {
  .topbar { display: none; } /* very small screens */
  .center-copy h1 { font-size: 30px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
}
