/* ============================================================
   KRISHNA JI COLLECTION — DESIGN SYSTEM
   Modern White Theme | Premium Devotional E-Commerce
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap");

/* ===== TOKENS ===== */
:root {
  /* Palette */
  --gold: #b8955a;
  --gold-light: #d4ae78;
  --gold-pale: #faf5ec;
  --gold-border: rgba(184, 149, 90, 0.18);
  --gold-border-md: rgba(184, 149, 90, 0.35);

  --ink: #0f0f0f;
  --ink-mid: #3a3530;
  --ink-soft: #6b6159;
  --ink-muted: #9e9590;

  --white: #ffffff;
  --off-white: #fafaf8;
  --surface: #f5f4f0;
  --surface-2: #efede8;
  --border: rgba(0, 0, 0, 0.07);
  --border-md: rgba(0, 0, 0, 0.12);

  --accent: #1a1a2e; /* Deep navy — used sparingly */
  --success: #2d6a4f;
  --error: #c0392b;
  --warning: #b8860b;

  /* Type Scale */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-ui: "DM Sans", system-ui, sans-serif;

  /* Spacing */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 32px rgba(184, 149, 90, 0.2);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.text-center {
  text-align: center;
}
.hidden {
  display: none !important;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  font-family: var(--font-ui);
  position: relative;
  z-index: 1010;
}
.announcement-bar strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
}
.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
  display: block;
  line-height: 1;
}
.nav-logo-text .tagline {
  font-size: 9.5px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--r-sm);
  border: none;
  background: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
}
.nav-link:hover {
  color: var(--ink);
  background: var(--surface);
}
.nav-link.active {
  color: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  color: var(--ink-mid);
}
.nav-icon-btn:hover {
  background: var(--surface);
  border-color: var(--border-md);
  color: var(--ink);
}
.nav-icon-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.nav-icon-btn:hover img {
  opacity: 1;
}
.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 17px;
  height: 17px;
  background: var(--gold);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ============================================================
      SHARED NAVBAR STYLES — paste this into main.css
      (main.css is the file linked on EVERY page, so the navbar
      looks identical everywhere, not just on the home page)
      ============================================================ */

.ann {
  background: #1a0a00;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1100;
}
.ann strong {
  color: #f0c070;
  font-weight: 600;
}
.ann a {
  color: #f0c070;
  text-decoration: underline;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #ede8e0;
  transition: box-shadow 0.25s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  line-height: 1.1;
}
.nav-logo-text .sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b8955a;
  font-family: "DM Sans", sans-serif;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: #4a4035;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover,
.nav-link.active {
  background: #f7f0e6;
  color: #1a1a1a;
}
.nav-link.active {
  color: #b8955a;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e0d8cc;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #4a4035;
  position: relative;
  text-decoration: none;
}
.nav-btn-icon:hover {
  background: #f7f0e6;
  color: #1a1a1a;
}
.nav-btn-icon svg {
  width: 17px;
  height: 17px;
}
.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 17px;
  height: 17px;
  background: #b8955a;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-badge.show {
  display: flex;
}

/* Search bar */
.search-bar {
  display: none;
  padding: 10px 32px;
  background: #fdf8f0;
  border-top: 1px solid #ede0cc;
}
.search-bar input {
  width: 100%;
  max-width: 560px;
  padding: 9px 16px;
  border: 1.5px solid #d8c8a8;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1a1a1a;
}
.search-bar input:focus {
  outline: none;
  border-color: #b8955a;
}

/* Bottom category row */
.nav-cats {
  border-top: 1px solid #f0ece4;
  background: #fff;
}
.nav-cats-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-cats-inner::-webkit-scrollbar {
  display: none;
}
.nav-cat-link {
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #5a5048;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}
.nav-cat-link:hover {
  color: #b8955a;
  border-bottom-color: #b8955a;
}
.nav-cat-link.sale {
  color: #c0392b;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .nav-top,
  .nav-cats-inner {
    padding: 0 20px;
  }
}
@media (max-width: 800px) {
  .nav-links,
  .nav-cats {
    display: none;
  }
}
.btn-primary {
  background: var(--ink);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: none;
  border: 1.5px solid var(--border-md);
  color: var(--ink-mid);
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface);
}
.btn-outline-gold {
  background: none;
  border: 1.5px solid var(--gold-border-md);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold-pale);
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 520px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--white);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.86) 32%,
    rgba(255, 255, 255, 0.5) 62%,
    rgba(255, 255, 255, 0.08) 100%
  );
}
.hero-slide-1 {
  background: linear-gradient(135deg, #faf5ec 0%, #f0e8d5 50%, #e8d5b0 100%);
}
.hero-slide-2 {
  background: linear-gradient(135deg, #eef2f8 0%, #dce6f3 50%, #c8d9ed 100%);
}
.hero-slide-3 {
  background: linear-gradient(135deg, #f5f0f8 0%, #eae0f5 50%, #d8c8f0 100%);
}

/* Hero Slide image overlay elements */
.hero-slide-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-img {
  width: 420px;
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.12));
  animation: float-hero 7s ease-in-out infinite;
}
@keyframes float-hero {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: calc(100vh - 70px);
}
.hero-left {
  max-width: 560px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1px solid var(--gold-border-md);
  border-radius: 100px;
  background: var(--gold-pale);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}
.btn-hero {
  padding: 14px 32px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-hero-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-hero-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-hero-ghost {
  background: none;
  color: var(--ink-mid);
  border: 1.5px solid var(--border-md);
}
.btn-hero-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 36px;
  align-items: center;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-md);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 4px;
  font-family: var(--font-ui);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* Floating text badge on hero */
.hero-float-badge {
  position: absolute;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: badge-float 4s ease-in-out infinite;
}
@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero-float-badge-1 {
  right: 5%;
  top: 22%;
  animation-delay: 0s;
}
.hero-float-badge-2 {
  right: 18%;
  bottom: 18%;
  animation-delay: 2s;
}
.badge-icon {
  font-size: 20px;
  margin-bottom: 6px;
}
.badge-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.badge-lbl {
  font-size: 10.5px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  margin-top: 2px;
}

/* ===== MARQUEE BAR ===== */
.marquee-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: nowrap;
  font-family: var(--font-ui);
  font-weight: 500;
}
.marquee-item img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
.marquee-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.trust-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon img {
  width: 20px;
  height: 20px;
}
.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ===== CATEGORIES ===== */
.categories-section {
  background: var(--off-white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border-md);
}
.cat-card:hover::before {
  transform: scaleX(1);
}
.cat-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.cat-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.cat-count {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}

/* ===== PRODUCT CARDS ===== */
.products-section {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-md);
  transform: translateY(-3px);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface);
  overflow: hidden;
}
.product-img-wrap img,
.product-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-placeholder {
  transform: scale(1.04);
}
.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.overlay-btn {
  flex: 1;
  padding: 9px 12px;
  background: white;
  color: var(--ink);
  border: none;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.overlay-btn:hover {
  background: var(--gold);
  color: white;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.badge-bestseller {
  background: var(--ink);
  color: white;
}
.badge-new {
  background: var(--gold);
  color: white;
}
.badge-limited {
  background: var(--accent);
  color: white;
}
.badge-sale {
  background: var(--success);
  color: white;
}
.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.wish-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}
.wish-btn:hover img {
  opacity: 1;
}
.wish-btn.active {
  border-color: #e25555;
  background: #fff5f5;
}
.wish-btn.active img {
  opacity: 1;
  filter: hue-rotate(0deg) saturate(3) brightness(0.7);
}

.product-info {
  padding: 16px 18px 20px;
}
.product-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 7px;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars {
  color: #e8b84b;
  font-size: 12px;
  letter-spacing: 1px;
}
.rating-count {
  font-size: 11.5px;
  color: var(--ink-muted);
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.price-now {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.price-was {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.price-off {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: #edf7f1;
  padding: 2px 7px;
  border-radius: 4px;
}
.add-cart-btn {
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--border-md);
  background: none;
  color: var(--ink-mid);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.add-cart-btn:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.t-quote {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}
.t-text {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
}
.t-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.t-location {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.t-stars {
  color: #e8b84b;
  font-size: 11px;
  margin-bottom: 2px;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--ink);
  padding: 96px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip .section-eyebrow {
  color: var(--gold-light);
}
.about-strip .section-title {
  color: white;
}
.about-strip-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  line-height: 1.85;
  margin-top: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  border-left: 2px solid var(--gold-border-md);
  padding-left: 16px;
}
.value-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.value-item-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}
.about-visual-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
}
.about-stat-box:first-child {
  grid-column: span 2;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.about-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  font-family: var(--font-ui);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-img {
  height: 200px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-body {
  padding: 22px;
  background: var(--white);
}
.blog-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-ui);
  margin-bottom: 9px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  display: flex;
  gap: 10px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.social-btn:hover img {
  filter: invert(1);
}
.social-btn img {
  width: 16px;
  height: 16px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  font-family: var(--font-ui);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 11px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
}
.newsletter-wrap {
  margin-top: 20px;
}
.newsletter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-ui);
  margin-bottom: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  font-size: 13px;
  background: var(--white);
  color: var(--ink);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: white;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast-check {
  color: var(--gold-light);
  font-size: 15px;
}

/* ===== PRODUCT LISTING PAGE ===== */
.plp-header-banner {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.plp-page-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 12px;
  font-family: var(--font-ui);
}
.plp-breadcrumb span {
  cursor: pointer;
}
.plp-breadcrumb span:hover {
  color: var(--gold);
}
.plp-breadcrumb .sep {
  opacity: 0.4;
}
.plp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0 80px;
  align-items: start;
}
.plp-sidebar {
  position: sticky;
  top: 90px;
}
.filter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 14px;
}
.filter-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  font-family: var(--font-ui);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  cursor: pointer;
}
.filter-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
}
.filter-option label {
  font-size: 13px;
  color: var(--ink-mid);
  cursor: pointer;
  flex: 1;
}
.filter-count {
  font-size: 11px;
  color: var(--ink-muted);
}
.price-range {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 6px 0;
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.plp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.plp-count {
  font-size: 13px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.plp-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}
.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-mid);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
}
.plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 48px 0 80px;
  align-items: start;
}
.pdp-breadcrumb {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-bottom: 0;
  font-family: var(--font-ui);
}
.pdp-breadcrumb span {
  cursor: pointer;
  transition: var(--transition);
}
.pdp-breadcrumb span:hover {
  color: var(--gold);
}
.gallery-main {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 130px;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb.active {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.pdp-cat {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-ui);
  margin-bottom: 10px;
}
.pdp-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
}
.pdp-price-orig {
  font-size: 18px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.pdp-saving {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--success);
  background: #edf7f1;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.pdp-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}
.option-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.size-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--ink-mid);
  font-family: var(--font-body);
}
.size-btn.active,
.size-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold-pale);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-btn {
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ink-mid);
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--surface);
  color: var(--ink);
}
.qty-num {
  font-size: 15px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
  color: var(--ink);
}
.pdp-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.btn-add-cart {
  flex: 1;
  padding: 14px;
  border: 2px solid var(--ink);
  background: none;
  color: var(--ink);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-add-cart:hover {
  background: var(--ink);
  color: white;
}
.btn-buy-now {
  flex: 1;
  padding: 14px;
  background: var(--gold);
  border: none;
  color: white;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  font-family: var(--font-body);
}
.btn-buy-now:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-wish-pdp {
  width: 50px;
  height: 50px;
  border: 2px solid var(--border-md);
  border-radius: var(--r-sm);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-wish-pdp img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.btn-wish-pdp:hover {
  border-color: #e25555;
}
.btn-wish-pdp:hover img {
  opacity: 1;
}
.pdp-trust {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.pdp-trust-item {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--off-white);
  text-align: center;
  font-size: 11px;
  color: var(--ink-muted);
}
.pdp-trust-item img {
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
}
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.tab-btn {
  padding: 10px 18px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.tab-btn.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.tab-content {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  display: none;
}
.tab-content.active {
  display: block;
}

/* ===== CART ITEM CARD (matches classes rendered by renderCart() in main.js) ===== */
.cart-item-card {
  background: var(--white);
  border: 1px solid var(--bdr-md);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.ci-img {
  width: 76px;
  height: 76px;
  border-radius: var(--r-md);
  background: var(--surf);
  border: 1px solid var(--bdr-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
  overflow: hidden;
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci-info {
  flex: 1;
  min-width: 0;
}
.ci-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.ci-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.ci-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.ci-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.ci-remove {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 12.5px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--tr);
}
.ci-remove:hover {
  color: var(--error);
}

/* ===== CART ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 48px 0 80px;
  align-items: start;
}
.page-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
}
.cart-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.cart-item-img {
  width: 88px;
  height: 88px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.cart-item-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-family: var(--font-ui);
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.cart-remove {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 12.5px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-body);
}
.cart-remove:hover {
  color: var(--error);
}
.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.summary-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13.5px;
}
.summary-row .lbl {
  color: var(--ink-muted);
}
.summary-row .val {
  font-weight: 600;
  color: var(--ink);
}
.summary-row.total-row {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
}
.summary-row.total-row .lbl {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.summary-row.total-row .val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.coupon-input {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-input input {
  flex: 1;
  padding: 10px 13px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-family: var(--font-body);
}
.coupon-input input:focus {
  outline: none;
  border-color: var(--gold);
}
.coupon-input button {
  padding: 10px 16px;
  background: var(--gold);
  border: none;
  color: white;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}
.checkout-btn-full {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.checkout-btn-full:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.secure-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 10px;
  font-family: var(--font-ui);
}
.savings-tag {
  background: #edf7f1;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-align: center;
  margin: 6px 0;
}

/* ===== CHECKOUT ===== */
.checkout-steps {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.step.active {
  color: var(--ink);
}
.step.done {
  color: var(--success);
}
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.step.active .step-num {
  border-color: var(--gold);
  color: var(--gold);
}
.step.done .step-num {
  border-color: var(--success);
  background: var(--success);
  color: white;
}
.step-connector {
  flex: 1;
  height: 1px;
  background: var(--border-md);
  margin: 0 12px;
}
.checkout-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
}
.form-group.full {
  grid-column: 1/-1;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  font-family: var(--font-ui);
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-body);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 90, 0.1);
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.payment-option:hover {
  border-color: var(--border-md);
}
.pay-icon img {
  width: 32px;
  height: 32px;
}
.pay-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pay-desc {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.pay-radio {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  margin-left: auto;
  flex-shrink: 0;
}

/* ===== AUTH ===== */
.auth-page {
  min-height: calc(100vh - 70px);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  text-align: center;
  margin-bottom: 28px;
}
.auth-logo-mark {
  width: 48px;
  margin: 0 auto 10px;
}
.auth-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.auth-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 6px;
}
.auth-sub {
  font-size: 14px;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 28px;
}
.auth-form .form-group {
  margin-bottom: 14px;
}
.auth-submit {
  width: 100%;
  padding: 13px;
  background: var(--ink);
  border: none;
  color: white;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.auth-submit:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--ink-muted);
  font-size: 12px;
  font-family: var(--font-ui);
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-md);
}
.auth-alt {
  text-align: center;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.auth-alt a {
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
}
.auth-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}
.auth-extra a {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}

/* ===== DASHBOARD ===== */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 48px 0 80px;
  align-items: start;
}
.dash-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.dash-user {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: var(--off-white);
}
.dash-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--gold-border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--gold);
  margin: 0 auto 12px;
}
.dash-user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.dash-user-email {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  margin-top: 2px;
}
.dash-nav {
  padding: 10px;
}
.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.dash-nav-link:hover {
  background: var(--surface);
  color: var(--ink);
}
.dash-nav-link.active {
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 700;
}
.dash-nav-link img {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}
.dash-nav-link.active img {
  opacity: 1;
}
.dash-nav-link.danger {
  color: var(--error);
}
.dash-nav-link.danger img {
  filter: hue-rotate(220deg) saturate(2);
}
.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.dash-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
}
.dash-stat-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}
.dash-stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
  font-family: var(--font-ui);
}
.data-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.data-table-head {
  display: grid;
  padding: 12px 20px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.data-table-row {
  display: grid;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 13px;
  transition: var(--transition);
}
.data-table-row:last-child {
  border-bottom: none;
}
.data-table-row:hover {
  background: var(--off-white);
}
.order-id-cell {
  font-weight: 700;
  color: var(--ink);
}
.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font-ui);
}
.status-delivered {
  background: #edf7f1;
  color: var(--success);
}
.status-shipped {
  background: #e8eef8;
  color: var(--accent);
}
.status-processing {
  background: #fdf8e1;
  color: var(--warning);
}
.status-pending {
  background: #fde8e8;
  color: var(--error);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .container {
    padding: 0 24px;
  }
  .nav-inner {
    padding: 0 24px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero-float-badge {
    display: none;
  }
  .hero-title {
    font-size: 38px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-strip-inner {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plp-layout {
    grid-template-columns: 1fr;
  }
  .plp-sidebar {
    display: none;
  }
  .plp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pdp-layout {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .about-visual-side {
    display: none;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .hero {
    min-height: calc(100vh - 60px);
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-stats {
    gap: 20px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MISSING VARIABLE ALIASES (used in HTML inline styles & pages) ===== */
:root {
  --tr: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); /* alias for --transition */
  --surf: #f5f4f0; /* alias for --surface */
  --bdr: rgba(0, 0, 0, 0.07); /* alias for --border */
  --bdr-md: rgba(0, 0, 0, 0.12); /* alias for --border-md */
  --r: 12px; /* alias for --r-md */
  --gold-bdr: rgba(184, 149, 90, 0.18); /* alias for --gold-border */
  --gold-bg: #faf5ec; /* alias for --gold-pale */
}

/* ===== ANNOUNCEMENT BAR (HTML uses .ann-bar) ===== */
.ann-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  font-family: var(--font-ui);
  position: relative;
  z-index: 1010;
}
.ann-bar strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== NAV INNER WRAPPER (HTML uses .nav-wrap instead of .nav-inner) ===== */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
  display: block;
  line-height: 1;
}
.nav-sub {
  font-size: 9.5px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 3px;
}

/* Cart dot badge */
.cart-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 17px;
  height: 17px;
  background: var(--gold);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-dot.show {
  display: flex;
}

/* ===== HERO SLIDES (HTML uses .hero-slides, .slide) ===== */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.45) 68%,
    rgba(255, 255, 255, 0.08) 100%
  );
}
/* Slide color fallbacks */
.slide-1 {
  background: linear-gradient(135deg, #faf5ec 0%, #f0e8d5 50%, #e8d5b0 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #eef2f8 0%, #dce6f3 50%, #c8d9ed 100%);
}
.slide-3 {
  background: linear-gradient(135deg, #f5f0f8 0%, #eae0f5 50%, #d8c8f0 100%);
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.h-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  padding: 0;
}
.h-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* Hero stats */
.h-stat {
  text-align: left;
}
.h-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.h-stat-lbl {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 4px;
  font-family: var(--font-ui);
}

/* ===== GENERAL CONTAINER ALIASES ===== */
/* HTML uses .wrap instead of .container */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== MARQUEE (HTML uses .mq-track, .mq-item, .mq-dot) ===== */
.mq-track {
  display: flex;
  gap: 64px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-bar:hover .mq-track {
  animation-play-state: paused;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: nowrap;
  font-family: var(--font-ui);
  font-weight: 500;
}
.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ===== SECTION HEADER ALIASES ===== */
/* HTML uses .eyebrow, .sec-title, .sec-row, .sec-sub */
.eyebrow {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 14px;
  display: block;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.sec-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 520px;
}
.sec-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== BUTTON ALIASES ===== */
/* HTML uses .btn.btn-dark and .btn.btn-gold */
.btn {
  border: none;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--font-body);
  display: inline-block;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn.btn-gold {
  background: var(--gold);
  color: white;
}
.btn.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Small outline button */
.btn-outline-sm {
  background: none;
  border: 1.5px solid var(--bdr-md);
  color: var(--ink-mid);
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-outline-sm:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surf);
}

/* ===== COLLECTION BANNERS ===== */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.banner-card {
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 200px;
}
.banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.banner-card-1 {
  background: linear-gradient(135deg, #faf5ec 0%, #f0e3c0 100%);
}
.banner-card-2 {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe0b8 100%);
}
.banner-card-3 {
  background: linear-gradient(135deg, #f0f8ff 0%, #d6eeff 100%);
}
.banner-big-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 52px;
  opacity: 0.85;
}
.banner-text {
  position: relative;
  z-index: 1;
}
.banner-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.banner-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.banner-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-ui);
  letter-spacing: 0.3px;
}

/* ===== CATEGORIES (HTML uses .cats-section, .cats-grid, .cat-icon-box) ===== */
.cats-section {
  background: var(--off-white);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.cat-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
  transition: var(--tr);
}
.cat-card:hover .cat-icon-box {
  background: var(--gold);
}

/* ===== PRODUCT CARDS (HTML uses .pcard, .pcard-img, .pcard-body, etc.) ===== */
.pcard {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
}
.pcard:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--bdr-md);
  transform: translateY(-3px);
}

/* Large featured card */
.pcard-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pcard-large .pcard-img {
  border-radius: 0;
  aspect-ratio: unset;
  min-height: 320px;
}
.pcard-large .pcard-body {
  padding: 28px 24px;
}

.pcard-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.pcard:hover .pcard-img {
  transform: scale(1.03);
}
.pcard-large:hover .pcard-img {
  transform: none;
}

/* Color backgrounds for product image placeholders */
.pcard-img-1 {
  background: linear-gradient(135deg, #faf5ec, #f0e3c0);
}
.pcard-img-2 {
  background: linear-gradient(135deg, #fff9f0, #ffe8c0);
}
.pcard-img-3 {
  background: linear-gradient(135deg, #f0f4fa, #d8e8f8);
}
.pcard-img-4 {
  background: linear-gradient(135deg, #f5fbf0, #d8edd0);
}
.pcard-img-5 {
  background: linear-gradient(135deg, #fff0f5, #ffdde8);
}
.pcard-img-6 {
  background: linear-gradient(135deg, #f5f0fa, #e8d8f8);
}

.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.52);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  opacity: 0;
  transition: var(--tr);
}
.pcard:hover .pcard-overlay {
  opacity: 1;
}
.ov-btn {
  flex: 1;
  padding: 9px 12px;
  background: white;
  color: var(--ink);
  border: none;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--font-body);
}
.ov-btn:hover {
  background: var(--gold);
  color: white;
}

/* Product badges */
.pbadge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.pbadge-bs {
  background: var(--ink);
  color: white;
}
.pbadge-new {
  background: var(--gold);
  color: white;
}
.pbadge-lim {
  background: var(--accent);
  color: white;
}
.pbadge-fes {
  background: var(--success);
  color: white;
}

/* Wishlist button on card */
.pwish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--bdr-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: var(--shadow-xs);
}
.pwish svg {
  width: 15px;
  height: 15px;
  opacity: 0.5;
  transition: var(--tr);
}
.pwish:hover svg {
  opacity: 1;
  stroke: #e25555;
}
.pwish.active {
  border-color: #e25555;
  background: #fff5f5;
}
.pwish.active svg {
  opacity: 1;
  fill: #e25555;
  stroke: #e25555;
}

.pcard-body {
  padding: 16px 18px 20px;
}
.pcat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 6px;
}
.pname {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pstars {
  font-size: 12.5px;
  color: #e8b84b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pstars span {
  font-size: 11px;
  color: var(--ink-muted);
}
.pprice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.p-now {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.p-was {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.p-off {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: #edf7f1;
  padding: 2px 7px;
  border-radius: 4px;
}
.p-add-btn {
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--bdr-md);
  background: none;
  color: var(--ink-mid);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--font-body);
}
.p-add-btn:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ===== TESTIMONIALS (HTML uses .testi-section, .testi-grid, .t-card, etc.) ===== */
.testi-section {
  background: var(--off-white);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--tr);
}
.t-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.t-stars-row {
  color: #e8b84b;
  font-size: 14px;
  margin-bottom: 10px;
}
.t-quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 14px;
  opacity: 0.6;
}
.t-text {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.t-loc {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}

/* ===== ABOUT DARK SECTION ===== */
.about-dark {
  background: var(--ink);
  padding: 96px 0;
}
.about-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-dark .eyebrow {
  color: var(--gold-light);
}
.about-dark .sec-title {
  color: white;
}
.about-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  line-height: 1.85;
  margin-top: 16px;
  margin-bottom: 0;
}
.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.aval {
  border-left: 2px solid var(--gold-border-md);
  padding-left: 14px;
}
.aval-title {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.aval-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}
.about-dark-btn {
  margin-top: 32px;
}
.about-stats-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.astat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
  padding: 24px 18px;
  text-align: center;
}
.astat.wide {
  grid-column: span 2;
}
.astat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.astat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  font-family: var(--font-ui);
}

/* ===== FOOTER ALIASES (HTML uses .f-col, .f-bottom, .f-brand-name, etc.) ===== */
.footer-inner {
  padding: 64px 0 0;
}
.f-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.f-brand-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}
.f-social {
  display: flex;
  gap: 8px;
}
.f-soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bdr-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  color: var(--ink-mid);
}
.f-soc-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.f-soc-btn svg {
  width: 15px;
  height: 15px;
}
.f-soc-btn:hover svg {
  stroke: white;
}
.f-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  font-family: var(--font-ui);
}
.f-col ul {
  list-style: none;
}
.f-col li {
  margin-bottom: 11px;
}
.f-col a {
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--tr);
}
.f-col a:hover {
  color: var(--gold);
}
.newsletter-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.newsletter-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  font-size: 13px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
}
.newsletter-row input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-row button {
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: var(--tr);
}
.newsletter-row button:hover {
  background: var(--gold);
}
.f-bottom {
  border-top: 1px solid var(--bdr);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  margin-top: 40px;
}

/* ===== TOAST (alias .toast-ck) ===== */
.toast-ck {
  color: var(--gold-light);
  font-size: 15px;
}

/* ===== RESPONSIVE: wrap & nav-wrap ===== */
@media (max-width: 1100px) {
  .wrap {
    padding: 0 24px;
  }
  .nav-wrap {
    padding: 0 24px;
  }
  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .banners-grid {
    grid-template-columns: 1fr 1fr;
  }
  .banners-grid .banner-card:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .about-dark-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats-side {
    grid-template-columns: repeat(3, 1fr);
  }
  .astat.wide {
    grid-column: span 3;
  }
  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .banners-grid {
    grid-template-columns: 1fr;
  }
  .banners-grid .banner-card:last-child {
    grid-column: auto;
  }
  .pcard-large {
    grid-column: span 1;
    display: block;
  }
  .pcard-large .pcard-img {
    min-height: 220px;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }
  .nav-wrap {
    padding: 0 16px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-side {
    grid-template-columns: 1fr 1fr;
  }
  .astat.wide {
    grid-column: span 2;
  }
  .sec-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
      MISSING PAGE STYLES (about, blog, cart, checkout, dashboard,
      login, signup, product) — added to restore broken pages
      ============================================================ */

/* ---- AUTH (login/signup) ---- */
.auth-wrap {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background: var(--off-white);
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}
.auth-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  display: block;
}
.auth-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 6px;
}
.auth-sub-txt {
  font-size: 13.5px;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 26px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: -4px;
}
.auth-row a {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}
.auth-sub-btn {
  width: 100%;
  padding: 13px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  margin-top: 4px;
}
.auth-sub-btn:hover {
  background: var(--gold);
}
.auth-divider {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-muted);
  position: relative;
  margin: 4px 0;
}
.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--bdr);
  z-index: 0;
}
.auth-divider {
  background: var(--white);
  padding: 0 10px;
  display: inline-block;
  left: 50%;
}
.otp-btns {
  display: flex;
  gap: 10px;
}
.otp-btn {
  flex: 1;
  padding: 10px;
  border: 1.5px solid var(--bdr-md);
  background: var(--white);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
}
.otp-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.auth-alt {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 20px;
}
.auth-alt a {
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
}

/* ---- FORM GROUP (fg/fi/fl) used in login/signup/checkout ---- */
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fg.full {
  grid-column: 1 / -1;
}
.fl {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fi {
  padding: 11px 14px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: var(--tr);
  font-family: var(--font-body);
}
.fi:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 90, 0.12);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ---- CHECKOUT ---- */
.ckout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 32px 0 80px;
  align-items: start;
}
.steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
}
.step.active {
  color: var(--ink);
}
.step-n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.step.active .step-n {
  background: var(--gold);
  color: #fff;
}
.step-line {
  width: 40px;
  height: 1px;
  background: var(--bdr-md);
  margin: 0 10px;
}
.ck-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 26px;
  margin-bottom: 18px;
}
.ck-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.pay-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--tr);
}
.pay-opt svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--ink-muted);
}
.pay-opt.sel svg {
  color: var(--gold);
}
.pay-opt.sel,
.pay-opt:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.pay-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pay-sub {
  font-size: 11.5px;
  color: var(--ink-muted);
}
.pay-radio {
  margin-left: auto;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.place-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--tr);
}
.place-btn:hover {
  background: var(--gold-light);
}

/* ---- ORDER SUMMARY (cart/checkout) ---- */
.order-sum {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.sum-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 10px;
}
.sl {
  color: var(--ink-muted);
}
.sv {
  font-weight: 600;
  color: var(--ink);
}
.sum-total {
  border-top: 1px solid var(--bdr);
  padding-top: 12px;
  margin-top: 4px;
}
.sum-total .sl {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.sum-total .sv {
  font-family: var(--font-display);
  font-size: 21px;
}

/* ---- CART ---- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 32px 0 80px;
  align-items: start;
}
.page-h1 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0;
}
.coupon-row {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.coupon-row button {
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}
.savings-note {
  font-size: 12px;
  color: var(--success);
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
}

/* ===== GST CLAIM CARD ===== */
.gst-optional {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-left: 8px;
}
.gst-toggle-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.gst-toggle-opt {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
  transition: var(--tr);
}
.gst-toggle-opt.sel {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--ink);
}
#gstFields {
  animation: gstFadeIn 0.25s ease;
}
@keyframes gstFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gst-error {
  margin-top: 10px;
  padding: 10px 14px;
  background: #fde8e8;
  color: var(--error);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 600;
}
.btn-verify-gst {
  margin-top: 14px;
  padding: 11px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}
.btn-verify-gst:hover {
  background: var(--gold);
}
.btn-verify-gst:disabled {
  opacity: 0.6;
  cursor: default;
}
.gst-verified-panel {
  margin-top: 16px;
  padding: 16px;
  background: #edf7f1;
  border: 1px solid #b8e0c8;
  border-radius: var(--r-md);
  animation: gstFadeIn 0.3s ease;
}
.gst-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--success);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 12px;
}
.gst-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.gst-detail-grid .gl {
  display: block;
  font-size: 10.5px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.gst-detail-grid .gv {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.gst-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #b8e0c8;
  font-size: 11.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .gst-toggle-row {
    flex-direction: column;
  }
  .gst-detail-grid {
    grid-template-columns: 1fr;
  }
}
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}
.checkout-btn:hover {
  background: var(--gold-light);
}
.sec-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 14px;
}

/* ---- DASHBOARD ---- */
.dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 32px 0 80px;
  align-items: start;
}
.dash-side {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dash-user-box {
  padding: 22px;
  text-align: center;
  border-bottom: 1px solid var(--bdr);
  background: var(--off-white);
}
.dash-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 10px;
}
.dash-uname {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.dash-uemail {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.dash-nav {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.d-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  transition: var(--tr);
}
.d-nav-btn:hover {
  background: var(--surf);
}
.d-nav-btn.active {
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 700;
}
.d-nav-btn.danger {
  color: var(--error);
}
.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.d-stat {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.d-stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.d-stat-lbl {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.d-section-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.d-table {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.d-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 12px 18px;
  background: var(--off-white);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-muted);
  letter-spacing: 0.6px;
}
.d-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 14px 18px;
  border-top: 1px solid var(--bdr);
  font-size: 13px;
  align-items: center;
}
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
}
.s-del {
  background: #edf7f1;
  color: var(--success);
}
.s-ship {
  background: #e8eef8;
  color: var(--accent);
}
.s-proc {
  background: #fdf8e1;
  color: var(--warning);
}
.s-pend {
  background: #fde8e8;
  color: var(--error);
}

/* ---- PRODUCT DETAIL (pdp) ---- */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0 80px;
  align-items: start;
}
.pdp-bc {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 18px;
  grid-column: 1/-1;
}
.pdp-bc span {
  cursor: pointer;
}
.gallery-main {
  aspect-ratio: 1;
  background: var(--surf);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  margin-bottom: 12px;
  overflow: hidden;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.g-thumb {
  aspect-ratio: 1;
  background: var(--surf);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  border: 2px solid transparent;
}
.g-thumb.active {
  border-color: var(--gold);
}
.pdp-cat {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pdp-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pdp-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
}
.pdp-was {
  font-size: 16px;
  color: var(--ink-muted);
  text-decoration: line-through;
}
.pdp-saving {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  background: #edf7f1;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.pdp-divider {
  height: 1px;
  background: var(--bdr);
  margin: 18px 0;
}
.opt-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.size-opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sz-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
}
.sz-btn.active,
.sz-btn:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.q-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
}
.q-btn:hover {
  background: var(--surf);
}
.q-num {
  padding: 0 14px;
  font-weight: 700;
  font-size: 14px;
}
.pdp-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.btn-add-c {
  flex: 1;
  padding: 13px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}
.btn-add-c:hover {
  background: var(--ink);
  color: #fff;
}
.btn-buy-n {
  flex: 1;
  padding: 13px;
  background: var(--gold);
  border: none;
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}
.btn-buy-n:hover {
  background: var(--gold-light);
}
.btn-wish-big {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.pt-item {
  text-align: center;
  padding: 12px 8px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--ink-muted);
}
.pt-item svg {
  display: block;
  margin: 0 auto 6px;
}
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--bdr);
  margin-bottom: 18px;
}
.t-btn {
  padding: 10px 16px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.t-btn.active {
  color: var(--ink);
  border-color: var(--gold);
}
.tab-pane {
  display: none;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-mid);
}
.tab-pane.active {
  display: block;
}

/* ---- ABOUT PAGE ---- */
.about-page-hero {
  padding: 48px 0;
  background: var(--off-white);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img-box {
  aspect-ratio: 1;
  background: var(--surf);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.about-desc {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-top: 16px;
}
.about-vals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.aval-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--r-md);
  padding: 16px;
}
.aval-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.aval-card-desc {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ---- BLOG LIST PAGE ---- */
.blog-page-header {
  padding: 48px 0;
  background: var(--off-white);
  text-align: center;
}
.blog-exc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 8px 0 12px;
}

/* ---- COLLECTIONS PAGE: alt navbar/footer (matches home design) ---- */
.ann {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
}
.ann strong {
  color: var(--gold-light);
}
.swrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
}
.nav-cats {
  background: var(--off-white);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  overflow-x: auto;
}
.nav-cats-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  gap: 18px;
}
.nav-cat-link {
  font-size: 12.5px;
  color: var(--ink-mid);
  white-space: nowrap;
  font-weight: 500;
}
.nav-cat-link.sale {
  color: var(--error);
  font-weight: 700;
}
.nav-cat-link:hover {
  color: var(--gold);
}
.nav-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bdr-md);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-mid);
}
.nav-btn-icon:hover {
  background: var(--surf);
}
.nav-btn-icon svg {
  width: 17px;
  height: 17px;
}
.search-bar {
  padding: 12px 32px;
  background: var(--white);
  border-top: 1px solid var(--bdr);
}
.search-bar input {
  width: 100%;
  max-width: 600px;
  padding: 10px 16px;
  border: 1.5px solid var(--bdr-md);
  border-radius: var(--r-sm);
  font-size: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.footer-contact-item {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.nav-sub,
.sub {
  font-size: 9.5px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

/* ============================================================
      HERO SLIDESHOW — REAL PHOTO BACKGROUNDS
      ------------------------------------------------------------
      Put your 3 photos in an "images" folder at the project root
      (same level as the "css" folder), named exactly:
        images/hero-1.jpg
        images/hero-2.jpg
        images/hero-3.jpg
      Any size/orientation is fine — cover-fit crops them to fill
      the hero automatically. Once the files exist at those paths
      the slideshow will show your real photos instead of the
      plain color gradients above.
      ============================================================ */
.hs1 {
  background-image: url("../Screenshot\ 2026-06-29\ at\ 11.36.42\ AM.png");
  background-size: cover;
  background-position: center;
}
.hs2 {
  background-image: url("../gen-z\ krisha.png");
  background-size: cover;
  background-position: center;
}
.hs3 {
  background-image: url("../images/hero-3.jpg");
  background-size: cover;
  background-position: center;
}

/* Slightly stronger overlay so heading text stays readable
      over a busy photo (overrides the light gradient overlay
      defined above for .hero-slide::after) */
.hero-slide::after {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.86) 32%,
    rgba(255, 255, 255, 0.5) 62%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

/* On mobile the text stacks over more of the image, so fade
      it a bit more evenly top-to-bottom for readability */
@media (max-width: 900px) {
  .hero-slide::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 55%,
      rgba(255, 255, 255, 0.55) 100%
    );
  }
}

/* ===== SITE-WIDE RESPONSIVE PASS ===== */
@media (max-width: 900px) {
  #navHamburger {
    display: flex !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--bdr-md);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    padding: 8px 20px 16px;
    z-index: 200;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--bdr-md);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plp-layout {
    grid-template-columns: 1fr;
  }
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .ckout-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .nav-logo-text .sub {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .pay-opts {
    flex-direction: column;
  }
  table {
    font-size: 12.5px;
  }
  .tbl-wrap {
    overflow-x: auto;
  }
}
@media (max-width: 420px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
