/*
  Jenny Wines — Cellar Noir Premium Redesign
  Designed by NexKeys Agency | nexkeysagency.netlify.app
  Theme: Dark luxury wine boutique
*/

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --black:        #070305;
  --surface:      #120810;
  --surface-2:    #1c1018;
  --surface-3:    #251520;
  --gold:         #c9a84c;
  --gold-light:   #e2c87a;
  --gold-pale:    rgba(201,168,76,.08);
  --gold-border:  rgba(201,168,76,.18);
  --burgundy:     #7c1a2e;
  --burgundy-d:   #5a0f20;
  --cream:        #f2ede4;
  --cream-soft:   #d4c9b8;
  --muted:        #9d8a8a;
  --border:       rgba(201,168,76,.12);

  --ff-display: 'Cormorant Garant', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --shadow-gold: 0 8px 32px rgba(201,168,76,.12);
  --shadow-deep: 0 16px 48px rgba(0,0,0,.5);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--cream);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
ul, li { list-style: none; }
a { text-decoration: none !important; transition: all .25s ease; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; }
p { font-family: var(--ff-body); line-height: 1.75; color: var(--muted); }
::selection { background: var(--gold); color: var(--black); }

.section { padding: 100px 0; }

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 36px;
}

.center-heading { text-align: center; margin-bottom: 64px; }
.center-heading h2 {
  font-family: var(--ff-display); font-size: clamp(2rem,5vw,3.2rem);
  color: var(--cream); font-weight: 700; margin-bottom: 16px;
}
.center-heading h2 em { font-style: italic; color: var(--gold); }
.center-heading p { font-size: .95rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ─── PRELOADER ─── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.preloader-logo {
  font-family: var(--ff-display); font-size: 2rem; font-style: italic;
  color: var(--cream); letter-spacing: .08em;
}
.preloader-logo em { color: var(--gold); font-style: italic; }
.preloader-bar {
  width: 120px; height: 2px; background: var(--surface-3); border-radius: 2px; overflow: hidden;
}
.preloader-bar::after {
  content: ''; display: block; height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  animation: preload-sweep 1.4s ease-in-out infinite;
}
@keyframes preload-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ─── HEADER ─── */
.header-area {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 80px;
  transition: all .4s ease;
}
.header-area .main-nav {
  display: flex; align-items: center;
  height: 80px; padding: 0 30px;
  background: rgba(7,3,5,.0);
  transition: all .4s ease;
}
.background-header .main-nav {
  background: rgba(7,3,5,.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.header-area .main-nav .logo {
  font-family: var(--ff-display); font-size: 1.7rem; font-style: italic;
  color: var(--cream); font-weight: 700; letter-spacing: .04em;
  line-height: 80px; flex-shrink: 0; margin-right: auto;
}
.header-area .main-nav .logo em { color: var(--gold); font-style: italic; }
.header-area .main-nav .logo:hover { color: var(--gold); }

.header-area .main-nav .nav {
  display: flex; align-items: center; gap: 0;
  margin: 0; background: transparent; padding: 0;
}
.header-area .main-nav .nav li { padding: 0; }
.header-area .main-nav .nav li a {
  display: block; padding: 10px 18px;
  font-family: var(--ff-body); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(242,237,228,.7);
  position: relative;
}
.header-area .main-nav .nav li a::after {
  content: ''; position: absolute; bottom: 4px; left: 18px; right: 18px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s ease;
}
.header-area .main-nav .nav li a:hover,
.header-area .main-nav .nav li a.active { color: var(--gold); }
.header-area .main-nav .nav li a:hover::after,
.header-area .main-nav .nav li a.active::after { transform: scaleX(1); }

/* CTA button in nav */
.nav-order-btn {
  display: inline-block;
  margin-left: 16px;
  padding: 9px 22px;
  background: transparent; color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-size: .72rem !important; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase !important;
  transition: all .25s ease !important;
}
.nav-order-btn::after { display: none !important; }
.nav-order-btn:hover {
  background: var(--gold) !important; color: var(--black) !important;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}

/* Mobile hamburger */
.menu-trigger {
  display: none;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column; gap: 5px;
  padding: 4px;
}
.menu-trigger span,
.menu-trigger span::before,
.menu-trigger span::after {
  display: block; width: 26px; height: 2px;
  background: var(--cream); border-radius: 2px;
  position: relative; transition: all .3s ease;
}
.menu-trigger span::before,
.menu-trigger span::after { content: ''; position: absolute; left: 0; }
.menu-trigger span::before { top: -8px; }
.menu-trigger span::after  { top:  8px; }
.menu-trigger.active span { background: transparent; }
.menu-trigger.active span::before { transform: rotate(45deg); top: 0; }
.menu-trigger.active span::after  { transform: rotate(-45deg); top: 0; }

/* ─── HERO / WELCOME ─── */
.welcome-area {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
#bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(7,3,5,.82) 0%,
    rgba(18,8,16,.75) 50%,
    rgba(124,26,46,.3) 100%
  );
}
/* Decorative grain on hero */
.welcome-area::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.header-text {
  position: relative; z-index: 10; width: 100%; padding: 160px 0 120px;
}
.header-text .left-text h1 {
  font-family: var(--ff-display); font-size: clamp(2.6rem,7vw,5.5rem);
  color: var(--cream); font-weight: 700; line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.header-text .left-text h1 em { font-style: italic; color: var(--gold); }
.header-text .left-text p {
  font-size: 1.1rem; color: rgba(242,237,228,.75);
  margin-bottom: 40px; font-weight: 300; max-width: 480px;
  line-height: 1.8;
}

/* Hero divider line above heading */
.hero-rule {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.hero-rule span {
  font-family: var(--ff-body); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.hero-rule::before {
  content: ''; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

a.main-button-slider {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 16px 36px;
  background: var(--gold); color: var(--black);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
  transition: all .3s ease;
}
a.main-button-slider:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(201,168,76,.5);
  transform: translateY(-2px);
  color: var(--black);
}
.hero-outline-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 15px 32px;
  background: transparent; color: var(--cream);
  border: 1px solid rgba(242,237,228,.3);
  border-radius: var(--radius-pill);
  transition: all .3s ease;
}
.hero-outline-cta:hover {
  background: rgba(242,237,228,.06);
  border-color: rgba(242,237,228,.6);
  color: var(--cream);
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(242,237,228,.4); font-weight: 700;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-drop 2s ease infinite;
}
@keyframes scroll-drop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── FEATURES / ABOUT ─── */
#about {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'JENNY'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--ff-display); font-size: clamp(8rem,20vw,18rem);
  font-weight: 700; color: rgba(201,168,76,.03);
  letter-spacing: .1em; pointer-events: none; white-space: nowrap;
  z-index: 0;
}
#about .container { position: relative; z-index: 1; }

.features-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  height: 100%;
  transition: all .35s ease;
  position: relative; overflow: hidden;
}
.features-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  opacity: 0; transition: opacity .35s ease;
}
.features-item:hover {
  background: var(--surface-3);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.features-item:hover::before { opacity: 1; }

.features-icon { position: relative; }
.features-icon h2 {
  font-family: var(--ff-display); font-size: 4rem;
  color: rgba(201,168,76,.08); font-weight: 700;
  line-height: 1; margin-bottom: -24px;
  position: relative; z-index: 0;
}
.features-icon img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 24px;
  filter: brightness(.85) saturate(.9);
  transition: filter .35s ease;
  position: relative; z-index: 1;
}
.features-item:hover .features-icon img {
  filter: brightness(.95) saturate(1.05);
}
.features-icon h4 {
  font-family: var(--ff-display); font-size: 1.4rem; color: var(--cream);
  font-weight: 700; margin-bottom: 12px;
}
.features-icon p { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }

a.main-button {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-body); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 10px 24px;
  color: var(--gold); border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  transition: all .25s ease;
}
a.main-button:hover {
  background: var(--gold); color: var(--black);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}

/* ─── PRODUCTS ─── */
#promotion {
  background: var(--black);
  padding: 100px 0;
}

/* Decorative divider between sections */
.wine-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 16px 0;
}
.wine-divider::before,
.wine-divider::after {
  content: ''; flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border));
}
.wine-divider::after { background: linear-gradient(90deg, var(--gold-border), transparent); }
.wine-divider-icon {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-border); border-radius: 50%;
  color: var(--gold); font-size: .75rem;
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  transform: translateY(-5px);
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--surface-2);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(.9) saturate(.85);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.product-card-img .price-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(7,3,5,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 700;
  color: var(--gold); letter-spacing: .04em;
}
.product-card-body {
  padding: 22px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.product-card-body h4 {
  font-family: var(--ff-display); font-size: 1.25rem; color: var(--cream);
  font-weight: 700; margin-bottom: 10px;
}
.product-card-body p {
  font-size: .85rem; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 20px;
}
.product-order-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 11px 20px;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-family: var(--ff-body); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  transition: all .25s ease;
}
.product-order-btn:hover {
  background: var(--gold); color: var(--black);
  box-shadow: 0 6px 20px rgba(201,168,76,.3);
  border-color: var(--gold);
}
.product-order-btn i { font-size: .8rem; }

/* ─── PROMO BAND ─── */
.promo-band {
  background: var(--burgundy-d);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 32px 0;
  overflow: hidden;
}
.promo-band-inner {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
}
.promo-stat {
  text-align: center;
}
.promo-stat strong {
  display: block; font-family: var(--ff-display); font-size: 2.4rem;
  color: var(--gold); font-weight: 700; line-height: 1;
}
.promo-stat span {
  font-family: var(--ff-body); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: rgba(242,237,228,.5);
  margin-top: 4px; display: block;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
  z-index: 9;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s ease;
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; /* opening quote */
  position: absolute; top: 16px; right: 24px;
  font-family: var(--ff-display); font-size: 5rem; line-height: 1;
  color: rgba(201,168,76,.08); font-style: italic;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,.25);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.stars {
  display: flex; gap: 3px; margin-bottom: 20px;
}
.stars li i { color: var(--gold); font-size: .8rem; }
.stars li i.empty { color: var(--surface-3); }
.testimonial-card p {
  font-size: .95rem; color: rgba(242,237,228,.75); font-style: italic;
  line-height: 1.7; margin-bottom: 24px;
}
.testimonial-card h4 {
  font-family: var(--ff-display); font-size: 1.15rem; color: var(--cream);
  font-weight: 700; margin-bottom: 4px;
}
.testimonial-card .location {
  font-size: .75rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}

/* owl carousel override — use testimonial-track instead, keep owl for js compat */
.owl-carousel .owl-stage { display: flex; gap: 24px; }
.owl-carousel .item { flex: 1; min-width: 280px; }
.owl-carousel .owl-nav { display: none; }
.owl-carousel .owl-dots { display: none; }

/* ─── FOOTER ─── */
footer#contact-us {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 80px;
  margin-top: 0;
}
.footer-content { padding: 0 0 60px; }

/* Contact info card */
.contact-info {
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 40px !important;
  height: 100%;
  box-shadow: none !important;
  transition: border-color .3s ease !important;
}
.contact-info:hover { border-color: rgba(201,168,76,.3) !important; }
.contact-info h3 {
  font-family: var(--ff-display); font-size: 1.6rem;
  color: var(--cream) !important; font-weight: 700;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.contact-info h3 i { color: var(--gold); }
.contact-info-row {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 24px;
}
.contact-info-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold);
}
.contact-info-value {
  font-size: 1rem; font-weight: 600; color: var(--cream);
}
.contact-info-value a {
  color: var(--gold) !important; font-weight: 700;
}
.contact-info-value a:hover { color: var(--gold-light) !important; }
.contact-info-value p { color: var(--cream-soft) !important; font-size: .9rem; margin: 0; }

/* Map embed */
.map-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.map-wrap iframe { display: block; border: none; }

/* Right content */
.footer-content .right-content {
  padding: 20px 0;
}
.footer-content .right-content h2 {
  font-family: var(--ff-display); font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--cream); font-weight: 700; margin-bottom: 20px;
}
.footer-content .right-content h2 em { font-style: italic; color: var(--gold); }
.footer-content .right-content p { color: var(--muted); line-height: 1.8; margin-bottom: 0; }

/* Social icons */
footer .social { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
footer .social li { display: block; }
footer .social li a {
  width: 44px; height: 44px; line-height: 44px; text-align: center;
  border-radius: 50%; display: inline-block;
  border: 1px solid var(--border);
  color: var(--muted); font-size: 1rem;
  transition: all .25s ease;
}
footer .social li a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
  transform: translateY(-2px);
}

/* Sub footer */
footer .sub-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer .sub-footer p {
  color: rgba(242,237,228,.35); font-size: .8rem; font-weight: 400; margin: 0;
}
footer .sub-footer .nexkeys-credit {
  font-size: .8rem; color: rgba(242,237,228,.35);
}
footer .sub-footer .nexkeys-credit a {
  color: var(--gold); font-weight: 700;
}
footer .sub-footer .nexkeys-credit a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  html, body { overflow-x: hidden; }

  .header-area .main-nav { padding: 0 20px; flex-wrap: wrap; }
  .header-area .main-nav .logo { line-height: 80px; }
  .menu-trigger { display: flex; margin-left: auto; }

  .header-area .main-nav .nav {
    display: none; flex-direction: column;
    position: absolute; top: 80px; left: 0; right: 0;
    background: rgba(7,3,5,.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    gap: 0;
  }
  .header-area .main-nav .nav.active { display: flex; }
  .header-area .main-nav .nav li { padding: 0; }
  .header-area .main-nav .nav li a {
    padding: 14px 24px;
    font-size: .8rem; border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .nav-order-btn { margin-left: 24px; }

  .section { padding: 72px 0; }
  #about, #promotion, #testimonials { padding: 72px 0; }
  .mobile-bottom-fix { margin-bottom: 32px; }
  .mobile-bottom-fix-big { margin-bottom: 48px; }

  .header-text { padding: 120px 0 80px; }
  .header-text .left-text h1 { font-size: 2.6rem; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .testimonial-track { grid-template-columns: 1fr 1fr; }

  .promo-band-inner { gap: 24px; }

  footer .sub-footer { flex-direction: column; text-align: center; }
  footer .social { justify-content: flex-start; }
  footer .footer-content .right-content { margin-top: 32px; }
}

@media (max-width: 768px) {
  .header-text .left-text h1 { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .center-heading { margin-bottom: 48px; }
  .features-item { padding: 28px 24px; margin-bottom: 20px; }
  .contact-info { padding: 28px !important; }
  .promo-stat strong { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .header-text .left-text h1 { font-size: 1.9rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .promo-band-inner { gap: 20px; }
  .testimonial-card { padding: 24px 20px; }
}