/* ============================================================
   SHIV SHAKTI ENTERPRISES — MAIN STYLESHEET
   Design: Luxury Premium Brand | Warm Reds + Gold + Ivory
   Font: Cormorant Garamond + DM Sans
   ============================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  --primary:        #B5151B;
  --primary-dark:   #8B0F14;
  --primary-light:  #D94F55;
  --gold:           #C9A84C;
  --gold-light:     #E8CC7A;
  --navy:           #1A1A2E;
  --bg-light:       #FAF7F4;
  --bg-white:       #FFFFFF;
  --surface:        #F5F0EB;
  --text-dark:      #1C1C1C;
  --text-body:      #3D3D3D;
  --text-muted:     #7A7A7A;
  --text-light:     #B0B0B0;
  --border:         #E8E0D8;
  --border-dark:    #D4C9BC;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold:    0 4px 20px rgba(201,168,76,0.3);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', 'Segoe UI', sans-serif;
  --header-h:       72px;
  --topbar-h:       40px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

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

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

/* ── 3. UTILITY CLASSES ───────────────────────────────────── */
.text-primary-brand { color: var(--primary) !important; }
.text-gold          { color: var(--gold) !important; }
.text-display       { font-family: var(--font-display); }
.bg-brand           { background: var(--primary) !important; }
.bg-surface         { background: var(--surface) !important; }
.bg-gold            { background: var(--gold) !important; }

.section-pad   { padding: 72px 0; }
.section-pad-sm{ padding: 40px 0; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.divider-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 99px;
  margin-bottom: 12px;
}

/* Buttons */
.btn-brand {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(181,21,27,0.3);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  background: #b8962f;
  border-color: #b8962f;
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-enquiry {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(181,21,27,0.25);
}
.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,21,27,0.35);
  color: #fff;
}

/* ── 4. TOP BAR ───────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1002;
}

.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--gold); }
.topbar-marquee { flex: 1; overflow: hidden; white-space: nowrap; }
.topbar-links { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.topbar-links .divider-v { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ── 5. HEADER / NAV ──────────────────────────────────────── */
.site-header {
  background: var(--bg-white);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0; /* spacing handled per-zone by header-updates.css */
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-emblem {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
  overflow: hidden;
}

.logo-emblem::after {
  content: '';
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.logo-text { line-height: 1.2; }
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}
.logo-text .brand-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 440px;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrap input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--border-dark);
  border-radius: 99px;
  padding: 0 50px 0 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: all var(--transition);
  outline: none;
}

.search-wrap input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181,21,27,0.1);
}

.search-wrap input::placeholder { color: var(--text-muted); }

.search-btn {
  position: absolute;
  right: 4px;
  width: 34px;
  height: 34px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hdr-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  font-size: 1.2rem;
}
.hdr-btn:hover { background: var(--surface); color: var(--primary); }
.hdr-btn .badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-dark);
  background: #fff;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-login:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(181,21,27,0.04);
}

/* ── 6. MEGA MENU / NAVBAR ────────────────────────────────── */
.main-nav {
  background: var(--primary);
  position: relative;
  z-index: 1000;
}

.main-nav .container {
  display: flex;
  align-items: center;
}

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

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 18px;
  color: rgba(255,255,255,0.92);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--gold); }

.nav-link i { font-size: 0.7rem; transition: transform var(--transition); }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 680px;
  background: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  padding: 24px;
  gap: 24px;
  z-index: 999;
  border-top: 3px solid var(--primary);
}

.nav-item:hover .mega-dropdown { display: grid; grid-template-columns: repeat(3, 1fr); }

.mega-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-col-title i { color: var(--primary); font-size: 0.85rem; }

.mega-links li a {
  display: block;
  padding: 5px 0;
  font-size: 0.84rem;
  color: var(--text-body);
  transition: all var(--transition);
}
.mega-links li a:hover { color: var(--primary); padding-left: 6px; }

/* Simple dropdown */
.simple-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  padding: 8px 0;
  z-index: 999;
  border-top: 2px solid var(--primary);
}
.nav-item:hover .simple-dropdown { display: block; }
.simple-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: all var(--transition);
}
.simple-dropdown a:hover { background: var(--surface); color: var(--primary); }

/* Mobile Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.drawer-panel {
  position: absolute;
  top: 0; left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.open { display: block; }
.mobile-nav-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-header {
  background: var(--primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.drawer-header .brand-name { font-family: var(--font-display); font-size: 1.1rem; }

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.drawer-nav { flex: 1; padding: 16px 0; }

.drawer-nav-item { border-bottom: 1px solid var(--border); }

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-sub {
  display: none;
  background: var(--surface);
  padding: 4px 0;
}
.drawer-sub.open { display: block; }
.drawer-sub a {
  display: block;
  padding: 9px 32px;
  font-size: 0.84rem;
  color: var(--text-body);
}

/* ── 7. HERO SLIDER ───────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}

.hero-slide-inner {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 60px; /* extra left padding for content breathing room */
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,28,28,0.75) 0%, rgba(28,28,28,0.2) 60%, transparent 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.slide-title span { color: var(--gold-light); }

.slide-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--gold);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ── 8. FEATURES BAR ──────────────────────────────────────── */
.features-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--surface); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(181,21,27,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.feature-text span {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ── 9. CATEGORY GRID ─────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: block;
}

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

.category-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img { transform: scale(1.06); }

.category-card-body {
  padding: 14px 16px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.category-card-body h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.category-card-body span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.category-card .cat-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
}

/* ── 10. PRODUCT CARDS ────────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.product-action-btn.wishlisted { background: var(--primary); color: #fff; border-color: var(--primary); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.badge-new    { background: var(--gold); color: #fff; }
.badge-hot    { background: var(--primary); color: #fff; }
.badge-sale   { background: #2E8B57; color: #fff; }

.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.35;
  flex: 1;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.product-stars .stars { color: var(--gold); font-size: 0.78rem; }
.product-stars .count { font-size: 0.75rem; color: var(--text-muted); }

.product-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.btn-enquire-sm {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-enquire-sm:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ── 11. PRODUCT LIST VIEW ────────────────────────────────── */
.product-list-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  padding: 16px;
  transition: all var(--transition);
  margin-bottom: 16px;
}
.product-list-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}
.product-list-card .list-img {
  width: 140px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}
.product-list-card .list-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-list-card .list-body { flex: 1; }
.product-list-card .list-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  justify-content: center;
  min-width: 120px;
}

/* ── 12. SIDEBAR FILTERS ──────────────────────────────────── */
.sidebar-filter {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.filter-header {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
}

.filter-group { border-bottom: 1px solid var(--border); }

.filter-group-title {
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}
.filter-group-title:hover { color: var(--primary); }
.filter-group-title i { transition: transform var(--transition); font-size: 0.8rem; }
.filter-group-title.collapsed i { transform: rotate(-90deg); }

.filter-group-body { padding: 8px 18px 14px; }

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  cursor: pointer;
}

.filter-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
}

.filter-check label {
  font-size: 0.84rem;
  color: var(--text-body);
  cursor: pointer;
  flex: 1;
}

.filter-check .count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.price-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.price-input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-dark);
  outline: none;
}
.price-input:focus { border-color: var(--primary); }

/* ── 13. BREADCRUMB ───────────────────────────────────────── */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); font-weight: 500; }
.breadcrumb-item:not(:last-child)::after { content: '/'; color: var(--border-dark); }

/* ── 14. PRODUCT GALLERY ──────────────────────────────────── */
.gallery-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--surface);
  aspect-ratio: 1;
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-main:hover img { transform: scale(1.04); }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--primary); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── 15. PRODUCT PAGE DETAIL ─────────────────────────────── */
.product-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFF9F0;
  color: #2D7A42;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #C4E8CB;
}

.product-title-lg {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.specs-table tr:nth-child(even) td { background: var(--surface); }
.specs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 35%;
}

/* Offers box */
.offers-box {
  background: linear-gradient(135deg, #FFF8ED 0%, #FFF3E0 100%);
  border: 1px solid #FFD599;
  border-radius: var(--radius-md);
  padding: 16px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

.offer-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.offer-item span { font-size: 0.86rem; color: var(--text-body); }
.offer-item strong { color: var(--text-dark); }

/* ── 16. TABS ─────────────────────────────────────────────── */
.brand-tabs {
  border-bottom: 2px solid var(--border);
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.brand-tab {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.brand-tab.active {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}

.brand-tab:hover { color: var(--primary); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── 17. TESTIMONIALS ─────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── 18. BRAND LOGOS ──────────────────────────────────────── */
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  filter: grayscale(60%);
  opacity: 0.7;
  transition: all var(--transition);
  cursor: pointer;
}

.brand-logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: scale(1.04);
}

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ── 19. NEWSLETTER SECTION ───────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 8px;
}

.newsletter-sub { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.newsletter-form button {
  padding: 14px 24px;
  background: var(--gold);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #b8962f; }

/* ── 20. VIDEO CARD ───────────────────────────────────────── */
.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}

.video-card:hover .video-play-btn { background: rgba(0,0,0,0.5); }

.play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-card:hover .play-circle {
  transform: scale(1.1);
  background: #fff;
}

.video-info {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.video-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.video-tag.latest { background: var(--primary); color: #fff; }
.video-tag.old    { background: var(--surface); color: var(--text-muted); }

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

.video-date { font-size: 0.75rem; color: var(--text-muted); }

/* ── 21. MODALS ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
}

.modal-header .modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.modal-header .modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-body { padding: 28px; }

.modal-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
}

.modal-tab-btn {
  padding: 9px;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-sm) - 2px);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}

.modal-tab-btn.active {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.form-control-brand {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: all var(--transition);
}

.form-control-brand:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(181,21,27,0.1);
}

.form-control-brand::placeholder { color: var(--text-light); }

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 16px 0;
}

.otp-input {
  width: 50px;
  height: 54px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
  color: var(--text-dark);
}

.otp-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(181,21,27,0.12); }
.otp-input.filled { border-color: var(--gold); background: rgba(201,168,76,0.06); }

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.modal-divider::before, .modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-step { display: none; }
.auth-step.active { display: block; }

/* ── 22. DASHBOARD ────────────────────────────────────────── */
.dashboard-sidebar {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.dash-user-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 24px;
  text-align: center;
  color: #fff;
}

.dash-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 10px;
  border: 3px solid rgba(255,255,255,0.4);
}

.dash-user-name { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 2px; }
.dash-user-phone { font-size: 0.8rem; opacity: 0.8; }

.dash-nav { padding: 8px 0; }

.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.dash-nav-link i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  transition: color var(--transition);
}

.dash-nav-link:hover,
.dash-nav-link.active {
  background: rgba(181,21,27,0.06);
  color: var(--primary);
  border-color: var(--primary);
}

.dash-nav-link:hover i,
.dash-nav-link.active i { color: var(--primary); }

.dash-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px;
}

.dash-stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}
.dash-stat-card:hover { box-shadow: var(--shadow-sm); }

.dash-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dash-stat-num { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.dash-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ── 23. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding-top: 56px;
}

.footer-brand { margin-bottom: 20px; }

.footer-brand .brand-name-lg {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 10px;
  color: rgba(255,255,255,0.6);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ── 24. MISC COMPONENTS ──────────────────────────────────── */

/* Offer strip */
.offer-strip {
  background: linear-gradient(90deg, var(--primary) 0%, #8B0F14 50%, var(--primary) 100%);
  padding: 10px 0;
  text-align: center;
  overflow: hidden;
}

.offer-strip p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
}

.offer-strip span { color: var(--gold-light); font-weight: 700; }

/* View Toggle */
.view-toggle {
  display: flex;
  gap: 4px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.view-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.95rem;
}

.view-toggle-btn.active {
  background: var(--primary);
  color: #fff;
}

/* Sort select */
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  background: #fff;
  cursor: pointer;
  outline: none;
}

/* Page Header Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--navy) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.page-banner h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.page-banner p { color: rgba(255,255,255,0.75); margin: 0; font-size: 0.95rem; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--border) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(181,21,27,0.35);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Alert / Toast */
.toast-wrap {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast-msg {
  background: var(--text-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.87rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease;
  min-width: 260px;
}

.toast-msg.success { background: #2E8B57; }
.toast-msg.error   { background: var(--primary); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── 25. ABOUT PAGE ───────────────────────────────────────── */
.about-stat {
  text-align: center;
  padding: 28px 16px;
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat .label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
}

.team-info { padding: 16px; }
.team-info h5 { font-family: var(--font-display); margin-bottom: 3px; }
.team-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ── 26. ORDER STATUS ─────────────────────────────────────── */
.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.order-header {
  background: var(--surface);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}
.status-pending    { background: #FFF3CD; color: #856404; }
.status-confirmed  { background: #D1ECF1; color: #0C5460; }
.status-completed  { background: #D4EDDA; color: #155724; }
.status-cancelled  { background: #F8D7DA; color: #721C24; }

.order-body { padding: 16px 20px; }

/* ── 27. WISHLIST ─────────────────────────────────────────── */
.wishlist-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.wishlist-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.wishlist-item img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); background: var(--surface); flex-shrink: 0; }

/* ── 28. SUPPORT PAGE ─────────────────────────────────────── */
.support-category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.support-category-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.support-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: rgba(181,21,27,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}
.support-category-card h5 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-family: var(--font-display);
}
.support-category-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--surface); }
.faq-question i { transition: transform var(--transition); flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  display: none;
  padding: 14px 18px;
  font-size: 0.87rem;
  color: var(--text-body);
  border-top: 1px solid var(--border);
  background: var(--surface);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── 29. INSTITUTIONAL PAGE ───────────────────────────────── */
.inst-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.inst-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 32px;
  text-align: center;
  color: #fff;
}

.inst-form-header h2 { font-family: var(--font-display); font-size: 2rem; color: #fff; margin-bottom: 6px; }
.inst-form-header p { color: rgba(255,255,255,0.75); margin: 0; }

.inst-form-body { padding: 36px; }

/* ── 30. ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
