/* ── PAGE-LEVEL OVERRIDES (Devastram-style) ── */
:root {
  --kjc-saffron: #d4701a;
  --kjc-deep: #8b0000;
  --kjc-cream: #fdf8f0;
  --kjc-border: #ede0cc;
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
}

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

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

/* HERO SECTION */

.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: #000;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 5, 0, 0.75) 0%,
    rgba(15, 5, 0, 0.45) 50%,
    rgba(15, 5, 0, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 650px;
  padding-left: 80px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0c070;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-h1 em {
  color: #f0c070;
  font-style: italic;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 12px;
}

.btn-hero-pri {
  background: #b8955a;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 6px;
}

.btn-hero-sec {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 30px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .hero {
    height: 560px;
  }
  .hero-text {
    padding-left: 40px;
  }
  .hero-h1 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }

  .hero-text {
    padding: 0 25px;
  }

  .hero-h1 {
    font-size: 38px;
  }

  .hero-btns {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 420px;
  }
  .hero-h1 {
    font-size: 30px;
  }
  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns button,
  .hero-btns a {
    width: 100%;
    text-align: center;
  }
}
/* ── MARQUEE ── */
.marquee {
  background: #1a0a00;
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mq-track {
  display: flex;
  gap: 0;
  animation: mqscroll 30s linear infinite;
  width: max-content;
}
.marquee:hover .mq-track {
  animation-play-state: paused;
}
@keyframes mqscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.mq-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b8955a;
  flex-shrink: 0;
}

/* ── CATEGORY PILLS ── */
.cat-pills {
  padding: 20px 0;
  background: #fdf8f0;
  border-bottom: 1px solid #ede0cc;
  overflow: hidden;
}
.cat-pills-inner {
  display: flex;
  gap: 10px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-pills-inner::-webkit-scrollbar {
  display: none;
}
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #ede0cc;
  cursor: pointer;
  transition: all 0.22s;
  flex-shrink: 0;
  min-width: 82px;
  text-decoration: none;
}
.cat-pill:hover {
  border-color: #b8955a;
  background: #fff9f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 149, 90, 0.15);
}
.cat-pill-icon {
  font-size: 26px;
  line-height: 1;
}
.cat-pill-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #4a4035;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
  text-align: center;
}
.cat-pill.hot .cat-pill-lbl {
  color: #c0392b;
}
.cat-pill.hot {
  border-color: #f8d7d7;
  background: #fff8f8;
}

/* ── SECTION WRAPPER ── */
.swrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 64px 0;
}
.section.bg-cream {
  background: #fdf8f0;
}
.section.bg-dark {
  background: #120800;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8955a;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
}
.section.bg-dark .section-title {
  color: #fff;
}
.btn-view-all {
  background: none;
  border: 1.5px solid #d0c0a0;
  color: #5a4a30;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-view-all:hover {
  border-color: #b8955a;
  color: #b8955a;
  background: #fff9f0;
}

/* ── COLLECTION GRID (3 col) ── */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.coll-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #f0e8d8;
  aspect-ratio: 0.9;
  display: flex;
  align-items: flex-end;
  transition: transform 0.28s, box-shadow 0.28s;
  text-decoration: none;
}
.coll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.coll-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.coll-card:hover .coll-card-bg {
  transform: scale(1.05);
}
.coll-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 5, 0, 0.75) 0%,
    rgba(15, 5, 0, 0.2) 55%,
    transparent 100%
  );
}
.coll-card-body {
  position: relative;
  z-index: 2;
  padding: 20px 18px;
  width: 100%;
}
.coll-card-label {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f0c070;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.coll-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.coll-card-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  color: #f0c070;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* Color backgrounds */
.cb1 {
  background: linear-gradient(160deg, #d4b896 0%, #a06840 100%);
}
.cb2 {
  background: linear-gradient(160deg, #e8b8b8 0%, #c05070 100%);
}
.cb3 {
  background: linear-gradient(160deg, #b8d0e8 0%, #4070a8 100%);
}
.cb4 {
  background: linear-gradient(160deg, #d8e8b8 0%, #6a9040 100%);
}
.cb5 {
  background: linear-gradient(160deg, #e8d0b8 0%, #c08040 100%);
}
.cb6 {
  background: linear-gradient(160deg, #d0b8e8 0%, #8050b0 100%);
}
/* Big card variant */
.coll-grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}
.coll-card.tall {
  aspect-ratio: 0.75;
}

/* ── FULL-WIDTH BANNER ── */
.fw-banner {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  height: 200px;
  cursor: pointer;
  text-decoration: none;
}
.fw-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #8b0000 0%,
    #c0392b 40%,
    #e8654a 70%,
    #f0a070 100%
  );
}
.fw-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
  gap: 40px;
}
.fw-banner-icon {
  font-size: 72px;
  opacity: 0.35;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}
.fw-banner-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 8px;
}
.fw-banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.fw-banner-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.fw-banner-btn {
  display: inline-block;
  margin-top: 16px;
  background: #fff;
  color: #8b0000;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

/* ── PRODUCT CARDS ── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.prd {
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  text-decoration: none;
  display: block;
}
.prd:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: #d8c8a8;
  transform: translateY(-2px);
}
.prd-img {
  aspect-ratio: 1;
  background: #f7f0e6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.prd-img-1 {
  background: linear-gradient(145deg, #faf0e0, #f0d8a8);
}
.prd-img-2 {
  background: linear-gradient(145deg, #ffe8f0, #f8c0d8);
}
.prd-img-3 {
  background: linear-gradient(145deg, #e8f0ff, #c0d8f8);
}
.prd-img-4 {
  background: linear-gradient(145deg, #f0ffe8, #c8eeb0);
}
.prd-img-5 {
  background: linear-gradient(145deg, #fff0e0, #f8d0a0);
}
.prd-img-6 {
  background: linear-gradient(145deg, #f0e8ff, #d8c0f8);
}
.prd-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.22s;
}
.prd:hover .prd-overlay {
  opacity: 1;
}
.prd-ov-btn {
  flex: 1;
  padding: 8px;
  background: #fff;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.prd-ov-btn:hover {
  background: #b8955a;
  color: #fff;
}
.prd-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.prd-badge-sale {
  background: #c0392b;
  color: #fff;
}
.prd-badge-new {
  background: #b8955a;
  color: #fff;
}
.prd-badge-lim {
  background: #1a1a2e;
  color: #fff;
}
.prd-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0d8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.prd-wish svg {
  width: 14px;
  height: 14px;
  stroke: #9a8a78;
  transition: all 0.22s;
}
.prd-wish:hover {
  border-color: #e25555;
}
.prd-wish:hover svg {
  stroke: #e25555;
}
.prd-wish.active {
  border-color: #e25555;
  background: #fff5f5;
}
.prd-wish.active svg {
  stroke: #e25555;
  fill: #e25555;
}
.prd-body {
  padding: 14px 14px 16px;
}
.prd-cat {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b8955a;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 5px;
}
.prd-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prd-stars {
  font-size: 11.5px;
  color: #d4940a;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.prd-stars span {
  font-size: 11px;
  color: #9a8a78;
}
.prd-price {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
  flex-wrap: wrap;
}
.prd-now {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
}
.prd-was {
  font-size: 12px;
  color: #9a8a78;
  text-decoration: line-through;
}
.prd-off {
  font-size: 10px;
  font-weight: 700;
  color: #2d7a4f;
  background: #edf7f1;
  padding: 2px 6px;
  border-radius: 4px;
}
.prd-add-btn {
  width: 100%;
  padding: 9px;
  border: 1.5px solid #d8c8a8;
  background: none;
  color: #4a3a20;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  font-family: "Inter", sans-serif;
}
.prd-add-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* ── ACCESSORIES GRID ── */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.acc-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.acc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}
.acc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.acc-card:hover .acc-card-bg {
  transform: scale(1.06);
}
.acc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 5, 0, 0.72) 0%,
    rgba(10, 5, 0, 0.15) 55%,
    transparent 100%
  );
}
.acc-body {
  position: relative;
  z-index: 2;
  padding: 16px;
}
.acc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.acc-cta {
  font-size: 10.5px;
  color: #f0c070;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 5px;
  display: block;
}
.ac1 {
  background: linear-gradient(145deg, #e8d0a8, #a07840);
}
.ac2 {
  background: linear-gradient(145deg, #c8a8e8, #6840a0);
}
.ac3 {
  background: linear-gradient(145deg, #d8e8c0, #5a8030);
}
.ac4 {
  background: linear-gradient(145deg, #e8c0c8, #a03050);
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.22s;
}
.testi-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.t-stars {
  color: #d4940a;
  font-size: 13px;
  margin-bottom: 8px;
}
.t-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #4a3a28;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.t-product {
  font-size: 10.5px;
  color: #b8955a;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0e0c0;
  border: 2px solid #d4ae78;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 15px;
  color: #b8955a;
  flex-shrink: 0;
}
.t-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.t-loc {
  font-size: 11px;
  color: #9a8a78;
  font-family: "DM Sans", sans-serif;
}
.t-date {
  font-size: 10.5px;
  color: #b0a090;
  font-family: "DM Sans", sans-serif;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── ABOUT DARK SECTION ── */
.about-sect {
  background: #120800;
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0c070;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.astat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
}
.astat-box.span2 {
  grid-column: span 2;
}
.astat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: #f0c070;
  line-height: 1;
}
.astat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "DM Sans", sans-serif;
  margin-top: 5px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.aval {
  border-left: 2px solid rgba(184, 149, 90, 0.45);
  padding-left: 12px;
}
.aval-t {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}
.aval-d {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 40px 0;
  background: #fdf8f0;
  border-top: 1px solid #ede0cc;
  border-bottom: 1px solid #ede0cc;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ede0cc;
  border: 1px solid #ede0cc;
  border-radius: 12px;
  overflow: hidden;
}
.trust-item {
  background: #fdf8f0;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff0d8;
  border: 1px solid #e8cc90;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.trust-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.trust-desc {
  font-size: 12px;
  color: #8a7a68;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}

/* ── FOOTER ── */
footer {
  background: #0e0600;
}
.footer-main {
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.f-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s;
  color: rgba(255, 255, 255, 0.55);
}
.f-soc:hover {
  background: #b8955a;
  border-color: #b8955a;
  color: #fff;
}
.f-soc svg {
  width: 14px;
  height: 14px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 9px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover {
  color: #f0c070;
}
.footer-nl-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 8px;
}
.footer-nl-row {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.footer-nl-row input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Inter", sans-serif;
}
.footer-nl-row input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-nl-row input:focus {
  outline: none;
  border-color: #b8955a;
}
.footer-nl-row button {
  padding: 9px 14px;
  background: #b8955a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  transition: background 0.22s;
}
.footer-nl-row button:hover {
  background: #c8a568;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  font-family: "DM Sans", sans-serif;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-contact-item {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 7px;
  font-family: "DM Sans", sans-serif;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a0a00;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid rgba(184, 149, 90, 0.3);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast-icon {
  color: #f0c070;
  font-size: 14px;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .swrap {
    padding: 0 20px;
  }
  .nav-top,
  .nav-cats-inner {
    padding: 0 20px;
  }
  .hero-text {
    padding: 0 40px;
  }
  .hero-dots {
    left: 40px;
  }
  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .nav-links,
  .nav-cats {
    display: none;
  }
  .hero-slides {
    height: 72vw;
    min-height: 360px;
  }
  .hero-text {
    padding: 0 24px;
  }
  .hero-dots {
    left: 24px;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coll-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .fw-banner {
    height: auto;
  }
  .fw-banner-content {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .fw-banner-icon {
    display: none;
  }
  .cat-pills-inner {
    padding: 0 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .coll-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .acc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-h1 {
    font-size: 28px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 44px 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
