/* ============================================================
   ZITAARA — Main Stylesheet
   Google Fonts: Poppins + Playfair Display
   Primary: Blue | Accents: Pastel Purple, Soft Pink, Teal
   ============================================================ */

/* ==== IMPORT FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* ==== CSS VARIABLES ==== */
:root {
  --primary: #4A2545;
  --primary-dark: #361932;
  --primary-light: #F3E8F0;
  --accent-purple: #A78BFA;
  --accent-pink: #F9A8D4;
  --accent-teal: #2DD4BF;
  --accent-orange: #FB923C;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-light: #F8FAFF;
  --bg-cream: #FFFBF5;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(74, 37, 69, 0.08);
  --shadow-md: 0 4px 20px rgba(74, 37, 69, 0.12);
  --shadow-lg: 0 8px 40px rgba(74, 37, 69, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Lato', sans-serif;
  --font-display: 'Lato', sans-serif;
}

/* ==== RESET & BASE ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==== SCROLLBAR ==== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================================================
   SECTION 1 — TOP OFFER BAR
   ============================================================ */
.offer-bar {
  background: var(--primary);
  padding: 9px 0;
  text-align: center;
  position: relative;
  z-index: 1100;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.offer-bar p {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

.offer-bar .sparkle {
  display: inline-block;
  margin: 0 6px;
  animation: sparkle 1.5s ease-in-out infinite alternate;
}

@keyframes sparkle {
  from {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }

  to {
    transform: scale(1.3) rotate(20deg);
    opacity: 1;
  }
}

.offer-code {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 6px;
}

/* ============================================================
   SECTION 2 — HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(74, 37, 69, 0.13);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo-img {
  height: 66px;
  /* Optimal height for new Zitaara logo */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin-right: 8px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

/* Hamburger */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-dark);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-radius: 6px;
}

.hamburger-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Left Side */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Nav Menu */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link .chevron {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.nav-link.active {
  color: var(--primary);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 32px 28px;
  min-width: 680px;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 2000;
}

/* JS adds .is-open to .nav-item — no CSS :hover needed */
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Keep chevron rotation via JS class too */
.nav-item.is-open .chevron {
  transform: rotate(180deg);
}

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

.mega-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 8px;
}

.mega-link {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 0;
  transition: var(--transition);
}

.mega-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* Mega menu featured card */
.mega-featured {
  background: linear-gradient(135deg, var(--primary-light) 0%, #EDE9FE 100%);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  grid-column: 4;
}

.mega-featured-badge {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.mega-featured-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mega-featured-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mega-featured-btn {
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.mega-featured-btn:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

/* Header Actions / Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hdr-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.hdr-icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: linear-gradient(135deg, var(--accent-pink), #F43F5E);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Search Bar */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

.search-input-group {
  display: flex;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.search-input-group input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.search-input-group button {
  background: var(--primary);
  border: none;
  color: white;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.search-input-group button:hover {
  background: var(--primary-dark);
}

.search-popular {
  margin-top: 14px;
}

.search-popular p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.search-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.search-tag:hover {
  background: var(--primary);
  color: white;
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 24px;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: none;
}

.drawer-overlay.active {
  display: block;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.drawer-close:hover {
  color: var(--primary);
}

.drawer-nav-item {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.drawer-nav-item:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* ============================================================
   SECTION 3 — HERO BANNER SLIDER
   ============================================================ */
.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-inner {
  border-radius: 0;
}

.hero-slide {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

/* Absolutely-positioned text wrapper — always anchored, never re-flows */
.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: white;
  color: var(--primary);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  /* Stronger shadow to pop off background */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  color: var(--primary-dark);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition);
  margin: 0 16px;
}

.carousel-control-prev {
  left: 16px;
}

.carousel-control-next {
  right: 16px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(74, 37, 69, 0.7);
  opacity: 1;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
  bottom: 20px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.3s;
}

.hero-carousel .carousel-indicators [data-bs-target].active {
  width: 40px;
  background: white;
}

/* ============================================================
   SECTION 4 — CATEGORY ICONS
   ============================================================ */
.category-section {
  padding: 70px 0 60px;
  background: var(--bg-light);
  overflow: hidden;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

.section-title-deco {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-purple));
  border-radius: 2px;
  margin: 12px auto 10px;
}

.category-track-wrapper {
  position: relative;
  overflow: hidden;
}

.category-track {
  display: flex;
  gap: 24px;
  animation: scrollTrack 22s linear infinite;
  width: max-content;
}

.category-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  min-width: 110px;
}

.cat-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  transition: var(--transition);
  border: 3px solid transparent;
  background-clip: padding-box;
}

.cat-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.cat-item:hover .cat-icon-wrap {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 30px rgba(74, 37, 69, 0.2);
}

.cat-item:hover .cat-icon-wrap::before {
  opacity: 1;
}

.cat-icon-wrap.c1 {
  background: linear-gradient(135deg, #DBEAFE, #EDE9FE);
}

.cat-icon-wrap.c2 {
  background: linear-gradient(135deg, #FCE7F3, #FDF2F8);
}

.cat-icon-wrap.c3 {
  background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
}

.cat-icon-wrap.c4 {
  background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
}

.cat-icon-wrap.c5 {
  background: linear-gradient(135deg, #E0F2FE, #F0F9FF);
}

.cat-icon-wrap.c6 {
  background: linear-gradient(135deg, #FDE8D8, #FFF7F0);
}

.cat-icon-wrap.c7 {
  background: linear-gradient(135deg, #CCFBF1, #F0FDFA);
}

.cat-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  white-space: nowrap;
}

.cat-item:hover .cat-name {
  color: var(--primary);
}

/* ============================================================
   SECTION 5 — FEATURED COLLECTIONS
   ============================================================ */
.collections-section {
  padding: 80px 0;
  background: var(--white);
}

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 4/5;
  display: block;
}

.collection-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.80) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
  transition: var(--transition);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.88) 0%, rgba(74, 37, 69, 0.2) 60%, transparent 100%);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  transform: translateY(0);
  transition: var(--transition);
}

.collection-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  color: white;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.collection-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.collection-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  display: none;
}

.collection-card:hover .collection-sub {
  display: block;
}

.collection-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.collection-card:hover .collection-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Collection Deco Border */
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}

.collection-card:hover::after {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   SECTION 5a — SUMMER PROMO CTA (Wide Banner)
   ============================================================ */
.summer-promo-cta {
  background: #F4F9FA;
  /* Matches the soft blue in the reference image */
  padding: 0;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.summer-promo-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

/* Left Image Side */
.summer-promo-img-col {
  flex: 1 1 50%;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.summer-promo-img-col img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  /* Adjust based on cutoff */
  object-fit: contain;
  object-position: bottom center;
}

/* Right Content Side */
.summer-promo-text-col {
  flex: 1 1 50%;
  padding: 60px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summer-promo-label {
  color: #FF4A5A;
  /* The pinkish/red color from reference */
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.summer-promo-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #2D2D2D;
  line-height: 1.1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.summer-promo-sub {
  font-size: 1.25rem;
  color: #4A4A4A;
  margin-bottom: 32px;
  font-weight: 500;
}

.summer-promo-btn {
  background: #FF4A5A;
  /* Matches reference button */
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  width: fit-content;
  transition: all 0.3s ease;
}

.summer-promo-btn:hover {
  background: #E03E4D;
  /* Darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 74, 90, 0.3);
}

@media (max-width: 991px) {
  .summer-promo-inner {
    flex-direction: column;
    text-align: center;
  }

  .summer-promo-img-col {
    min-height: auto;
    width: 100%;
    order: 2;
    /* Move image to bottom on mobile or vice versa */
  }

  .summer-promo-img-col img {
    max-height: 400px;
  }

  .summer-promo-text-col {
    width: 100%;
    order: 1;
    padding: 60px 24px 20px;
    align-items: center;
  }

  .summer-promo-btn {
    width: auto;
  }
}

/* ============================================================
   SECTION 5b — PROMO BANNERS (3 columns)
   ============================================================ */
.promo-banners-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.promo-banners-row {
  /*display: grid;*/
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  min-height: 340px;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 340px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
}

.promo-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner:hover .promo-banner-img {
  transform: scale(1.1);
}

/* Coloured overlay per banner */
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}

.promo-banner:hover .promo-banner-overlay {
  opacity: 0.82 !important;
  /* deepen on hover */
}

/* Text block — centred panel with white border */
.promo-banner-body {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  padding: 32px 28px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  min-width: 200px;
  max-width: 260px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s;
}

.promo-banner:hover .promo-banner-body {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.9);
}

.promo-banner-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.promo-banner-label::before,
.promo-banner-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.promo-banner-discount {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease;
}

.promo-banner:hover .promo-banner-discount {
  transform: scale(1.06);
}

.promo-banner-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.promo-banner-btn {
  display: inline-block;
  padding: 9px 28px;
  border: 2px solid white;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(10px);
}

.promo-banner:hover .promo-banner-btn {
  opacity: 1;
  transform: translateY(0);
  background: white;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .promo-banners-row {
    grid-template-columns: repeat(2, 1fr);
    /* 2×2 grid on mobile */
    min-height: unset;
  }

  .promo-banner {
    min-height: 240px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .promo-banner {
    min-height: 280px;
  }

  .promo-banner-discount {
    font-size: 2rem;
  }
}


/* ============================================================
   SECTION 6 — DEALS OF THE DAY
   ============================================================ */
.deals-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #FFF8F0 0%, #F0F4FF 100%);
}

.deals-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.deals-label {
  background: linear-gradient(135deg, var(--accent-orange), #F97316);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  text-align: center;
}

.deals-label-top {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-display);
  line-height: 1;
}

.deals-label-mid {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

.deals-label-bot {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  font-family: var(--font-display);
  line-height: 1;
}

.deals-timer-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deals-timer-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.deals-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-num {
  background: var(--text-dark);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--shadow-sm);
}

.timer-label-sm {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}

.timer-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 12px;
}

/* Deal Product Card */
.deal-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.deal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.deal-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent-orange), #DC2626);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
  letter-spacing: 0.04em;
}

.deal-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  z-index: 1;
}

.deal-card-wishlist:hover {
  color: #F43F5E;
  transform: scale(1.1);
}

.deal-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.deal-card:hover .deal-card-img {
  transform: scale(1.04);
}

.deal-card-body {
  padding: 14px;
}

.deal-card-set {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 8px;
}

.deal-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-card-material {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.deal-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.deal-price-now {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.deal-price-old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.deal-discount-pill {
  background: #DCFCE7;
  color: #16A34A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.deal-limited {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #DC2626;
  font-weight: 500;
  margin-bottom: 12px;
}

.deal-add-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: white;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.03em;
}

.deal-add-btn:hover {
  background: var(--primary);
  color: white;
  transform: none;
}

/* ============================================================
   SECTION 7 — SHOP BY VIDEO
   ============================================================ */
.shop-by-video-section {
  padding: 80px 0;
  background: var(--white);
}

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  width: 260px;
  flex: 0 0 260px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .video-card { 
    width: calc(33.333% - 10.66px); 
    flex: 0 0 calc(33.333% - 10.66px); 
  }
  .shop-by-video-header .text-left { text-align: left; }
}
@media (min-width: 992px) {
  .video-card { 
    width: calc(25% - 12px); 
    flex: 0 0 calc(25% - 12px); 
  }
}

.video-card img,
.video-card .video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover img,
.video-card:hover .video-player {
  transform: scale(1.05);
}

/* ============================================================
   SECTION 8 — FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding-top: 64px;
}

.footer-top {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.95;
}

.footer-brand p {
  font-size: 1.03rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-newsletter-label {
  font-size: 1.01rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 280px;
}

.footer-newsletter-form input {
  flex: 1;
  background: white;
  border: none;
  padding: 10px 14px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.01rem;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter-form button {
  background: var(--primary);
  border: none;
  padding: 10px 16px;
  color: white;
  cursor: pointer;
  font-size: 1.28rem;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background: var(--primary-dark);
}

.footer-contact {
  margin-top: 24px;
}

.footer-contact-title {
  font-size: 1.01rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--accent-teal);
}

.footer-contact-item i {
  color: var(--accent-teal);
  font-size: 1.03rem;
}

/* Footer Columns */
.footer-col-title {
  font-size: 1.01rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
  border-radius: 1px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 1.01rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--accent-teal);
  padding-left: 4px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.08rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.footer-payment {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* ← wraps icons on mobile */
  gap: 6px;
  max-width: 100%;
  /* ← never wider than viewport */
}

.footer-payment-label {
  font-size: 0.96rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.payment-icon {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  white-space: nowrap;
  /* ← keeps each label on one line */
}

.payment-icon.visa {
  color: #1A1F71;
  background: white;
}

.payment-icon.mc {
  color: #EB001B;
  background: white;
}

.payment-icon.rupay {
  color: #1d4a8f;
  background: white;
}

.payment-icon.paytm {
  color: #00BAF2;
  background: white;
}

/* ============================================================
   UTILITY & GLOBAL BUTTONS
   ============================================================ */
.btn-primary-zitaara {
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(74, 37, 69, 0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-zitaara:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 37, 69, 0.45);
  color: white;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}

.view-all-link:hover {
  background: var(--primary);
  color: white;
}

.deals-scroll-wrap {
  position: relative;
  overflow: hidden;
}

.deals-carousel-inner {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .summer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .summer-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .summer-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .summer-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .summer-card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .summer-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 420px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .deals-label {
    min-width: 140px;
    padding: 16px 20px;
  }

  .deals-label-top {
    font-size: 1.6rem;
  }

  .deals-label-bot {
    font-size: 1.4rem;
  }

  .timer-num {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .summer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .summer-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .summer-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .summer-card:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  .summer-card:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }

  .summer-card:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
  }
}

@media (max-width: 480px) {
  .offer-bar p {
    font-size: 0.72rem;
  }

  .brand-logo-img {
    height: 38px;
    /* Scale down slightly on mobile */
  }

  .hero-content {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }
}

/* ==== Animations ==== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ==== Placeholder image colors ==== */
.placeholder-img-1 {
  background: linear-gradient(135deg, #DBEAFE 0%, #EDE9FE 100%);
}

.placeholder-img-2 {
  background: linear-gradient(135deg, #FCE7F3 0%, #FDF2F8 100%);
}

.placeholder-img-3 {
  background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
}

.placeholder-img-4 {
  background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%);
}

.placeholder-img-5 {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
}

/* ============================================================
   NEW ARRIVALS / STANDARD PRODUCT CARD
   ============================================================ */
.std-product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s;
}

.std-product-card:hover {
  transform: translateY(-4px);
}

.std-product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f8f9fa;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.std-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.std-product-badge-bl {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.std-product-badge-br {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #FBBF24;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.std-product-body {
  padding: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.std-product-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 0;
  padding-right: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.std-product-wishlist {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.std-product-wishlist:hover {
  color: #F43F5E;
}

.std-product-material {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 10px;
}

.std-product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.std-product-price .price-now {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.std-product-price .price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.std-product-price .price-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.std-product-variants {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.std-product-variants .variant-img {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.std-product-variants .variant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.std-product-variants .variant-more {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.1;
  background: #f8f9fa;
  cursor: pointer;
}

.std-product-add-btn {
  width: 100%;
  background: #fff;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
}

.std-product-add-btn:hover {
  background: var(--text-dark);
  color: #fff;
}
