/* ═══════════════════════════════════════
   M FAROOQ TEX — ROSE GOLD LUXURY THEME
   Soft White & Rose Gold Color Palette
═══════════════════════════════════════ */

:root {
  --rg:          #c9a27c;
  --rg-dark:     #a07850;
  --rg-light:    #dfc4a8;
  --rg-pale:     #f5ede4;
  --rg-xpale:    #fdf8f4;
  --white:       #ffffff;
  --soft-white:  #fafaf9;
  --offwhite:    #f4f2ef;
  --charcoal:    #2c2825;
  --dark-text:   #3d3530;
  --mid-text:    #7a6e66;
  --light-text:  #b0a49c;
  --border:      rgba(201,162,124,0.2);
  --border-mid:  rgba(201,162,124,0.35);
  --shadow-sm:   0 2px 12px rgba(44,40,37,0.07);
  --shadow-md:   0 8px 32px rgba(44,40,37,0.10);
  --shadow-lg:   0 20px 60px rgba(44,40,37,0.13);
  --radius:      8px;
  --radius-lg:   14px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--soft-white);
  color: var(--dark-text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Announcement Bar ── */
.announce-bar {
  padding: 10px 20px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top:0; z-index:1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1320px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 32px; height: 72px; gap:20px;
}
.site-logo { display:flex; flex-direction:column; justify-content:center; line-height:1.15; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--charcoal); letter-spacing: 0.5px;
}
.logo-main em { font-style:italic; color:var(--rg); }
.logo-sub {
  font-size: 9px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--light-text);
  font-weight: 500; margin-top:1px;
}

.primary-nav {}
.nav-menu { display:flex; gap:32px; align-items:center; }
.nav-menu li a {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--mid-text); transition: color 0.2s;
  position: relative; padding-bottom: 4px;
}
.nav-menu li a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1.5px; background:var(--rg);
  transition: width 0.3s; border-radius:2px;
}
.nav-menu li a:hover { color:var(--charcoal); }
.nav-menu li a:hover::after { width:100%; }

.header-actions { display:flex; gap:4px; align-items:center; }
.icon-btn {
  width:40px; height:40px; background:none;
  border:1px solid transparent; color:var(--mid-text);
  cursor:pointer; font-size:16px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition:all 0.2s; position:relative;
}
.icon-btn:hover {
  background:var(--rg-xpale); border-color:var(--border-mid);
  color:var(--charcoal);
}
.cart-count {
  position:absolute; top:1px; right:1px;
  background:var(--rg); color:var(--white);
  width:16px; height:16px; border-radius:50%;
  font-size:9px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
}

/* Search bar in header */
.header-search {
  display:flex; align-items:center;
  background:var(--offwhite); border:1px solid var(--border);
  border-radius:100px; padding:0 14px; gap:8px; height:36px;
  transition: all 0.2s;
}
.header-search:focus-within { border-color:var(--rg); background:var(--white); }
.header-search input {
  background:none; border:none; outline:none;
  font-size:13px; color:var(--dark-text); width:160px;
  font-family:'DM Sans',sans-serif;
}
.header-search input::placeholder { color:var(--light-text); }
.header-search span { color:var(--light-text); font-size:14px; }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.hamburger span {
  display:block; width:20px; height:1.5px;
  background:var(--charcoal); border-radius:2px; transition:all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display:none; flex-direction:column;
  background:var(--white); border-top:1px solid var(--border);
  padding:6px 0 12px;
}
.mobile-nav.open { display:flex; }
.mobile-nav-menu { display:flex; flex-direction:column; }
.mobile-nav-menu li a {
  display:block; padding:12px 28px;
  color:var(--dark-text); font-size:13px; font-weight:500;
  letter-spacing:1px; text-transform:uppercase;
  border-bottom:1px solid var(--border); transition:all 0.2s;
}
.mobile-nav-menu li a:hover { background:var(--rg-xpale); color:var(--rg-dark); padding-left:36px; }

/* ── Hero ── */
.hero-section {
  min-height: 92vh;
  background: var(--rg-xpale);
  position:relative; display:flex; align-items:center; overflow:hidden;
}
.hero-bg-overlay {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,162,124,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 80%, rgba(223,196,168,0.1) 0%, transparent 55%);
}
.hero-dots {
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(201,162,124,0.18) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events:none;
}
.hero-inner {
  max-width:1320px; margin:0 auto; padding:80px 32px;
  position:relative; z-index:2; width:100%;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.hero-text {}
.hero-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); border:1px solid var(--border-mid);
  border-radius:100px; padding:6px 16px 6px 10px;
  font-size:11px; font-weight:600; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--rg-dark); margin-bottom:28px;
  box-shadow:var(--shadow-sm);
}
.hero-pill-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--rg); display:inline-block;
}
.hero-h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(42px,5.5vw,72px); font-weight:700;
  color:var(--charcoal); line-height:1.08; margin-bottom:20px;
}
.hero-h1 em { font-style:italic; color:var(--rg); display:block; }
.hero-desc {
  font-size:15px; color:var(--mid-text); line-height:1.85;
  margin-bottom:36px; max-width:440px;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px; }

/* Buttons */
.btn-rg {
  background:var(--rg); color:var(--white);
  padding:14px 34px; font-size:12px; letter-spacing:1.5px;
  text-transform:uppercase; font-weight:600; border:none;
  cursor:pointer; border-radius:100px; transition:all 0.3s;
  display:inline-block; box-shadow:0 4px 16px rgba(201,162,124,0.35);
}
.btn-rg:hover {
  background:var(--rg-dark); transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(201,162,124,0.45); color:var(--white);
}
.btn-outline-rg {
  background:transparent; color:var(--charcoal);
  padding:14px 34px; font-size:12px; letter-spacing:1.5px;
  text-transform:uppercase; font-weight:600;
  border:1.5px solid var(--border-mid);
  cursor:pointer; border-radius:100px; transition:all 0.3s;
  display:inline-block;
}
.btn-outline-rg:hover {
  border-color:var(--rg); color:var(--rg-dark); transform:translateY(-2px);
}

/* Hero trust badges */
.hero-trust {
  display:flex; gap:20px; flex-wrap:wrap;
}
.trust-item {
  display:flex; align-items:center; gap:7px;
  font-size:11.5px; color:var(--mid-text); font-weight:500;
}
.trust-icon { font-size:14px; }

/* Hero Visual Cards */
.hero-visual { display:flex; flex-direction:column; gap:14px; }
.hv-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:20px 22px;
  box-shadow:var(--shadow-sm);
  display:flex; align-items:center; gap:16px;
  transition:transform 0.3s, box-shadow 0.3s;
}
.hv-card:hover { transform:translateX(6px); box-shadow:var(--shadow-md); }
.hv-icon {
  width:48px; height:48px; border-radius:var(--radius);
  background:var(--rg-pale); display:flex;
  align-items:center; justify-content:center;
  font-size:22px; flex-shrink:0;
}
.hv-title {
  font-family:'Playfair Display',serif;
  font-size:15px; font-weight:600; color:var(--charcoal);
  margin-bottom:2px;
}
.hv-sub { font-size:12px; color:var(--light-text); }

.hv-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.hv-stat {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:18px 20px;
  box-shadow:var(--shadow-sm); text-align:center;
}
.hv-stat-num {
  font-family:'Playfair Display',serif;
  font-size:28px; font-weight:700; color:var(--rg); line-height:1; margin-bottom:4px;
}
.hv-stat-label { font-size:10.5px; letter-spacing:1.5px; text-transform:uppercase; color:var(--light-text); }

/* ── Category Bar ── */
.cat-bar {
  background:var(--white); border-bottom:1px solid var(--border);
  overflow-x:auto; -webkit-overflow-scrolling:touch;
}
.cat-bar::-webkit-scrollbar { height:0; }
.cat-bar-inner {
  display:flex; min-width:max-content;
  max-width:1320px; margin:0 auto; padding:0 32px;
}
.cat-tab {
  padding:16px 24px; font-size:11.5px; font-weight:500;
  letter-spacing:1.8px; text-transform:uppercase;
  color:var(--light-text); cursor:pointer;
  border-bottom:2px solid transparent; margin-bottom:-1px;
  transition:all 0.2s; white-space:nowrap; user-select:none;
}
.cat-tab:hover { color:var(--charcoal); }
.cat-tab.active { color:var(--rg-dark); border-bottom-color:var(--rg); }

/* ── Sections ── */
section { padding:88px 32px; }
.sec-inner { max-width:1320px; margin:0 auto; }
.sec-head {
  display:flex; justify-content:space-between;
  align-items:flex-end; margin-bottom:52px; flex-wrap:wrap; gap:16px;
}
.sec-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:10px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--rg-dark); margin-bottom:10px;
}
.sec-tag-line { width:20px; height:1.5px; background:var(--rg); border-radius:2px; }
.sec-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,38px); font-weight:700;
  color:var(--charcoal); line-height:1.15;
}
.sec-link {
  font-size:11px; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--rg); font-weight:700; display:flex; align-items:center; gap:6px;
  transition:gap 0.2s; white-space:nowrap;
}
.sec-link:hover { gap:10px; color:var(--rg-dark); }

/* ── Product Grid ── */
.products-section { background:var(--soft-white); }
.product-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.product-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden; cursor:pointer;
  transition:transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position:relative;
}
.product-card:hover {
  transform:translateY(-8px); box-shadow:var(--shadow-lg);
  border-color:var(--rg-light);
}
.product-thumb-link { display:block; }
.product-thumb {
  width:100%; aspect-ratio:3/4;
  background:linear-gradient(160deg, var(--rg-xpale), var(--offwhite));
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.product-thumb img {
  width:100%; height:100%; object-fit:cover;
  position:absolute; inset:0; transition:transform 0.5s;
}
.product-card:hover .product-thumb img { transform:scale(1.06); }
.product-emoji { font-size:54px; }

.p-badge {
  position:absolute; top:12px; left:12px;
  font-size:9px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; padding:5px 12px; border-radius:100px;
}
.badge-new  { background:var(--charcoal); color:var(--white); }
.badge-sale { background:#e05555; color:#fff; }
.badge-hot  { background:var(--rg); color:var(--white); }
.badge-lux  { background:var(--rg-xpale); color:var(--rg-dark); border:1px solid var(--border-mid); }

/* Quick-add overlay */
.p-quick-add {
  position:absolute; bottom:0; left:0; right:0;
  background:var(--charcoal); color:var(--white);
  text-align:center; padding:12px; font-size:10.5px;
  letter-spacing:1.5px; text-transform:uppercase; font-weight:700;
  transform:translateY(100%); transition:transform 0.3s;
}
.product-card:hover .p-quick-add { transform:translateY(0); }

.p-wish {
  position:absolute; top:12px; right:12px;
  width:32px; height:32px; background:var(--white);
  border:1px solid var(--border); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; cursor:pointer;
  opacity:0; transform:scale(0.8); transition:all 0.25s;
  box-shadow:var(--shadow-sm);
}
.product-card:hover .p-wish { opacity:1; transform:scale(1); }

.product-info { padding:16px 18px 20px; }
.p-cat {
  font-size:9.5px; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--rg); font-weight:700; margin-bottom:5px;
}
.p-name {
  font-family:'Playfair Display',serif; font-size:16px;
  font-weight:600; color:var(--charcoal); margin-bottom:10px; line-height:1.35;
}
.p-footer { display:flex; justify-content:space-between; align-items:center; gap:8px; }
.p-price { font-size:16px; font-weight:700; color:var(--rg-dark); }
.p-price .old {
  font-size:11.5px; color:var(--light-text);
  text-decoration:line-through; font-weight:400; margin-left:6px;
}
.p-add {
  background:var(--rg-pale); border:1px solid var(--border-mid);
  color:var(--rg-dark); font-size:9.5px; letter-spacing:1.5px;
  text-transform:uppercase; font-weight:700;
  padding:8px 14px; border-radius:100px; cursor:pointer;
  transition:all 0.2s; white-space:nowrap; font-family:'DM Sans',sans-serif;
}
.p-add:hover { background:var(--rg); color:var(--white); border-color:var(--rg); }

/* ── Promo Banners ── */
.promo-section { padding:0; }
.promo-grid { display:grid; grid-template-columns:1.3fr 1fr; }
.promo-card {
  padding:80px 56px; position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end; min-height:320px;
}
.promo-card-1 {
  background:linear-gradient(135deg,#1a1210 0%,#2c2018 100%);
  border-right:1px solid rgba(201,162,124,0.2);
}
.promo-card-2 { background:linear-gradient(135deg,#f5ede4 0%,#ede0d3 100%); }
.promo-deco { position:absolute; top:-10px; right:20px; font-size:140px; opacity:0.07; pointer-events:none; }
.promo-tag {
  font-size:9px; letter-spacing:4px; text-transform:uppercase;
  font-weight:700; margin-bottom:14px;
}
.promo-card-1 .promo-tag { color:var(--rg-light); }
.promo-card-2 .promo-tag { color:var(--rg-dark); }
.promo-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,3vw,34px); font-weight:700; margin-bottom:22px; line-height:1.2;
}
.promo-card-1 .promo-title { color:var(--white); }
.promo-card-1 .promo-title em { font-style:italic; color:var(--rg-light); }
.promo-card-2 .promo-title { color:var(--charcoal); }
.promo-card-2 .promo-title em { font-style:italic; color:var(--rg-dark); }

/* ── Features ── */
.features-section { background:var(--white); padding:72px 32px; }
.features-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.feature-card {
  background:var(--rg-xpale); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:36px 24px; text-align:center;
  transition:all 0.3s;
}
.feature-card:hover {
  background:var(--white); border-color:var(--rg-light);
  box-shadow:var(--shadow-md); transform:translateY(-4px);
}
.feat-icon {
  width:52px; height:52px; border-radius:var(--radius);
  background:var(--white); border:1px solid var(--border-mid);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin:0 auto 16px;
}
.feat-title {
  font-family:'Playfair Display',serif; font-size:17px;
  font-weight:600; color:var(--charcoal); margin-bottom:8px;
}
.feat-desc { font-size:12.5px; color:var(--mid-text); line-height:1.75; }

/* ── Testimonials ── */
.testi-section { background:var(--offwhite); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:30px 26px;
  transition:box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:var(--rg-light); }
.testi-stars { color:var(--rg); font-size:13px; letter-spacing:2px; margin-bottom:14px; }
.testi-text {
  font-family:'Playfair Display',serif; font-size:16px;
  font-style:italic; color:var(--dark-text); line-height:1.8; margin-bottom:22px;
}
.testi-line { width:30px; height:2px; background:var(--rg-light); border-radius:2px; margin-bottom:16px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:var(--rg-pale); border:2px solid var(--rg-light);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:var(--rg-dark); font-size:14px; flex-shrink:0;
}
.testi-name { font-size:14px; font-weight:600; color:var(--charcoal); }
.testi-city { font-size:11px; color:var(--light-text); }

/* ── Newsletter ── */
.newsletter-section {
  background:var(--charcoal); padding:88px 32px; text-align:center;
  position:relative; overflow:hidden;
}
.newsletter-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(201,162,124,0.12) 0%, transparent 70%);
}
.nl-inner { max-width:540px; margin:0 auto; position:relative; }
.nl-label {
  font-size:10px; letter-spacing:4px; text-transform:uppercase;
  color:var(--rg-light); font-weight:700; margin-bottom:14px; display:block;
}
.nl-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,38px); font-weight:700; color:var(--white);
  margin-bottom:12px; line-height:1.2;
}
.nl-desc { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.75; margin-bottom:32px; }
.nl-form { display:flex; border-radius:100px; overflow:hidden; border:1.5px solid rgba(201,162,124,0.3); }
.nl-input {
  flex:1; background:rgba(255,255,255,0.07); border:none;
  color:var(--white); padding:15px 24px; font-size:14px;
  font-family:'DM Sans',sans-serif; outline:none;
}
.nl-input::placeholder { color:rgba(255,255,255,0.3); }
.nl-btn {
  background:var(--rg); border:none; color:var(--white);
  padding:15px 28px; font-size:11px; letter-spacing:2px;
  text-transform:uppercase; font-weight:700; cursor:pointer;
  font-family:'DM Sans',sans-serif; transition:background 0.2s; white-space:nowrap;
}
.nl-btn:hover { background:var(--rg-dark); }

/* ── Footer ── */
.site-footer {
  background:var(--soft-white); border-top:1px solid var(--border);
  padding:72px 32px 28px;
}
.footer-inner { max-width:1320px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:52px; margin-bottom:52px; }
.f-logo-main { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--charcoal); display:block; margin-bottom:4px; }
.f-logo-main em { color:var(--rg); font-style:italic; }
.f-logo-sub { font-size:9px; letter-spacing:3.5px; color:var(--light-text); text-transform:uppercase; display:block; margin-bottom:18px; }
.f-desc { font-size:13.5px; color:var(--mid-text); line-height:1.85; margin-bottom:22px; }
.footer-brand .f-desc:first-of-type { display:none; }
.f-socials { display:flex; gap:8px; }
.f-social {
  width:36px; height:36px; border:1px solid var(--border-mid); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--light-text); font-size:14px; transition:all 0.2s;
}
.f-social:hover { border-color:var(--rg); color:var(--rg-dark); background:var(--rg-pale); }
.f-col-title {
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--rg-dark); font-weight:700; margin-bottom:18px;
}
.f-links { display:flex; flex-direction:column; gap:11px; }
.f-links li a { color:var(--mid-text); font-size:13.5px; transition:color 0.2s; }
.f-links li a:hover { color:var(--rg-dark); }
.f-contact-row { display:flex; gap:10px; margin-bottom:12px; font-size:13.5px; color:var(--mid-text); line-height:1.6; }
.f-icon { color:var(--rg); font-size:15px; flex-shrink:0; margin-top:1px; }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.f-copy { font-size:12px; color:var(--light-text); }
.pay-list { display:flex; gap:8px; flex-wrap:wrap; }
.pay-tag {
  background:var(--offwhite); border:1px solid var(--border);
  border-radius:100px; padding:4px 14px; font-size:9.5px;
  letter-spacing:1px; text-transform:uppercase; color:var(--mid-text);
}

/* Scroll Top */
.scroll-top {
  position:fixed; bottom:24px; right:24px;
  width:44px; height:44px; background:var(--charcoal);
  border:1px solid rgba(201,162,124,0.3); color:var(--rg-light);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:18px; cursor:pointer; z-index:999;
  opacity:0; transform:translateY(16px); transition:all 0.3s;
  box-shadow:var(--shadow-md);
}
.scroll-top.show { opacity:1; transform:translateY(0); }
.scroll-top:hover { background:var(--rg); color:var(--white); border-color:var(--rg); }

/* WooCommerce */
.mft-woo-wrapper { padding:60px 0; }
.woocommerce-page .woocommerce { max-width:1320px; margin:0 auto; padding:0 32px; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .product-grid { grid-template-columns:repeat(3,1fr); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
}
@media(max-width:768px) {
  .primary-nav,.header-search { display:none; }
  .hamburger { display:flex; }
  .product-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
  .promo-grid { grid-template-columns:1fr; }
  .promo-card-1 { border-right:none; border-bottom:1px solid rgba(201,162,124,0.2); }
  .testi-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  section { padding:60px 18px; }
  .hero-inner { padding:64px 20px; }
  .promo-card { padding:48px 28px; }
  .nl-form { flex-direction:column; border-radius:var(--radius-lg); }
  .nl-input { border-bottom:1px solid rgba(201,162,124,0.3); }
  .nl-btn { border-radius:0 0 var(--radius-lg) var(--radius-lg); }
  .hero-section { min-height:80vh; }
}
@media(max-width:500px) {
  .product-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .feature-card { padding:24px 14px; }
  .header-inner { padding:0 16px; }
  .product-info { padding:12px 13px 16px; }
}
