@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,400..500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* VELOUR Theme Design Tokens */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --c-cream: #F8F3EA;
  --c-cream-deep: #EDE3D0;
  --c-ink: #1B1712;
  /* Primary Brand Accent (Wine Burgundy Red) */
  --c-bronze: #922c39;
  --c-bronze-deep: #74212c;
  --c-rust: #a83443;

  /* Luminous Contrast Accent for Dark Surfaces & Accents */
  --c-gold: #D4AF37;
  --c-gold-bright: #F2D06B;

  --c-olive: #6B7350;
  --c-shadow: #3D3226;

  /* Backward Compatibility Mapping */
  --ink: var(--c-ink);
  --charcoal: var(--c-cream-deep);
  --panel: var(--c-cream);
  --card: #FBF8F1;
  --gold: var(--c-gold);
  --gold-lt: var(--c-gold-bright);
  --brand-primary: var(--c-bronze);
  --rose: var(--c-rust);
  --cream: var(--c-cream);
  --muted: #8A8275;
  --bdr: rgba(146, 44, 57, 0.2);
}

/* ──────────────────────────────────────────────────────────────────
   1. CORE BASES & RESET
   ────────────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--c-ink);
  background:
    radial-gradient(circle at 15% 0%, #FBF8F1 0%, transparent 55%),
    radial-gradient(circle at 100% 30%, #F0E6D3 0%, transparent 50%),
    var(--c-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Global ambient overlay structures */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#cursorGlow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184,147,90,0.08), transparent 70%);
  mix-blend-mode: multiply;
  transition: opacity 0.4s;
  left: -999px;
  top: -999px;
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 2000;
  background: linear-gradient(90deg, var(--c-bronze), var(--c-rust));
  transition: width 0.08s linear;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--c-ink);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--c-ink);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--c-bronze);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ──────────────────────────────────────────────────────────────────
   2. COMMON INTERFACE ELEMENTS (BUTTONS, INPUTS, DROPDOWNS)
   ────────────────────────────────────────────────────────────────── */
.btn-primary, .btn-gold, .btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-ink) !important;
  color: #fff !important;
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.btn-primary:hover, .btn-gold:hover, .btn-black:hover {
  background: var(--c-bronze) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(61, 50, 38, 0.25);
}

.btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent !important;
  color: var(--c-ink) !important;
  padding: 11px 26px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--c-ink) !important;
  border-radius: 0 !important;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.btn-outline:hover, .btn-ghost:hover {
  background: var(--c-ink) !important;
  color: #fff !important;
  border-color: var(--c-ink) !important;
  transform: translateY(-2px);
}

input, select, textarea {
  background: #fff;
  border: 1px solid rgba(184, 147, 90, 0.25);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--c-ink);
  outline: none;
  transition: all 0.3s;
  border-radius: 0 !important;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--c-bronze);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.1);
}

/* ──────────────────────────────────────────────────────────────────
   3. NAVIGATION BAR
   ────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: rgba(248, 243, 234, 0.85) !important;
  border-bottom: 0.5px solid rgba(184, 147, 90, 0.2) !important;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 10px 30px -10px rgba(61, 50, 38, 0.15);
  background: rgba(248, 243, 234, 0.98) !important;
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--c-ink) !important;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 13px !important;
  color: #6b6459 !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
  padding: 8px 12px !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-bronze);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--c-ink) !important;
}

.nav-link:hover::after {
  width: calc(100% - 24px);
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B1712' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-menu {
  background: #ffffff !important;
  border: 1px solid rgba(184, 147, 90, 0.2) !important;
  border-radius: 0 !important;
  box-shadow: 0 10px 30px rgba(61, 50, 38, 0.08) !important;
  padding: 10px 0 !important;
  margin-top: 5px !important;
}

.dropdown-item {
  font-family: var(--font-sans);
  font-size: 13px !important;
  color: #6b6459 !important;
  padding: 8px 20px !important;
  transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item.active {
  background: var(--c-cream) !important;
  color: var(--c-ink) !important;
}

/* ──────────────────────────────────────────────────────────────────
   4. HOME SECTIONS (HERO, TICKER, STATS, CATEGORIES)
   ────────────────────────────────────────────────────────────────── */
.swiper-hero .swiper-slide {
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* TICKER */
.ticker {
  background: var(--c-ink);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-anim 20s linear infinite;
  width: max-content;
  gap: 40px;
}

.ticker-inner span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--c-bronze);
  text-transform: uppercase;
}

.ticker-inner .dot {
  color: #555;
  margin: 0;
}

@keyframes ticker-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* STATS STRIP */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 56px 60px;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(184, 147, 90, 0.15);
}

.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 0.5px solid #e4dcc9;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--c-bronze-deep);
  font-weight: 500;
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #8a8275;
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* CATEGORIES SECTION */
.categories {
  padding: 80px 0;
  background: transparent;
}

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

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--c-bronze-deep);
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--c-ink);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(61, 50, 38, 0.04);
}

.cat-card.tall {
  grid-row: span 2;
}

.cat-bg {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--c-cream-deep);
}

.cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 23, 18, 0.45) 0%, transparent 60%);
  z-index: 1;
}

.cat-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.cat-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.cat-count {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────────────
   5. PRODUCT LISTINGS (CARDS & GRIDS)
   ────────────────────────────────────────────────────────────────── */
.products {
  padding: 80px 0;
  background: transparent;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--c-bronze-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--c-ink);
}

.sec-title em {
  font-style: italic;
  color: var(--c-bronze-deep);
}

.gold-bar {
  width: 60px;
  height: 1.5px;
  background: var(--c-bronze);
  margin-top: 15px;
  margin-bottom: 30px;
}

/* Dynamic product cards using class names returned from loop */
.product-card {
  position: relative;
  background: transparent;
  margin-bottom: 20px;
  cursor: pointer;
}

.pc-img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(61, 50, 38, 0.04);
  transition: box-shadow 0.35s ease;
}

.product-card:hover .pc-img {
  box-shadow: 0 20px 40px -15px rgba(61, 50, 38, 0.18);
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.pc-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 5;
  border: 1px solid rgba(184, 147, 90, 0.15);
}

.product-card:hover .pc-wish {
  opacity: 1;
}

.pc-wish i {
  font-size: 15px;
  color: var(--c-ink);
}

.pc-wish:hover {
  background: var(--c-ink);
  color: #fff;
}

.pc-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 23, 18, 0.92);
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.25s ease;
  z-index: 5;
}

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

.pc-actions a {
  flex: 1;
  text-align: center;
  padding: 11px 5px;
  font-size: 10px;
  letter-spacing: 1px;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 600;
  border-right: 0.5px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.pc-actions a:last-child {
  border-right: none;
}

.pc-actions a:hover {
  background: var(--c-bronze);
}

.pc-actions a.primary {
  background: var(--c-bronze);
}

.pc-actions a.primary:hover {
  background: var(--c-bronze-deep);
}

.pc-body {
  padding-top: 5px;
}

.pc-craft {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.pc-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.pc-desc {
  display: none;
}

.pc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.pc-price {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  display: flex;
  gap: 8px;
  align-items: center;
}

.pc-price s {
  text-decoration: line-through;
  color: #bbb;
  font-weight: 400;
  font-size: 12px;
}

.pc-rating {
  color: var(--c-bronze);
  font-size: 11px;
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-ink);
  color: #fff;
  font-size: 9px;
  padding: 4px 8px;
  letter-spacing: 1px;
  font-weight: 600;
  z-index: 5;
}

.pc-badge.badge-sale {
  background: var(--c-bronze);
}

/* ──────────────────────────────────────────────────────────────────
   6. FEATURED BANNER & CRAFT TRADITIONS
   ────────────────────────────────────────────────────────────────── */
.featured {
  padding: 80px 0;
  background: #ffffff;
  border-top: 0.5px solid rgba(184, 147, 90, 0.15);
  border-bottom: 0.5px solid rgba(184, 147, 90, 0.15);
}

.fb-img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(61, 50, 38, 0.08);
}

.fb-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.fb-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--c-ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.fb-price {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--c-bronze-deep);
  margin-top: 15px;
  margin-bottom: 20px;
}

.crafts {
  padding: 80px 0;
  background: transparent;
}

.craft-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(184, 147, 90, 0.15);
  padding: 30px 15px;
  height: 100%;
  transition: all 0.3s;
}

.craft-item:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: var(--c-bronze);
  box-shadow: 0 10px 25px -10px rgba(61, 50, 38, 0.1);
}

.craft-icon {
  width: 50px;
  height: 50px;
  background: var(--c-cream);
  color: var(--c-bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.craft-name {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-ink);
  margin-bottom: 6px;
}

.craft-desc {
  font-size: 12px;
  color: #8a8275;
}

/* ──────────────────────────────────────────────────────────────────
   7. TESTIMONIALS & NEWSLETTER
   ────────────────────────────────────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: var(--c-cream-deep);
}

.t-card {
  background: #fff;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(61, 50, 38, 0.02);
  transition: all 0.3s;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -15px rgba(61, 50, 38, 0.15);
}

.t-stars {
  color: var(--c-bronze);
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.t-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.t-name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--c-ink);
  font-weight: 600;
}

.t-loc {
  font-size: 11px;
  color: #a19a90;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 0;
  background: transparent;
  border-top: 0.5px solid rgba(184, 147, 90, 0.15);
}

.nl-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--c-ink);
}

.nl-sub {
  font-size: 14px;
  color: #8a8275;
  margin-bottom: 30px;
}

.nl-form-wrap {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
}

.nl-input-home {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid rgba(184, 147, 90, 0.3);
  outline: none;
  font-size: 13px;
  background: #fff;
  border-right: none;
}

.nl-btn-home {
  background: var(--c-ink);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.nl-btn-home:hover {
  background: var(--c-bronze);
}

/* ──────────────────────────────────────────────────────────────────
   8. FOOTER
   ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--c-ink);
  /* padding: 70px 0 30px; */
  color: #fff;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-about {
  font-size: 13px;
  color: #918a7c;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--c-bronze);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: #a29a89;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #2a241e;
  margin-top: 50px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: #6d675b;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links i, .social-links a {
  font-size: 18px;
  color: #6d675b;
  cursor: pointer;
  transition: color 0.2s;
}

.social-links i:hover, .social-links a:hover {
  color: var(--c-bronze);
}

/* ──────────────────────────────────────────────────────────────────
   9. INNER PAGES (CART, CHECKOUT, PROFILE, LOGIN, DETAIL, LISTING)
   ────────────────────────────────────────────────────────────────── */

/* GENERAL BREADCRUMB */
.breadcrumb-wrap {
  background: var(--c-cream-deep);
  padding: 40px 0;
  text-align: center;
  border-bottom: 0.5px solid rgba(184, 147, 90, 0.15);
  margin-bottom: 50px;
}

.breadcrumb-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--c-ink);
  margin-bottom: 8px;
}

.breadcrumb-nav {
  font-size: 12px;
  color: #8a8275;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-nav a {
  color: #8a8275;
}

.breadcrumb-nav span {
  color: var(--c-ink);
  margin: 0 8px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border: 1px solid rgba(184, 147, 90, 0.15);
  box-shadow: 0 4px 15px rgba(61, 50, 38, 0.02);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-bronze);
  box-shadow: 0 10px 25px -10px rgba(61, 50, 38, 0.12);
}

.bc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.bc-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--c-bronze);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.bc-date span {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.bc-body {
  padding: 24px;
}

.bc-meta {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bc-title {
  font-family: var(--font-serif);
  font-size: 17px;
  margin-bottom: 12px;
}

.bc-title a {
  color: var(--c-ink);
}

.bc-title a:hover {
  color: var(--c-bronze);
}

.bc-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.bc-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-bronze-deep);
}

/* LISTING FILTERS & CARD */
.filter-widget {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(184, 147, 90, 0.2);
  padding: 25px;
  margin-bottom: 30px;
}

.filter-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--c-ink);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
  padding-bottom: 10px;
}

.filter-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-list a {
  font-size: 14px;
  color: #6b6459;
  display: flex;
  justify-content: space-between;
}

.filter-list a:hover, .filter-list a.active {
  color: var(--c-bronze-deep);
  font-weight: 600;
}

/* DETAIL PAGE STYLE WIDGETS */
.size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 147, 90, 0.3);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 8px;
  margin-bottom: 8px;
}

.size-btn:hover, .size-btn.active {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}

.qty-wrap {
  display: inline-flex;
  border: 1px solid rgba(184, 147, 90, 0.3);
  background: #fff;
}

.qty-btn {
  width: 40px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--c-ink);
  font-size: 16px;
  cursor: pointer;
}

.qty-input {
  width: 50px;
  height: 44px;
  border: none !important;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

/* CART & CHECKOUT TABLES */
.checkout-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 147, 90, 0.2);
  padding: 30px;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
}

.table-custom th {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-ink);
  padding: 15px;
  border-bottom: 1.5px solid rgba(184, 147, 90, 0.25);
  background: var(--c-cream-deep);
}

.table-custom td {
  padding: 15px;
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
  vertical-align: middle;
  background: #fff;
}

.table-custom tr:last-child td {
  border-bottom: none;
}

/* CTA BAND */
.cta-band {
  background: var(--c-cream-deep);
  padding: 80px 0;
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────────
   10. MOBILE RESPONSIVENESS OVERRIDES
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 20px;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 15px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 20px;
  }
  .stat {
    border-right: none;
  }
  .stat:nth-child(odd) {
    border-right: 0.5px solid rgba(184, 147, 90, 0.15);
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .cat-card.tall {
    grid-row: auto;
  }
  .promo {
    grid-template-columns: 1fr;
    margin: 0 20px 50px;
  }
  .promo-left {
    padding: 40px 20px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

/* ==================================================================
   MOCKUP LAYOUT CLASSE UPDATES (HERO, PROMO, FEATURES, TESTIMONIALS, NEWSLETTER)
   ================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  overflow: hidden;
}
.hero-left {
  background: linear-gradient(160deg, var(--c-cream-deep), #E3D5B8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--c-bronze-deep);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.14;
  color: var(--c-ink);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--c-bronze-deep);
  font-weight: 500;
}
.line-mask {
  display: block;
  overflow: hidden;
}
.line-inner {
  display: block;
  transform: translateY(115%);
  animation: lineUp 0.9s cubic-bezier(.16,1,.3,1) forwards;
}
.line-mask:nth-child(1) .line-inner { animation-delay: 0.15s; }
.line-mask:nth-child(2) .line-inner { animation-delay: 0.32s; }
.line-mask:nth-child(3) .line-inner { animation-delay: 0.49s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-sub {
  font-size: 15px;
  color: #6b6459;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-right {
  background: #e8e0d4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-img-bg {
  width: 110%;
  height: 110%;
  margin: -5%;
  background: linear-gradient(160deg, #e8ddd0 0%, #d4c5b0 45%, #b89a72 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.05s linear;
}
.hero-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(61,50,38,0.28);
}
.hero-model-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255,255,255,0.96);
  padding: 14px 18px;
  border-left: 3px solid var(--c-bronze);
  box-shadow: 0 20px 40px -15px rgba(61,50,38,0.3);
  animation: floatSlow 5s ease-in-out infinite;
}
.model-name {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
}
.model-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  margin: 4px 0;
}
.model-price {
  font-size: 13px;
  color: var(--c-bronze-deep);
}
.hero-float-tag {
  position: absolute;
  top: 50px;
  right: 40px;
  background: var(--c-ink);
  color: #fff;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  animation: floatSlow 5s ease-in-out infinite 1s;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.scroll-hint-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--c-bronze), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* PROMO BANNER */
.promo {
  background: linear-gradient(135deg, var(--c-cream-deep), #E3D3B0);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  margin: 0 60px 80px;
  box-shadow: 0 20px 50px -25px rgba(61,50,38,0.25);
}
.promo-left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--c-bronze-deep);
  margin-bottom: 16px;
}
.promo-h {
  font-size: 42px;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.promo-sub {
  font-size: 14px;
  color: #6b6459;
  margin-bottom: 30px;
  line-height: 1.7;
}
.promo-code {
  display: inline-block;
  background: var(--c-ink);
  color: var(--c-bronze);
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  width: fit-content;
}
.promo-right {
  position: relative;
  overflow: hidden;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid #e4dcc9;
}
.feat {
  padding: 40px 36px;
  border-right: 0.5px solid #e4dcc9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 0.3s ease;
  background: #ffffff;
}
.feat:hover {
  transform: translateY(-4px);
}
.feat:last-child {
  border-right: none;
}
.feat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon i {
  font-size: 22px;
  color: var(--c-bronze);
}
.feat-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.5px;
}
.feat-text {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

/* TESTIMONIALS MOCKUP CLASSE */
.testi-section {
  background: var(--c-cream-deep);
  padding: 90px 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testi-card {
  background: #fff;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(61,50,38,0.2);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.stars i {
  font-size: 14px;
  color: var(--c-bronze);
}
.testi-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink);
}
.author-loc {
  font-size: 11px;
  color: #bbb;
}

/* PRODUCT CARD MOCKUP CLASSES */
.product-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
  background: transparent;
}
.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(61, 50, 38, 0.06);
  transition: box-shadow 0.35s ease;
}
.product-card:hover .product-img {
  box-shadow: 0 30px 60px -20px rgba(61, 50, 38, 0.35);
}
.product-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-bg {
  transform: scale(1.06);
}
.product-card:hover .product-img-bg img {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-ink);
  color: #fff;
  font-size: 9px;
  padding: 4px 8px;
  letter-spacing: 1px;
  z-index: 5;
  font-weight: 600;
}
.product-badge.sale {
  background: var(--c-bronze);
}
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  z-index: 5;
}
.product-card:hover .product-wishlist {
  opacity: 1;
}
.product-wishlist i {
  font-size: 15px;
  color: var(--c-ink);
}
.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 23, 18, 0.92);
  color: #fff;
  text-align: center;
  padding: 11px;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.25s;
  cursor: pointer;
  z-index: 5;
}
.product-card:hover .quick-add {
  opacity: 1;
}
.product-name {
  font-size: 14px;
  color: var(--c-ink);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.product-cat {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.product-price {
  font-size: 14px;
  color: var(--c-ink);
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}
.price-old {
  text-decoration: line-through;
  color: #bbb;
  font-weight: 400;
  font-size: 12px;
}
.price-sale {
  color: var(--c-bronze-deep);
}

/* MARQUEE MOCKUP TRACK */
.marquee-wrap {
  background: var(--c-ink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 18s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 11px;
  letter-spacing: 3px;
  color: #F8F3EA;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
}
.marquee-dot {
  color: var(--c-gold, #D4AF37);
  font-size: 12px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .fade-up:not(.visible) {
  opacity: 0;
  transform: translateY(30px);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

.reveal-line {
  width: 0;
  height: 2px;
  background: var(--c-bronze);
  transition: width 0.8s ease;
  margin: 16px 0;
}
.reveal-line.visible {
  width: 60px;
}

/* ==================================================================
   MISSING LAYOUT CSS (SEE-ALL, SECTION, NEWSLETTER, PRODUCT-GRID)
   ================================================================== */

/* Section generic container */
.section {
  padding: 100px 60px;
}

/* See-all link */
.see-all {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #888;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
  white-space: nowrap;
}
.see-all:hover {
  color: var(--c-bronze-deep);
  gap: 10px;
}

/* NEWSLETTER SECTION */
.newsletter {
  padding: 80px 60px;
  text-align: center;
  border-top: 0.5px solid #e4dcc9;
  background: #fff;
}
.nl-title {
  font-size: 36px;
  font-weight: 400;
  font-family: var(--font-serif);
  margin-bottom: 10px;
  color: var(--c-ink);
}
.nl-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}
.nl-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.nl-input {
  flex: 1;
  padding: 13px 16px;
  border: 0.5px solid #ccc;
  outline: none;
  font-size: 13px;
  font-family: var(--font-sans);
  background: #fff;
  border-radius: 0 !important;
}
.nl-input:focus {
  border-color: var(--c-bronze);
}
.nl-btn {
  background: var(--c-ink);
  color: #fff;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: var(--font-sans);
}
.nl-btn:hover {
  background: var(--c-shadow);
}

/* REVEAL MASK (scroll image-wipe animation) */
.reveal-mask {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 1s cubic-bezier(.16,1,.3,1);
}
html.js .reveal-mask:not(.reveal-visible) {
  clip-path: inset(0 0 100% 0);
}

/* PRODUCT GRID container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* COLOR SWATCHES */
.product-colors {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}
.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
}
.color-dot.active {
  border-color: #888;
}

/* FA icon size fix */
.feat-icon .fa,
.hero-actions .fa {
  font-size: inherit;
}

/* MOBILE RESPONSIVE for new sections */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    min-height: 50vw;
  }
  .hero-left {
    padding: 60px 30px;
  }
  .hero-h1 {
    font-size: 36px;
  }
  .promo {
    grid-template-columns: 1fr;
    margin: 0 20px 50px;
  }
  .promo-left {
    padding: 40px 20px;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 20px;
  }
  .newsletter {
    padding: 60px 20px;
  }
  .testi-section {
    padding: 60px 20px;
  }
}