/* ============================================================
   NH COLLECTION — MAIN STYLESHEET
   Brand: Ladies Handbags | White & Purple | Be Confident
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours extracted from NH Collection logo */
  --orange:        #D96000;   /* logo orange — primary accent */
  --orange-light:  #F07020;   /* hover / lighter orange */
  --orange-dark:   #A84500;   /* deep orange for gradients */
  --silver:        #B8B8C0;   /* logo silver ring */
  --silver-light:  #E0E0E6;   /* light silver tint */
  --black:         #1A1A1A;   /* logo background */
  --charcoal:      #2A2A2A;   /* slightly lighter dark */
  --white:         #FFFFFF;
  --off-white:     #F8F7F5;
  --light-bg:      #F2F0ED;
  --lighter-bg:    #ECEAE6;
  --gray-100:      #EDEBE8;
  --gray-200:      #D8D5D0;
  --gray-400:      #9A9590;
  --gray-500:      #6A6560;
  --gray-600:      #484340;
  --dark:          #1A1A1A;

  /* Aliases used throughout existing CSS */
  --purple:        #D96000;
  --purple-mid:    #E07030;
  --purple-light:  #F0A060;
  --purple-dark:   #A84500;
  --purple-darker: #6B2C00;
  --gold:          #D96000;
  --gold-light:    #F5C080;

  --radius:        16px;
  --radius-sm:     8px;
  --radius-lg:     24px;
  --trans:         all 0.35s ease;
  --shadow:        0 4px 24px rgba(217,96,0,0.15);
  --shadow-lg:     0 12px 50px rgba(217,96,0,0.20);
  --shadow-xl:     0 20px 70px rgba(26,26,26,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }
.hero-slider-section { padding: 0 !important; margin: 0 !important; }

/* ========== TYPOGRAPHY HELPERS ========== */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217,96,0,0.07);
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title span { color: var(--purple); }

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-center { text-align: center; }

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #A84500, #D96000);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(217,96,0,0.30);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(217,96,0,0.45); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }

.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,255,255,0.4); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }

.btn-wa-white {
  background: white;
  color: #128C7E;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-wa-white:hover {
  background: #f0faf7;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.2);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(23, 22, 22, 0.161);;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 96, 0, 0.10);
  box-shadow: 0 2px 20px rgba(26, 26, 26, 0.06);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-logo-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.4s ease;
}
.navbar.scrolled .nav-logo-img { border-color: rgba(217,96,0,0.3); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 22px; font-weight: 800; color: white; transition: color 0.4s ease; }
.logo-name span { color: #F5A050; transition: color 0.4s ease; }
.logo-tag { font-size: 9px; color: rgba(255,255,255,0.70); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; transition: color 0.4s ease; }

/* On scroll — dark colours */
.navbar.scrolled .logo-name      { color: #1A1A1A; }
.navbar.scrolled .logo-name span { color: #D96000; }
.navbar.scrolled .logo-tag       { color: #A84500; }

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 9px 20px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  transition: var(--trans);
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.18);
  color: white;
}

/* On scroll — dark links */
.navbar.scrolled .nav-links a              { color: var(--dark); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active       { background: rgba(217,96,0,0.07); color: var(--purple); }

.nav-actions { display: flex; align-items: center; gap: 10px; }


/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--trans); display: block;
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 20px; font-weight: 600;
  color: var(--dark); padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--purple); padding-left: 10px; }

/* ============================================================
   HERO SECTION
   ============================================================ */

/* .hero — legacy, replaced by .hero-slider-section */
.hero { display: none; }

/* Background decorations */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,96,0,0.15), rgba(217,96,0,0.08));
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,169,110,0.12), rgba(201,169,110,0.05));
  bottom: 50px; left: -80px;
  animation-delay: 3s;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(236,72,153,0.15), transparent);
  top: 40%; left: 40%;
  animation-delay: 5s;
}

.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(139,105,20,0.1) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Hero Content */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217,96,0,0.12);
  color: var(--purple);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
  width: fit-content;
  animation: fadeSlideDown 0.8s ease both;
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--purple-dark), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.hero-trust {
  display: flex; gap: 36px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.trust-item { text-align: center; }
.trust-num {
  font-size: 30px; font-weight: 900;
  color: var(--purple); line-height: 1;
}
.trust-lbl { font-size: 11px; color: var(--gray-500); font-weight: 500; margin-top: 3px; }

/* Hero Image Side */
.hero-visual {
  position: relative;
  animation: fadeSlideLeft 0.9s ease 0.35s both;
}

.hero-img-main {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card.top-left { top: 28px; left: -36px; animation-delay: 0s; }
.hero-float-card.bot-right { bottom: 70px; right: -36px; animation-delay: 2.5s; }

.float-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
}
.icon-purple { background: linear-gradient(135deg, var(--purple), var(--purple-mid)); }
.icon-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.icon-green  { background: linear-gradient(135deg, #10B981, #059669); }

.float-card-text .val { font-size: 16px; font-weight: 800; color: var(--dark); display: block; }
.float-card-text .lbl { font-size: 11px; color: var(--gray-400); }

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slide background image */
.hs-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hs-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.heroSwiper .swiper-slide-active .hs-img-wrap img {
  transform: scale(1);
}

/* Gradient overlays — deep neutral, no colour cast */
.hs-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(20, 18, 15, 0.78) 0%,
    rgba(30, 25, 18, 0.55) 55%,
    rgba(44, 44, 44, 0.18) 100%
  );
}
.hs-overlay-2 {
  background: linear-gradient(
    130deg,
    rgba(15, 14, 12, 0.80) 0%,
    rgba(28, 24, 18, 0.52) 58%,
    rgba(44, 44, 44, 0.15) 100%
  );
}
.hs-overlay-3 {
  background: linear-gradient(
    100deg,
    rgba(18, 16, 12, 0.76) 0%,
    rgba(32, 28, 20, 0.50) 55%,
    rgba(44, 44, 44, 0.15) 100%
  );
}
.hs-overlay-4 {
  background: linear-gradient(
    115deg,
    rgba(22, 18, 14, 0.78) 0%,
    rgba(36, 30, 20, 0.52) 55%,
    rgba(44, 44, 44, 0.15) 100%
  );
}

/* Slide content */
.hs-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
  max-width: none !important;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 96, 0, 0.20);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 96, 0, 0.45);
  color: #F5A050;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hs-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.hs-title span {
  background: linear-gradient(135deg, #F5A050, #D96000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.hs-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}

/* Animate in when slide is active */
.heroSwiper .swiper-slide-active .hs-badge,
.heroSwiper .swiper-slide-active .hs-title,
.heroSwiper .swiper-slide-active .hs-sub,
.heroSwiper .swiper-slide-active .hs-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Outline-white button for dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-3px);
}

/* Navigation arrows */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: var(--trans);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-prev:hover, .hero-next:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-50%) scale(1.08);
}
/* Override Swiper's default arrow styles */
.hero-prev::after, .hero-next::after { display: none; }

/* Pagination dots */
.hero-pagination {
  bottom: 28px !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: var(--trans);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--purple);
  width: 30px;
  border-radius: 5px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #8B6914, #C9A96E);
  width: 0%;
  transition: width linear;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: linear-gradient(135deg, #111111, #1A1A1A, #2A2A2A);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--trans);
}
.stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }

.stat-icon { font-size: 30px; color: var(--gold-light); margin-bottom: 12px; }
.stat-num  { font-size: 44px; font-weight: 900; color: white; line-height: 1; }
.stat-plus { color: var(--gold-light); }
.stat-lbl  { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 6px; }

/* ============================================================
   CATEGORIES
   ============================================================ */

.categories { background: var(--off-white); }

/* ---- Category section header ---- */
.cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cat-header .section-title { margin-bottom: 0; }
.cat-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  border: 2px solid var(--purple);
  border-radius: 50px;
  padding: 10px 22px;
  transition: var(--trans);
  white-space: nowrap;
}
.cat-view-all:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- Bento grid ---- */
.cat-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.cat-tile {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.cat-tile--lg { grid-column: span 2; }

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-tile:hover img { transform: scale(1.07); }

.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 10, 5, 0.82) 0%,
    rgba(15, 10, 5, 0.30) 50%,
    rgba(15, 10, 5, 0.05) 100%
  );
  transition: background 0.4s ease;
}
.cat-tile:hover .cat-tile-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 10, 5, 0.90) 0%,
    rgba(217, 96, 0, 0.25) 60%,
    rgba(15, 10, 5, 0.10) 100%
  );
}

.cat-tile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-tile-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.cat-tile-name {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.cat-tile--lg .cat-tile-name { font-size: 26px; }
.cat-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.cat-tile:hover .cat-tile-cta {
  color: var(--orange-light);
  gap: 10px;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */

.products-section { background: white; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(217,96,0,0.12);
}

.prod-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--light-bg);
}
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .prod-img-wrap img { transform: scale(1.1); }

.prod-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px; font-weight: 700;
  color: white;
}
.prod-badge.new    { background: #10B981; }
.prod-badge.hot    { background: #EF4444; }
.prod-badge.sale   { background: var(--gold); }
.prod-badge.purple { background: var(--purple); }

.prod-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  cursor: pointer; transition: var(--trans);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: none;
}
.prod-fav:hover { color: #EF4444; transform: scale(1.15); }

.prod-wa-hover {
  position: absolute;
  bottom: -56px; left: 0; right: 0;
  padding: 10px 12px;
  transition: var(--trans);
  display: flex; gap: 8px;
}
.product-card:hover .prod-wa-hover { bottom: 0; }

.prod-body { padding: 16px; }

.prod-cat {
  font-size: 11px; color: var(--purple);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 5px;
}
.prod-name {
  font-size: 15px; font-weight: 700;
  color: var(--dark); line-height: 1.35;
  margin-bottom: 10px;
}
.prod-price-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.prod-price {
  font-size: 20px; font-weight: 800; color: var(--purple);
}
.prod-price .original {
  font-size: 13px; color: var(--gray-400);
  text-decoration: line-through; font-weight: 400;
  margin-left: 6px;
}
.prod-moq {
  font-size: 11px; color: var(--gray-500);
  background: var(--gray-100); padding: 3px 9px; border-radius: 20px;
}
.prod-actions { display: flex; gap: 8px; }
.prod-actions .btn { flex: 1; padding: 10px 14px; font-size: 13px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-us {
  background: linear-gradient(145deg, var(--light-bg) 0%, var(--lighter-bg) 100%);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139,105,20,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-img-wrap { position: relative; }
.why-us-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.why-img-tag {
  position: absolute;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  bottom: 32px; left: -24px;
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.why-img-tag span { display: block; font-size: 11px; opacity: 0.85; font-weight: 400; margin-top: 2px; }

.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: white;
  padding: 22px 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border-left: 4px solid transparent;
  transition: var(--trans);
}
.why-item:hover {
  transform: translateX(8px);
  border-left-color: var(--purple);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
}
.why-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.why-text p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials { background: white; }

.testi-swiper { margin-top: 52px; padding-bottom: 48px; }

.testi-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(217,96,0,0.07);
  height: auto;
}

.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-quote {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.85; font-style: italic;
  margin-bottom: 24px; flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; font-weight: 800;
  flex-shrink: 0;
}
.testi-avatar-img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
}
.testi-info h5 { font-size: 15px; font-weight: 700; color: var(--dark); }
.testi-info span { font-size: 12px; color: var(--purple); font-weight: 500; }

/* ---- Google review card ---- */
.testi-google-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testi-google-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.tgc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.tgc-stars {
  color: #FBBC04;
  font-size: 20px;
  letter-spacing: 2px;
}
.tgc-glogo {
  height: 18px;
  width: auto;
  opacity: 0.75;
}

/* ---- Google overall rating badge ---- */
.grb-wrap { margin: 28px 0 40px; }
.grb-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.grb-logo { height: 22px; width: auto; }
.grb-divider { width: 1px; height: 28px; background: var(--gray-200); }
.grb-stars { color: #FBBC04; font-size: 20px; letter-spacing: 2px; }
.grb-score { font-size: 24px; font-weight: 900; color: var(--dark); }
.grb-count { font-size: 13px; color: var(--gray-500); }

/* ---- Skeleton loading ---- */
.testi-skeleton {
  min-height: 230px;
  background: linear-gradient(90deg,
    var(--gray-100) 25%,
    var(--gray-200) 50%,
    var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.swiper-pagination-bullet { background: var(--purple-light); }
.swiper-pagination-bullet-active { background: var(--purple); width: 24px; border-radius: 4px; }

/* ============================================================
   WHATSAPP CTA SECTION
   ============================================================ */

.wa-cta {
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 50%, #2A2010 100%);
  padding: 90px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.wa-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.wa-cta::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.wa-cta .container { position: relative; z-index: 1; }

.wa-cta-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: #25D366;
  margin: 0 auto 28px;
  animation: pulse-wa 2.5s infinite;
}

.wa-cta h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; color: white; margin-bottom: 16px; }
.wa-cta p  { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 44px; line-height: 1.8; }
.wa-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  z-index: 998;
  animation: pulse-wa 2.5s infinite;
  transition: var(--trans);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
.wa-float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ============================================================
   FOOTER  — redesigned
   ============================================================ */

/* ---- Pre-footer WhatsApp CTA band ---- */
.footer-cta-band {
  position: relative;
  background: linear-gradient(135deg, #A84500 0%, #D96000 50%, #F07020 100%);
  overflow: hidden;
  padding: 0;
}
.footer-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.footer-cta-band::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0;
  flex-wrap: wrap;
}
.footer-cta-left {
  display: flex; align-items: center; gap: 22px;
}
.footer-cta-icon-wrap {
  width: 62px; height: 62px; flex-shrink: 0;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  animation: pulse-wa 2.5s infinite;
}
.footer-cta-label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.footer-cta-heading {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800; color: white; line-height: 1.25;
  margin: 0;
}
.footer-cta-band .btn-wa-white {
  background: white;
  color: #128C7E;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-cta-band .btn-wa-white:hover {
  background: #f0faf7;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.2);
}

/* ---- Main footer body ---- */
.footer-main {
  position: relative;
  background: #111111;
  overflow: hidden;
  padding: 72px 0 56px;
}
.footer-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.footer-bg-glow {
  position: absolute;
  bottom: -160px; left: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,96,0,0.12), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-bg-glow-r {
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(217,96,0,0.07), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid-new {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Brand column */
.footer-brand-new { display: flex; flex-direction: column; }
.footer-brand-new .nav-logo { display: inline-flex; margin-bottom: 18px; }
.footer-brand-new .logo-name { color: white !important; }
.footer-brand-new .logo-name span { color: #F5A050 !important; }
.footer-brand-new .logo-tag { color: rgba(255,255,255,0.55) !important; }

.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.9; margin-bottom: 24px;
}

/* Mini stats row */
.footer-stats-row {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.fsr-item { flex: 1; text-align: center; }
.fsr-item strong {
  display: block;
  font-size: 22px; font-weight: 900;
  color: var(--orange-light); line-height: 1;
}
.fsr-item span {
  font-size: 11px; color: rgba(255,255,255,0.45);
  font-weight: 500; margin-top: 3px; display: block;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.fsr-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
}

/* Social buttons */
.footer-socials-new { display: flex; gap: 8px; }
.fsn-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
}
.fsn-btn:hover {
  background: var(--c, var(--purple));
  border-color: var(--c, var(--purple));
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Nav columns */
.footer-col-new {}

.footer-col-head {
  font-size: 13px; font-weight: 700;
  color: white; letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative;
}
.footer-col-head::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}

.footer-links-new { list-style: none; padding: 0; margin: 0; }
.footer-links-new li { margin-bottom: 4px; }
.footer-links-new a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  font-size: 14px; color: rgba(255,255,255,0.5);
  border-radius: 8px;
  text-decoration: none;
  transition: var(--trans);
}
.footer-links-new a i {
  font-size: 10px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--trans);
}
.footer-links-new a:hover {
  background: rgba(255,255,255,0.05);
  color: white;
  padding-left: 16px;
}
.footer-links-new a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Contact cards */
.footer-contact-cards { display: flex; flex-direction: column; gap: 14px; }
.fcc {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px;
  transition: var(--trans);
}
.fcc:hover {
  background: rgba(217,96,0,0.08);
  border-color: rgba(217,96,0,0.2);
}
.fcc-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: white;
}
.fcc-label {
  font-size: 10px; font-weight: 700;
  color: var(--orange-light); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 3px;
}
.fcc p {
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.6; margin: 0;
}

/* ---- Bottom bar ---- */
.footer-bottom-new {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.3);
  text-align: center;
}
.footer-bottom-dot { color: var(--orange); font-size: 10px; }

/* ---- Keep legacy social-btn for any remaining uses ---- */
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
  transition: var(--trans);
}
.social-btn:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-4px); }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .footer-grid-new { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-left  { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(145deg, var(--light-bg), var(--lighter-bg));
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(217,96,0,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; margin-bottom: 14px; }
.page-hero p  { font-size: 16px; color: var(--gray-500); max-width: 540px; margin: 0 auto; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 13px; color: var(--gray-400);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--purple); }
.breadcrumb i { font-size: 10px; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

.products-page { background: var(--off-white); }

.products-page-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
}

/* Filter Sidebar */
.filter-sidebar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  position: sticky; top: 100px;
}

.filter-title {
  font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-bg);
  display: flex; align-items: center; gap: 8px;
}
.filter-title i { color: var(--purple); }

.filter-group { margin-bottom: 28px; }
.filter-group h5 {
  font-size: 13px; font-weight: 700;
  color: var(--dark); letter-spacing: 0.5px;
  margin-bottom: 14px; text-transform: uppercase;
}

.filter-option {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; cursor: pointer;
  font-size: 14px; color: var(--gray-600);
  transition: var(--trans);
}
.filter-option input { accent-color: var(--purple); width: 16px; height: 16px; }
.filter-option:hover { color: var(--purple); }

.filter-option .count {
  margin-left: auto;
  background: var(--gray-100);
  padding: 2px 8px; border-radius: 20px;
  font-size: 11px;
}

/* Main Products Area */
.products-main-header {
  display: flex; align-items: center;
  justify-content: space-between;
  background: white; padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.products-count { font-size: 14px; color: var(--gray-500); }
.products-count strong { color: var(--dark); font-weight: 700; }

.sort-select {
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: var(--dark);
  cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--purple); }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story { background: white; }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-story-img {
  position: relative;
}
.about-story-img img {
  width: 100%; height: 480px;
  object-fit: cover; border-radius: 28px;
  box-shadow: var(--shadow-xl);
}
.about-story-img::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 3px solid var(--purple-light);
  border-radius: 28px;
  z-index: -1;
}

.about-text .section-badge { margin-bottom: 12px; }
.about-text p { font-size: 15px; color: var(--gray-600); line-height: 1.9; margin-bottom: 18px; }

.about-values { background: var(--light-bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.value-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: 22px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: white;
}
.value-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

.team-section { background: white; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 52px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.team-card {
  background: var(--light-bg); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  border: 2px solid transparent; transition: var(--trans);
}
.team-card:hover { border-color: var(--purple); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 900; color: white;
}
.team-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--purple); font-weight: 600; margin-bottom: 16px; }
.team-phone {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 14px; color: var(--gray-600); margin-bottom: 6px;
}
.team-phone i { color: var(--purple); }
.team-wa-btn { margin-top: 18px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, #111111, #1A1A1A);
  border-radius: var(--radius-lg);
  padding: 44px 36px; color: white;
  height: 100%;
}
.contact-info-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.contact-info-card > p { font-size: 15px; opacity: 0.8; margin-bottom: 36px; line-height: 1.75; }

.cinfo-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cinfo-item h5 { font-size: 13px; opacity: 0.7; margin-bottom: 3px; }
.cinfo-item p  { font-size: 14px; font-weight: 600; }

.cinfo-social { display: flex; gap: 10px; }
.cinfo-social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 17px;
  transition: var(--trans);
}
.cinfo-social a:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}
.contact-form-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--dark); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; color: var(--dark);
  transition: var(--trans);
  outline: none;
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(217,96,0,0.06); }
.form-group textarea { resize: vertical; min-height: 120px; }

.map-section { background: white; padding: 0; }
.map-section iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-10px, 15px) scale(0.97); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.08); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counter-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); color: var(--gold-light); }
  100% { transform: scale(1); }
}

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

@media (max-width: 1100px) {
  .cat-bento               { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; }
  .cat-tile--lg            { grid-column: span 1; }
  .cat-tile--lg .cat-tile-name { font-size: 20px; }
  .products-grid           { grid-template-columns: repeat(3, 1fr); }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
  .products-page-inner     { grid-template-columns: 220px 1fr; }
  .products-page-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content            { grid-template-columns: 1fr; text-align: center; }
  .hero-visual             { display: none; }
  .hero-btns               { justify-content: center; }
  .hero-trust              { justify-content: center; }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner            { grid-template-columns: 1fr; }
  .why-us-img-wrap         { display: none; }
  .about-story-inner       { grid-template-columns: 1fr; }
  .about-story-img         { display: none; }
  .values-grid             { grid-template-columns: 1fr 1fr; }
  .contact-inner           { grid-template-columns: 1fr; }
  .products-page-inner     { grid-template-columns: 1fr; }
  .filter-sidebar          { position: static; }
  .section-header-row      { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  section                  { padding: 64px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger               { display: flex; }
  .hero-badge              { margin-left: auto; margin-right: auto; }
  .products-grid           { grid-template-columns: repeat(2, 1fr); }
  .cat-bento               { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px 200px; }
  .cat-header              { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-grid             { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom           { flex-direction: column; text-align: center; }
  .team-grid               { grid-template-columns: 1fr; }
  .form-row                { grid-template-columns: 1fr; }
  .products-page-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid           { grid-template-columns: 1fr; }
  .cat-bento               { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 180px); }
  .cat-tile-name           { font-size: 16px; }
  .stats-grid              { grid-template-columns: 1fr 1fr; }
  .hero-trust              { gap: 20px; }
  .values-grid             { grid-template-columns: 1fr; }
  .products-page-grid      { grid-template-columns: 1fr; }
}


/* ============================================================
       PRODUCT DETAIL PAGE STYLES
       ============================================================ */

    /* ---- Breadcrumb Row ---- */
    .pd-breadcrumb {
      padding: 140px 0 0;
      background: var(--off-white);
    }
    .pd-breadcrumb .breadcrumb { justify-content: flex-start; margin-bottom: 0; }

    /* ---- Main Detail Section ---- */
    .product-detail-section {
      background: var(--off-white);
      padding: 32px 0 80px;
    }

    .pd-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    /* ---- Gallery ---- */
    .pd-gallery { position: sticky; top: 100px; }

    .pd-main-img-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--light-bg);
      aspect-ratio: 1 / 1;
      margin-bottom: 14px;
      box-shadow: var(--shadow-lg);
    }
    .pd-main-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .pd-main-img-wrap:hover img { transform: scale(1.04); }

    .pd-badge-wrap {
      position: absolute;
      top: 16px; left: 16px;
      display: flex; flex-direction: column; gap: 8px;
    }

    .pd-fav-btn {
      position: absolute;
      top: 16px; right: 16px;
      width: 42px; height: 42px;
      background: white;
      border: none; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--gray-400);
      cursor: pointer; transition: var(--trans);
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }
    .pd-fav-btn:hover { color: #EF4444; transform: scale(1.12); }
    .pd-fav-btn.active { color: #EF4444; }

    .pd-thumbs {
      display: flex; gap: 10px; flex-wrap: wrap;
    }
    .pd-thumb {
      width: 76px; height: 76px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--trans);
      flex-shrink: 0;
    }
    .pd-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .pd-thumb.active { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(217,96,0,0.15); }
    .pd-thumb:hover { border-color: var(--purple-light); }

    /* ---- Product Info ---- */
    .pd-info { padding-top: 8px; }

    .pd-cat-row {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
    }
    .pd-cat-label {
      font-size: 12px; font-weight: 700;
      color: var(--purple); text-transform: uppercase;
      letter-spacing: 1px;
    }
    .pd-cat-divider { width: 1px; height: 14px; background: var(--gray-200); }
    .pd-sku { font-size: 12px; color: var(--gray-400); }

    .pd-title {
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 900;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .pd-rating {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
    }
    .pd-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
    .pd-rating-count { font-size: 13px; color: var(--gray-500); }

    .pd-price-box {
      background: white;
      border-radius: var(--radius);
      padding: 20px 22px;
      margin-bottom: 24px;
      border: 1px solid var(--gray-200);
      display: flex; align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .pd-price {
      font-size: 38px; font-weight: 900;
      color: var(--purple); line-height: 1;
    }
    .pd-price-orig {
      font-size: 18px; color: var(--gray-400);
      text-decoration: line-through; font-weight: 400;
      display: block; margin-top: 4px;
    }
    .pd-savings {
      background: rgba(16,185,129,0.1);
      color: #059669;
      padding: 6px 14px; border-radius: 50px;
      font-size: 13px; font-weight: 700;
    }

    .pd-moq-row {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 22px;
      padding: 14px 18px;
      background: rgba(217,96,0,0.05);
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--purple);
    }
    .pd-moq-row i { color: var(--purple); font-size: 16px; }
    .pd-moq-row span { font-size: 14px; color: var(--gray-600); }
    .pd-moq-row strong { color: var(--dark); }

    .pd-divider {
      height: 1px;
      background: var(--gray-200);
      margin: 22px 0;
    }

    /* Colors */
    .pd-section-label {
      font-size: 13px; font-weight: 700;
      color: var(--dark); text-transform: uppercase;
      letter-spacing: 0.5px; margin-bottom: 12px;
    }

    .pd-colors {
      display: flex; gap: 10px;
      margin-bottom: 22px; flex-wrap: wrap;
    }
    .pd-color-swatch {
      width: 32px; height: 32px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--trans);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .pd-color-swatch:hover,
    .pd-color-swatch.active {
      border-color: var(--purple);
      transform: scale(1.18);
      box-shadow: 0 0 0 3px rgba(217,96,0,0.2);
    }

    /* Description */
    .pd-description {
      font-size: 14px; color: var(--gray-600);
      line-height: 1.85; margin-bottom: 20px;
    }

    /* Features */
    .pd-features {
      display: flex; flex-direction: column; gap: 8px;
      margin-bottom: 28px;
    }
    .pd-feature-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--gray-600);
    }
    .pd-feature-item i {
      color: var(--purple); font-size: 13px; flex-shrink: 0;
    }

    /* Action buttons */
    .pd-actions {
      display: flex; flex-direction: column; gap: 12px;
    }
    .pd-actions .btn {
      width: 100%;
      justify-content: center;
      padding: 16px;
      font-size: 15px;
    }

    .pd-share {
      display: flex; align-items: center; gap: 12px;
      margin-top: 20px;
    }
    .pd-share-label {
      font-size: 13px; color: var(--gray-500); font-weight: 500;
    }
    .pd-share-btns { display: flex; gap: 8px; }
    .pd-share-btn {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: var(--light-bg);
      border: 1px solid var(--gray-200);
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-600); font-size: 14px;
      cursor: pointer; transition: var(--trans);
      text-decoration: none;
    }
    .pd-share-btn:hover { background: var(--purple); color: white; border-color: var(--purple); }

    /* ---- Trust badges ---- */
    .pd-trust {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 12px; margin-top: 24px;
    }
    .pd-trust-item {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      padding: 14px 10px;
      text-align: center;
    }
    .pd-trust-item i { color: var(--purple); font-size: 20px; margin-bottom: 6px; display: block; }
    .pd-trust-item span {
      font-size: 11px; color: var(--gray-500);
      font-weight: 600; line-height: 1.4; display: block;
    }

    /* ---- Related Products ---- */
    .related-section {
      background: white;
      padding: 80px 0;
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-top: 40px;
    }

    /* ---- Not Found state ---- */
    .pd-not-found {
      text-align: center;
      padding: 80px 20px;
    }
    .pd-not-found i { font-size: 60px; color: var(--gray-200); margin-bottom: 20px; }
    .pd-not-found h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
    .pd-not-found p  { color: var(--gray-500); margin-bottom: 28px; }

    /* ---- Responsive ---- */
    @media (max-width: 900px) {
      .pd-inner        { grid-template-columns: 1fr; }
      .pd-gallery      { position: static; }
      .related-grid    { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .pd-price        { font-size: 28px; }
      .pd-trust        { grid-template-columns: repeat(3, 1fr); }
      .related-grid    { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 420px) {
      .related-grid    { grid-template-columns: 1fr 1fr; }
    }