@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&display=swap');

:root {
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --c-cream: #F8F3EA;
  --c-cream-deep: #EDE3D0;
  --c-ink: #1B1712;
  --c-bronze: #922c39;
  --c-bronze-deep: #74212c;
  --c-rust: #a83443;
  --c-gold: #D4AF37;
  --c-gold-bright: #F2D06B;
  --c-olive: #6B7350;
  --c-shadow: #3D3226;
}

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

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

/* GRAIN + CURSOR GLOW (ambient depth layers) */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 300;
  opacity: 0.045;
  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");
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  left: var(--mx, 50%);
  top: var(--my, 30%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 147, 90, 0.14), transparent 70%);
  mix-blend-mode: multiply;
  transition: opacity 0.4s;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(248, 243, 234, 0.85);
  border-bottom: 0.5px solid #e4dcc9;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s, background 0.3s;
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--c-ink);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  color: #6b6459;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.nav-links a:hover {
  color: var(--c-ink);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ─── ACTIVE NAV STATE (DESKTOP) ─── */
.nav-links a.active {
  color: var(--c-bronze);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-bronze), var(--c-rust));
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin-left: 18px;
}

.nav-actions i {
  font-size: 19px;
  color: #444;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.nav-actions i:hover {
  color: var(--c-ink);
  transform: translateY(-1px);
}

.cart-badge {
  position: relative;
}

.badge {
  position: absolute;
  top: -5px;
  right: -6px;
  background: var(--c-bronze);
  color: #fff;
  font-size: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* HERO */
.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;
  opacity: 0;
  animation: fadeIn 0.8s 0.1s ease forwards;
}

.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);
  }
}

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

.hero-sub {
  font-size: 15px;
  color: #6b6459;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.8s 0.7s ease forwards;
}

.hero-actions {
  opacity: 0;
  animation: fadeIn 0.8s 0.85s ease forwards;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-ink);
  color: #fff;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  width: fit-content;
  justify-content: center;
  /* width: fit-content; */
}

.btn-primary:hover {
  background: var(--c-shadow);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(61, 50, 38, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--c-ink);
  padding: 13px 26px;
  font-size: 13px;
  letter-spacing: 1px;
  border: 1px solid var(--c-ink);
  cursor: pointer;
  transition: all 0.25s;
  width: fit-content;
}

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

.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-mobile-img-box {
  display: none;
}

@media (min-width: 769px) {
  .mobile-only-banner {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only-banner {
    display: none !important;
  }
  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
  }
  .hero-mobile-img-box {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
  }
  .hero-mobile-img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block !important;
  }
  .hero-left {
    padding: 30px 20px 35px !important;
  }
  .hero-sub {
    margin-bottom: 25px !important;
  }
  .hero-right {
    display: none !important;
  }
}

.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;
  opacity: 0;
  animation: fadeIn 0.8s 1s ease forwards;
}

.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);
  }
}

/* MARQUEE */
.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%);
  }
}

/* STATS STRIP */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 56px 60px;
}

.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;
}

.stat-label {
  font-size: 12px;
  color: #8a8275;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* SECTION */
.section {
  padding: 100px 60px;
}

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

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

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

.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;
}

.see-all:hover {
  color: var(--c-bronze-deep);
  gap: 10px;
}

/* REVEAL MASK (scroll image-wipe) */
.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 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
}

.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-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-ink);
  color: #fff;
  font-size: 9px;
  padding: 4px 8px;
  letter-spacing: 1px;
}

.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;
}

.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;
}

.product-card:hover .quick-add {
  opacity: 1;
}

.product-name {
  font-size: 14px;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.product-cat {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  color: var(--c-ink);
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-old {
  text-decoration: line-through;
  color: #bbb;
}

.price-sale {
  color: var(--c-bronze-deep);
}

.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;
}

/* CATEGORIES */
.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

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

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

.cat-bg {
  width: 100%;
  height: 100%;
  min-height: 200px;
  transition: transform 0.6s ease;
}

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 23, 18, 0.55) 0%, transparent 55%);
}

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

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

.cat-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
}

.hero-img-bg img,
.product-img-bg img,
.cat-bg img,
.promo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 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: #fff;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.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;
}

.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 */
.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;
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 60px;
  text-align: center;
  border-top: 0.5px solid #e4dcc9;
}

.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;
}

.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;
}

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

/* FOOTER */
.footer {
  background: var(--c-ink);
  padding: 60px 60px 30px;
  color: #a29a89;
  width: 100%;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-col {
  max-width: 340px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-about {
  font-size: 13px;
  color: #918a7c;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--c-gold, #D4AF37);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px !important;
}

.footer-links li a {
  font-size: 13px;
  color: #a29a89;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--c-gold-bright, #F2D06B);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 0.5px solid #3a352c;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d4af37 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  font-size: 15px;
}

.social-icon-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon-btn:hover {
  background: var(--c-gold, #D4AF37);
  border-color: var(--c-gold, #D4AF37);
  color: #1b1712 !important;
  transform: translateY(-2px);
}

/* 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;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-glow,
  .grain {
    display: none;
  }
}

/* NAVBAR SEARCH INPUT */
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(27, 23, 18, 0.04);
  border: 0.5px solid #e4dcc9;
  border-radius: 20px;
  padding: 4px 12px;
  margin-right: 15px;
  flex: 0 0 auto;
  width: clamp(170px, 14vw, 220px);
  transition: all 0.3s;
}

.search-form:focus-within {
  background: #fff;
  border-color: var(--c-bronze);
  box-shadow: 0 4px 12px rgba(61, 50, 38, 0.08);
}

.search-form .search-input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 12px !important;
  color: var(--c-ink) !important;
  width: 100% !important;
  min-width: 0 !important;
  transition: width 0.3s !important;
  font-family: var(--font-sans) !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.search-input:focus {
  width: 100%;
}

@media (max-width: 991px) {
  .nav {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .nav-links {
    gap: 18px;
  }

  .search-form {
    width: clamp(140px, 24vw, 180px);
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .nav {
    padding: 0 12px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .search-form {
    width: 140px;
    padding: 4px 10px;
  }

  .search-input {
    font-size: 12px;
  }
}

.search-btn {
  border: none;
  background: transparent;
  color: #6b6459;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0;
}

.search-btn:hover {
  color: var(--c-ink);
}

/* REMOVE BOTTOM UNDERLINE FROM NAV ACTION ICONS */
.nav-actions a {
  text-decoration: none !important;
  color: inherit !important;
  display: inline-flex;
  align-items: center;
}

/* RESET CATEGORY IMAGES TO COVER (NO EMPTY BOTTOM/SIDE SPACES) */
.cat-bg img {
  object-fit: cover !important;
  object-position: center top !important;
}

/* PAGE HEADER / BREADCRUMB BANNER */
.page-head {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  text-align: center;
  /* margin-bottom: 50px; */
}

.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(27, 23, 18, 0.45); */
  background: rgba(55, 54, 52, 0.72);

  /* Elegant dark overlay */
  z-index: 1;
}

.shop-banner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.shop-banner h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: #922c39;
  /* -webkit-text-stroke: 1px rgb(255, 255, 255); */
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}

.shop-banner span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
}

.shop-banner span a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.shop-banner span a:hover {
  color: #922c39;
}

.shop-banner span.content {
  /* color: #922c39; */
  font-weight: 600;
  letter-spacing: 2px;
}

.shop-banner span.content::before {
  content: '/';
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* ABOUT / CONTACT PAGES */
.page-content-shell {
  padding: 10px 0 90px;
}

.about-page,
.contact-page {
  position: relative;
}

.about-hero,
.contact-hero {
  margin-bottom: 48px;
}

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

.about-section h2,
.contact-title-area h2,
.contact-form-container h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.15;
}

.about-section h2,
.contact-title-area h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 18px;
}

.about-section h2 em,
.contact-title-area h2 em,
.contact-form-container h3 em {
  font-style: italic;
  color: var(--c-bronze-deep);
}

.about-section p,
.contact-title-area p,
.about-page .mission-vision-card p,
.about-page .pillar-card ul li,
.contact-info-card p,
.contact-form-container label {
  color: #6b6459;
}

.about-section p,
.contact-title-area p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
  /* max-width: 68ch; */
  max-width: 100%;

}


.about-page .about-body,
.contact-page .contact-body {
  padding-top: 10px;
}

.about-img-frame,
.contact-info-card,
.contact-form-container,
.map-wrapper,
.mission-vision-card,
.pillar-card {
  background: rgba(255, 255, 255, 0.74);
  border: 0.5px solid rgba(184, 147, 90, 0.22);
  box-shadow: 0 20px 50px -30px rgba(61, 50, 38, 0.24);
}

.about-img-frame {
  position: relative;
  padding: 14px;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 147, 90, 0.18);
  pointer-events: none;
}

.about-img-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mission-vision-card,
.pillar-card,
.contact-info-card,
.contact-form-container {
  padding: 34px;
  height: 100%;
}

.mission-vision-card h3,
.pillar-card h3,
.contact-form-container h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.mission-vision-card p {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 12px;
}

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

.pillar-card ul li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pillar-card ul li i {
  color: var(--c-bronze);
  margin-top: 3px;
}

.contact-title-area {
  margin-bottom: 42px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 147, 90, 0.18);
  background: rgba(184, 147, 90, 0.06);
  color: var(--c-bronze-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: var(--c-bronze);
  color: #fff;
  border-color: var(--c-bronze);
  transform: translateY(-3px);
}

.info-content h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--c-ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.info-content p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-content a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--c-bronze);
}

.contact-form-container label {
  font-size: 11px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container input[type="password"],
.contact-form-container input[type="number"],
.contact-form-container textarea {
  width: 100%;
  background: #fff !important;
  border: 0.5px solid rgba(184, 147, 90, 0.2) !important;
  color: var(--c-ink) !important;
  padding: 13px 16px !important;
  font-size: 14px !important;
  margin-bottom: 22px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container input[type="password"]:focus,
.contact-form-container input[type="number"]:focus,
.contact-form-container textarea:focus {
  border-color: var(--c-bronze) !important;
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.08);
}

.contact-form-container textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-container input[type="submit"] {
  background: var(--c-ink) !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px !important;
  border: none !important;
  cursor: pointer;
  width: 100%;
  transition: background 0.25s, transform 0.25s;
}

.contact-form-container input[type="submit"]:hover {
  background: var(--c-shadow) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.map-wrapper {
  padding: 14px;
  margin-top: 40px;
  margin-bottom: 0;
}

.map-size {
  width: 100%;
  height: 390px;
  border: none;
  display: block;
}

@media (max-width: 991px) {
  .mission-vision-card,
  .pillar-card,
  .contact-info-card,
  .contact-form-container {
    padding: 26px;
  }

  .about-section h2,
  .contact-title-area h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .page-content-shell {
    padding-bottom: 70px;
  }

  .about-img-frame,
  .contact-info-card,
  .contact-form-container,
  .map-wrapper,
  .mission-vision-card,
  .pillar-card {
    padding: 20px;
  }

  .map-size {
    height: 280px;
  }
}

/* PREMIUM FILTER SIDEBAR WIDGETS */
.widget {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 0.5px solid var(--bdr) !important;
  padding: 30px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 10px 30px -15px rgba(61, 50, 38, 0.08) !important;
}

.widget h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.05em !important;
  color: var(--c-ink) !important;
  border-bottom: 0.5px solid rgba(184, 147, 90, 0.25) !important;
  padding-bottom: 14px !important;
  margin-bottom: 22px !important;
  font-weight: 500 !important;
}

.widget ul li a {
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  color: #6b6459 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.widget ul li a:hover {
  color: var(--c-bronze) !important;
  padding-left: 4px !important;
}

/* PRODUCT CARD RATING STARS styling */
.product-rating {
  font-size: 11px;
  color: var(--c-bronze);
  margin-top: 5px;
  display: flex;
  gap: 2px;
}

/* PREMIUM 2-COLUMN COLOR FILTERS */
.color-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  padding: 0 !important;
  margin: 10px 0 0 0 !important;
  list-style: none !important;
}

.color-list-grid li {
  position: relative;
  border-bottom: 0.5px dashed rgba(184, 147, 90, 0.25);
  padding-bottom: 8px;
}

.color-list-grid li a {
  font-family: var(--font-sans) !important;
  font-size: 0.88rem !important;
  color: #6b6459 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease !important;
  padding-left: 0 !important;
}

.color-list-grid li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--c-bronze);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.color-list-grid li a:hover {
  color: var(--c-bronze) !important;
  padding-left: 4px !important;
}

.color-list-grid li a:hover::before {
  opacity: 1;
  transform: scale(1.3);
}

/* PRODUCT DETAIL PAGES - PREMIUM GALLERY (BOTTOM THUMBNAILS) */
.main-img {
  background: #ffffff;
  border: 0.5px solid var(--bdr);
  padding: 15px;
  box-shadow: 0 10px 30px -15px rgba(61, 50, 38, 0.08);
}
.prodect-details-area .main-img {
  overflow: hidden;
}
.prodect-details-area .tab-content,
.prodect-details-area .tab-pane,
.prodect-details-area .zoom,
.prodect-details-area .zoom a,
.prodect-details-area .zoom img {
  width: 100%;
}
.zoom {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-bottom: 15px;
}
.prodect-details-area .zoom {
  margin-bottom: 12px;
}
.prodect-details-area .zoom a {
  display: block;
  height: 100%;
}
.zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform 0.5s ease;
}
.zoom:hover img {
  transform: scale(1.05);
}
.magnifier-gallery {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  margin-top: 0 !important;
  flex-wrap: nowrap;
}
.prodect-details-area .magnifier-gallery.nav {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  height: auto !important;
  width: 100%;
  padding: 0 !important;
  margin: 14px 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-wrap: nowrap;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none;
}
.prodect-details-area .magnifier-gallery.nav::before,
.prodect-details-area .magnifier-gallery.nav::after {
  content: none !important;
  display: none !important;
}
.prodect-details-area .magnifier-gallery.nav::-webkit-scrollbar {
  display: none;
}
.prodect-details-area .magnifier-gallery .owl-stage-outer {
  width: 100% !important;
  overflow: visible !important;
}
.prodect-details-area .magnifier-gallery .owl-stage {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  transform: none !important;
  width: auto !important;
  height: auto !important;
}
.prodect-details-area .magnifier-gallery .owl-item {
  width: 72px !important;
  flex: 0 0 72px;
}
.prodect-details-area .magnifier-gallery .owl-controls {
  display: none !important;
}
.prodect-details-area .magnifier-gallery .owl-item.active {
  width: 72px !important;
}
.img-gallary {
  width: 72px !important;
  aspect-ratio: 1 / 1;
  border: 0.5px solid var(--bdr);
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  flex: 0 0 72px;
}
.img-gallary:hover,
.img-gallary .active,
.img-gallary div[role="presentation"].active {
  border-color: var(--c-bronze);
  box-shadow: 0 4px 12px rgba(184, 147, 90, 0.15);
}
.img-gallary a, 
.img-gallary div[role="presentation"] {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
.img-gallary img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  display: block;
}
.prodect-details-area .img-gallary a {
  height: 100%;
}
.prodect-details-area .img-gallary img {
  object-fit: cover !important;
}

iframe{
		width: 100%;
	}

/* ================= MOBILE NAV DRAWER ================= */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--c-ink, #2a1810);
  cursor: pointer;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 10px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FFFDF8; /* var(--white) or warm white */
  z-index: 2000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav .close-btn {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: var(--c-ink, #2a1810);
  cursor: pointer;
  font-size: 24px;
  margin-bottom: 30px;
  padding: 5px;
}

.mobile-nav a {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--c-ink, #2a1810);
  text-decoration: none !important;
  padding: 16px 0;
  border-bottom: 1px solid rgba(42, 24, 16, 0.08);
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #B27B1B; /* gold/accent color */
}

/* ─── ACTIVE NAV STATE (MOBILE) ─── */
.mobile-nav a.active {
  color: var(--c-bronze);
  font-weight: 600;
  border-left: 3px solid var(--c-bronze);
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(146, 44, 57, 0.06), transparent);
}

/* Adjustments in media query for max-width: 991px */
@media (max-width: 991px) {
  .nav-links {
    display: none !important; /* Hide desktop nav links */
  }
  .menu-toggle {
    display: inline-flex !important; /* Show hamburger button */
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
  }
  .hero-left {
    padding: 60px 40px;
  }
  .hero-h1 {
    font-size: 42px;
  }
  .stats {
    padding: 40px 30px;
  }
  .stat-num {
    font-size: 36px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Media Query: max-width: 767px */
@media (max-width: 767px) {
  .search-form {
    display: none !important; /* Hide search form in narrow view to prevent crowding */
  }

  /* HERO / SLIDER - Show single clean full-width block, remove right image block */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    width: 100% !important;
  }
  .hero-right {
    display: none !important; /* Hides image slider section on mobile to leave only one main block */
  }
  .hero-left {
    padding: 45px 20px 35px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-h1 {
    font-size: 32px !important;
    line-height: 1.22 !important;
    margin-bottom: 16px !important;
    word-break: break-word;
  }
  .hero-sub {
    font-size: 14px !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .scroll-hint-wrap {
    margin-top: 30px !important;
  }

  /* STATS COUNTER - 2 UP & 2 DOWN GRID */
  .stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    padding: 30px 15px !important;
  }
  .stat {
    padding: 16px 10px !important;
    text-align: center !important;
    border-right: none !important;
    border-bottom: none !important;
  }
  .stat:nth-child(1),
  .stat:nth-child(3) {
    border-right: 0.5px solid #e4dcc9 !important;
  }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 0.5px solid #e4dcc9 !important;
    padding-bottom: 20px !important;
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    padding-top: 20px !important;
  }
  .stat-num {
    font-size: 32px !important;
  }
  .stat-label {
    font-size: 11px !important;
  }

  /* SECTIONS & CATEGORIES */
  .section {
    padding: 40px 20px !important;
  }
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 30px !important;
  }
  .cat-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 14px !important;
  }
  .cat-card.tall {
    grid-row: span 1 !important;
  }
  
  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* PROMO BANNER */
  .promo {
    grid-template-columns: 1fr !important;
    margin: 0 15px 40px !important;
    min-height: auto !important;
  }
  .promo-left {
    padding: 30px 20px !important;
  }
  .promo-h {
    font-size: 28px !important;
  }
  .promo-right {
    max-height: 250px !important;
  }

  /* FEATURES */
  .features {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .feat {
    padding: 24px 15px !important;
    border-right: none !important;
  }
  .feat:nth-child(1),
  .feat:nth-child(3) {
    border-right: 0.5px solid #e4dcc9 !important;
  }
  .feat:nth-child(1),
  .feat:nth-child(2) {
    border-bottom: 0.5px solid #e4dcc9 !important;
  }

  /* TESTIMONIALS & NEWSLETTER */
  .testi-section {
    padding: 50px 20px !important;
  }
  .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 30px !important;
  }
  .newsletter {
    padding: 50px 20px !important;
  }
  .nl-title {
    font-size: 26px !important;
  }
  .nl-form {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* FOOTER MOBILE RESPONSIVE */
  .footer {
    padding: 40px 20px 30px !important;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 16px !important;
    margin-bottom: 30px !important;
  }
  .footer-brand-col {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
  }
  .footer-about {
    font-size: 13px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
  }
  .footer-links {
    gap: 12px !important;
  }
  .footer-links li a {
    padding: 3px 0 !important;
    font-size: 13px !important;
  }
  .footer-bottom {
    flex-direction: column-reverse !important;
    gap: 18px !important;
    text-align: center !important;
    padding-top: 20px !important;
  }
  .social-links {
    justify-content: center !important;
    width: 100% !important;
  }
  .social-icon-btn {
    width: 38px !important;
    height: 38px !important;
  }
}

/* Wishlist Active Heart Icon Color */
.pc-wish i.bi-heart-fill,
.product-wishlist i.bi-heart-fill,
.pc-wish.active i,
.pc-wish.in-wishlist i {
  color: #922c39 !important;
}

.pc-wish i.bi-heart-fill,
.product-wishlist i.bi-heart-fill {
  color: #922c39 !important;
}

/* ================= PRODUCT BADGES ================= */
.pc-badge {
  background: var(--c-ink, #2a1810) !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  letter-spacing: 1px !important;
  border-radius: 3px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  border: none !important;
}

.pc-badge.badge-sale {
  background: #a83232 !important; /* Premium red background for Sale */
}

.pc-badge.badge-new {
  background: #b8935a !important; /* Premium gold background for Best Seller / New */
}

.pc-badge.badge-ltd {
  background: #4a2828 !important; /* Premium dark burgundy background for Special/Limited */
}

/* ── PROFILE DROPDOWN ─────────────────────────────────── */
.profile-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-icon-btn {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: inherit;
  text-decoration: none;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 170px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(27,23,18,0.14), 0 2px 8px rgba(27,23,18,0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
  border: 1px solid rgba(27,23,18,0.07);
}

.profile-dropdown-wrap:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--c-ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.profile-dropdown a i {
  font-size: 16px;
  opacity: 0.7;
  flex-shrink: 0;
}

.profile-dropdown a:hover {
  background: var(--c-cream);
  color: var(--c-bronze);
}

.profile-dropdown a:hover i {
  opacity: 1;
}

.profile-dropdown-divider {
  height: 1px;
  background: rgba(27,23,18,0.08);
  margin: 4px 0;
}

.profile-dropdown-logout {
  color: #a83232 !important;
}

.profile-dropdown-logout:hover {
  background: #fdf0f0 !important;
  color: #a83232 !important;
}

/* UNIFORM CONTAINER LAYOUT (MATCHING HOME PAGE SIDE SPACING) */
@media (min-width: 1200px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    max-width: 1440px !important;
    /* padding-left: 40px !important;
    padding-right: 40px !important; */
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    max-width: 100% !important;
    /* padding-left: 40px !important;
    padding-right: 40px !important; */
  }
}

@media (max-width: 768px) {
  .container, 
  .container-lg, 
  .container-md, 
  .container-sm, 
  .container-xl, 
  .container-xxl {
    /* padding-left: 20px !important;
    padding-right: 20px !important; */
  }
}

/* ACTIVE FILTER SIDEBAR HIGHLIGHTS (TEXT COLOR ONLY) */
.category-filter-link.active-filter-item {
  color: var(--c-bronze) !important;
  font-weight: 700 !important;
  background: transparent !important;
  border-left: none !important;
  padding-left: 0 !important;
}

.badge-active-dot {
  color: var(--c-bronze);
  font-weight: bold;
  margin-left: 6px;
}

.active-color-link {
  color: var(--c-bronze) !important;
  font-weight: 700 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: inline-block;
}

.color-check-icon {
  font-weight: bold;
  margin-left: 4px;
  color: var(--c-bronze);
}