/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== DESIGN TOKENS ========== */
:root {
  --white: #FFFFFF;
  --beige: #F5EFE6;
  --gold: #C9A84C;
  --gold-light: #d4b865;
  --gold-dark: #b8963e;
  --charcoal: #1A1A1A;
  --muted: #8a8275;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
  --shadow-soft: 0 4px 24px rgba(201, 168, 76, 0.10);
  --shadow-hover: 0 8px 32px rgba(201, 168, 76, 0.18);
  --radius: 12px;
  --radius-lg: 16px;
}

/* ========== SHIMMER ANIMATION ========== */
@keyframes shimmer {
  0%, 100% { text-shadow: 0 0 0px transparent; }
  50% { text-shadow: 0 0 18px rgba(201, 168, 76, 0.45), 0 0 36px rgba(201, 168, 76, 0.15); }
}

/* ========== FADE-IN ANIMATION ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SECTION HEADING STYLE ========== */
.section-heading {
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 1px;
}
.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}
.section-subheading {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  backdrop-filter: blur(8px);
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 700;
  animation: shimmer 3s infinite ease-in-out;
  user-select: none;
}
.navbar-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.navbar-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-links a:hover { color: var(--gold); }
.navbar-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gold);
  padding: 24px 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  padding: 14px 0;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ========== HERO — FULL-IMAGE PRODUCT BANNER ========== */
.hero-section {
  padding-top: 68px;
  padding-bottom: 0;
}
.carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #111;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 300%;
}
.carousel-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.carousel-slide img.slide-bg {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
/* Dark gradient overlay for text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.10) 100%);
  display: flex;
  align-items: center;
  padding: 0 72px;
}
.slide-content {
  max-width: 480px;
}
.slide-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.slide-content h2 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.slide-content .slide-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 380px;
}
/* Pricing row */
.slide-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.slide-pricing .original {
  font-family: var(--font-sans);
  font-size: 22px;
  color: rgba(255,255,255,0.40);
  text-decoration: line-through;
}
.slide-pricing .current {
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
}
/* CTA */
.btn-gold {
  display: inline-block;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.30);
}
/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, border-color 0.3s;
  color: var(--white);
  font-size: 20px;
  backdrop-filter: blur(4px);
}
.carousel-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
.carousel-arrow.left { left: 20px; }
.carousel-arrow.right { right: 20px; }
/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ========== PRODUCT CATALOG ========== */
.products-section {
  padding: 72px 48px 64px;
}
.product-scroll-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.product-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-card {
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #e8e2d9;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
/* Image wrapper with badges */
.product-img-wrap {
  position: relative;
  background: var(--beige);
}
.product-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  line-height: 1;
}
.badge-bestseller {
  top: 12px; left: 12px;
  background: #2e7d32;
  color: var(--white);
}
.badge-off {
  bottom: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
}
/* Product info */
.product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}
.product-info h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.product-rating .star { color: #f5a623; font-size: 14px; }
.product-rating .rating-num { font-weight: 700; color: var(--charcoal); }
.product-rating .divider { color: #ccc; margin: 0 2px; }
.product-rating .verified { color: #2196F3; font-size: 13px; }
.product-rating .review-count { color: var(--muted); font-size: 12px; }
/* Pricing row */
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.product-pricing .current-price {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}
.product-pricing .original-price {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
/* CTA Button */
.product-info .btn-product {
  display: block;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.3s, box-shadow 0.3s;
  margin-top: auto;
}
.product-info .btn-product:hover {
  background: #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
/* Scroll arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--gold);
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.scroll-arrow:hover { background: var(--gold); color: var(--white); }
.scroll-arrow.left { left: -20px; }
.scroll-arrow.right { right: -20px; }

/* ========== WHY CHOOSE US ========== */
.why-section {
  background: var(--beige);
  padding: 72px 48px 64px;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.usp-tile {
  text-align: center;
  padding: 20px 12px;
}
.usp-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.usp-tile:hover .usp-icon { transform: scale(1.1); }
.usp-icon svg { width: 48px; height: 48px; }
.usp-tile h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.usp-tile p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ========== REVIEWS ========== */
.reviews-section {
  padding: 72px 24px 64px;
  background: var(--charcoal);
  overflow: hidden;
}
.reviews-section .section-heading { color: var(--white); }
.reviews-section .section-subheading { color: rgba(255,255,255,0.45); }
/* Avatar row */
.review-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}
.review-avatar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), opacity 0.45s ease;
  flex-shrink: 0;
}
.review-avatar-btn img {
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid transparent;
  transition: border-color 0.4s ease, width 0.45s cubic-bezier(.22,1,.36,1), height 0.45s cubic-bezier(.22,1,.36,1);
}
.review-avatar-btn.side img {
  width: 72px; height: 72px;
  opacity: 0.5;
  border-color: rgba(201,168,76,0.25);
}
.review-avatar-btn.active img {
  width: 100px; height: 100px;
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.25);
}
.review-avatar-btn.hidden-av {
  width: 0; height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
/* Review body content */
.review-body {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  min-height: 180px;
}
.review-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.review-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}
.review-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  margin-bottom: 6px;
}
.review-handle {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.review-handle svg { width: 14px; height: 14px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--beige);
  padding: 48px 48px 0;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 700;
  animation: shimmer 3s infinite ease-in-out;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.footer-social a:hover { transform: scale(1.12); opacity: 0.8; }
.footer-social svg { width: 24px; height: 24px; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */

/* --- Tablet landscape / small desktop --- */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .navbar-links { gap: 24px; }
  .carousel-slide img.slide-bg { height: 460px; }
  .slide-overlay { padding: 0 48px; }
  .slide-content h2 { font-size: 44px; }
  .slide-pricing .current { font-size: 32px; }
  .products-section { padding: 60px 32px 56px; }
  .product-card { min-width: 220px; max-width: 220px; }
  .scroll-arrow.left { left: -8px; }
  .scroll-arrow.right { right: -8px; }
  .usp-grid { gap: 28px; }
  .why-section { padding: 60px 32px 56px; }
  .footer { padding: 40px 32px 0; }
}

/* --- Tablet portrait / large mobile --- */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 0 20px; height: 62px; }
  .navbar-logo { font-size: 24px; letter-spacing: 2px; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 62px; }

  /* Hero */
  .hero-section { padding-top: 62px; }
  .carousel-slide img.slide-bg { height: 420px; }
  .slide-overlay { padding: 0 36px; }
  .slide-content h2 { font-size: 36px; }
  .slide-content .slide-sub { font-size: 13px; max-width: 300px; margin-bottom: 16px; }
  .slide-pricing .current { font-size: 30px; }
  .slide-pricing .original { font-size: 18px; }
  .slide-pricing { margin-bottom: 18px; }
  .btn-gold { padding: 12px 32px; font-size: 12px; letter-spacing: 1.5px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 18px; }
  .carousel-arrow.left { left: 8px; }
  .carousel-arrow.right { right: 8px; }
  .carousel-dots { bottom: 10px; gap: 8px; }
  .carousel-dot { width: 8px; height: 8px; }

  /* Products */
  .products-section { padding: 48px 16px 40px; }
  .product-scroll { gap: 14px; padding: 8px 4px 16px; }
  .product-card { min-width: 200px; max-width: 200px; }
  .product-info { padding: 12px 12px 14px; }
  .product-info h4 { font-size: 14px; }
  .product-pricing .current-price { font-size: 17px; }
  .product-info .btn-product { padding: 10px 0; font-size: 12px; }
  .scroll-arrow { display: none; }
  .badge { font-size: 10px; padding: 4px 8px; }

  /* Section headings */
  .section-heading { font-size: 28px; }
  .section-subheading { font-size: 13px; margin-bottom: 28px; }

  /* USP */
  .why-section { padding: 48px 20px 40px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .usp-tile { padding: 16px 8px; }
  .usp-tile h4 { font-size: 18px; }
  .usp-tile p { font-size: 13px; }
  .usp-icon { margin-bottom: 12px; }
  .usp-icon svg { width: 40px; height: 40px; }

  /* Reviews */
  .reviews-section { padding: 48px 16px 40px; }
  .review-avatars { gap: 20px; margin-bottom: 22px; }
  .review-avatar-btn.active img { width: 84px; height: 84px; }
  .review-avatar-btn.side img { width: 58px; height: 58px; }
  .review-body { max-width: 420px; min-height: 160px; }
  .review-stars { font-size: 20px; margin-bottom: 14px; }
  .review-text { font-size: 14px; line-height: 1.7; }
  .review-name { font-size: 15px; }

  /* Footer */
  .footer { padding: 32px 20px 0; }
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding-bottom: 24px;
  }
  .footer-logo { font-size: 22px; }
  .footer-links { gap: 20px; }
  .footer-links a { font-size: 12px; }
  .footer-bottom { padding: 16px 0; font-size: 10px; }
}

/* --- Mobile --- */
@media (max-width: 480px) {
  /* Navbar */
  .navbar { padding: 0 16px; height: 56px; }
  .navbar-logo { font-size: 22px; letter-spacing: 2px; }
  .mobile-menu { top: 56px; }
  .mobile-menu a { padding: 12px 0; font-size: 13px; }

  /* Hero */
  .hero-section { padding-top: 56px; }
  .carousel-slide img.slide-bg { height: 380px; }
  .slide-overlay {
    padding: 0 20px;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.40) 60%, rgba(0,0,0,0.15) 100%);
  }
  .slide-tag { font-size: 9px; padding: 4px 10px; margin-bottom: 12px; }
  .slide-content h2 { font-size: 28px; }
  .slide-content .slide-sub { font-size: 11px; margin-bottom: 14px; max-width: 220px; line-height: 1.5; }
  .slide-pricing { margin-bottom: 16px; gap: 8px; }
  .slide-pricing .current { font-size: 26px; }
  .slide-pricing .original { font-size: 14px; }
  .btn-gold { padding: 11px 26px; font-size: 11px; border-radius: 6px; }
  .carousel-arrow { width: 30px; height: 30px; font-size: 16px; }
  .carousel-arrow.left { left: 6px; }
  .carousel-arrow.right { right: 6px; }
  .carousel-dots { bottom: 6px; gap: 6px; }
  .carousel-dot { width: 7px; height: 7px; }

  /* Products */
  .products-section { padding: 40px 12px 36px; }
  .product-scroll { gap: 12px; padding: 6px 2px 12px; }
  .product-card { min-width: 170px; max-width: 170px; }
  .product-info { padding: 10px 10px 12px; }
  .product-category { font-size: 10px; }
  .product-info h4 { font-size: 13px; margin-bottom: 5px; }
  .product-rating { font-size: 11px; gap: 3px; margin-bottom: 6px; }
  .product-rating .star { font-size: 12px; }
  .product-rating .review-count { font-size: 10px; }
  .product-pricing { margin-bottom: 10px; }
  .product-pricing .current-price { font-size: 16px; }
  .product-pricing .original-price { font-size: 12px; }
  .product-info .btn-product { padding: 9px 0; font-size: 11px; letter-spacing: 0.8px; border-radius: 6px; }
  .badge { font-size: 9px; padding: 3px 6px; border-radius: 3px; }
  .badge-bestseller { top: 8px; left: 8px; }
  .badge-off { bottom: 8px; left: 8px; }

  /* Section headings */
  .section-heading { font-size: 24px; }
  .section-heading::after { width: 48px; margin-top: 10px; }
  .section-subheading { font-size: 12px; margin-bottom: 24px; }

  /* USP */
  .why-section { padding: 40px 16px 36px; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .usp-tile { padding: 12px 6px; }
  .usp-tile h4 { font-size: 16px; margin-bottom: 5px; }
  .usp-tile p { font-size: 12px; line-height: 1.55; }
  .usp-icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .usp-icon svg { width: 36px; height: 36px; }

  /* Reviews */
  .reviews-section { padding: 40px 12px 36px; }
  .review-avatars { gap: 16px; margin-bottom: 18px; }
  .review-avatar-btn.active img { width: 72px; height: 72px; border-width: 2.5px; }
  .review-avatar-btn.side img { width: 50px; height: 50px; border-width: 2px; }
  .review-body { max-width: 300px; min-height: 150px; }
  .review-stars { font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
  .review-text { font-size: 13px; line-height: 1.65; margin-bottom: 14px; }
  .review-name { font-size: 14px; margin-bottom: 4px; }
  .review-handle { font-size: 11px; }
  .review-handle svg { width: 12px; height: 12px; }

  /* Footer */
  .footer { padding: 28px 16px 0; }
  .footer-main { gap: 14px; padding-bottom: 20px; }
  .footer-logo { font-size: 20px; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: 11px; }
  .footer-social { gap: 14px; }
  .footer-social svg { width: 22px; height: 22px; }
  .footer-bottom { padding: 14px 0; font-size: 10px; }
}

/* --- Very small mobile --- */
@media (max-width: 360px) {
  .navbar-logo { font-size: 20px; letter-spacing: 1.5px; }
  .carousel-slide img.slide-bg { height: 340px; }
  .slide-overlay { padding: 0 16px; }
  .slide-content h2 { font-size: 24px; }
  .slide-content .slide-sub { font-size: 10px; max-width: 180px; }
  .slide-pricing .current { font-size: 22px; }
  .slide-pricing .original { font-size: 13px; }
  .btn-gold { padding: 9px 20px; font-size: 10px; }
  .product-card { min-width: 155px; max-width: 155px; }
  .product-info h4 { font-size: 12px; }
  .product-pricing .current-price { font-size: 14px; }
  .product-info .btn-product { font-size: 10px; padding: 8px 0; }
  .section-heading { font-size: 22px; }
  .usp-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-avatar-btn.active img { width: 64px; height: 64px; }
  .review-avatar-btn.side img { width: 44px; height: 44px; }
  .review-body { max-width: 260px; }
  .review-text { font-size: 12px; }
}