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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #FBF5E9;
  color: #3C2510;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(13, 9, 5, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.brand-name {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 13px;
  font-weight: 700;
  color: #E2C97A;
  letter-spacing: 2px;
}

.brand-tagline {
  display: block;
  font-size: 10px;
  color: #FBF5E9;
  letter-spacing: 2px;
}

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

.nav-link {
  color: #FBF5E9;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-badge {
  background: #B82020;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-veil {
  background: linear-gradient(
    135deg,
    rgba(13,9,5,.85),
    rgba(107,26,26,.55),
    rgba(13,9,5,.8)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 120px 20px 60px;
}

.hero-pre {
  color: #E2C97A;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 90px);
  line-height: 1;
}

.ht-line,
.ht-italic {
  display: block;
}

.ht-italic {
  color: #E2C97A;
  font-style: italic;
}

.hero-sub {
  margin: 20px auto;
  max-width: 650px;
  color: #F2E8D0;
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.hero-pills span {
  border: 1px solid #C9A84C;
  color: #E2C97A;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold,
.btn-outline-w {
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-gold {
  background: #C9A84C;
  color: #0D0905;
}

.btn-outline-w {
  border: 1px solid #fff;
  color: #fff;
}

/* TICKER */
.ticker {
  background: #1A1008;
  color: #C9A84C;
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.intro-strip,
.gallery-sec,
.about-sec,
.contact-sec {
  padding: 90px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.sec-pre {
  color: #C9A84C;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  color: #0D0905;
}

.sec-title em {
  color: #6B1A1A;
}

.sec-desc {
  max-width: 600px;
  margin: 0 auto;
  color: #7A5C42;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.intro-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,.25);
}

.ic-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #6B1A1A;
  font-weight: 700;
}

.ic-lbl {
  font-size: 12px;
  text-transform: uppercase;
  color: #7A5C42;
}

/* PRODUCTS */
.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 18px;
  border: 1px solid #6B1A1A;
  color: #6B1A1A;
  background: transparent;
  border-radius: 30px;
  font-size: 12px;
}

.filter-pill.active,
.filter-pill:hover {
  background: #6B1A1A;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107,26,26,.2);
}

.pc-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,5,.75), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: 0.3s;
}

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

.pc-quick-add {
  width: 100%;
  padding: 11px;
  background: #C9A84C;
  color: #0D0905;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}

.pc-body {
  padding: 18px;
}

.pc-cat {
  color: #C9A84C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: #0D0905;
  margin: 5px 0;
}

.pc-desc {
  font-size: 13px;
  color: #7A5C42;
  margin-bottom: 14px;
}

.pc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #6B1A1A;
}

.btn-atc {
  padding: 8px 14px;
  background: #0D0905;
  color: #C9A84C;
  border: 1px solid #C9A84C;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

/* CART */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
}

.cart-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -430px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1002;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-head,
.cart-drawer-foot {
  padding: 20px;
  background: #1A1008;
  color: #E2C97A;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.ci-img {
  width: 70px;
  height: 80px;
  object-fit: cover;
}

.ci-name {
  font-weight: 700;
  font-size: 13px;
}

.ci-price {
  color: #6B1A1A;
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: #6B1A1A;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}

/* MODAL */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  opacity: 0;
  pointer-events: none;
}

.modal-mask.show {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: 90%;
  max-width: 480px;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  font-size: 20px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-row input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* ABOUT */
/* ABOUT */
.about-sec {
  padding: 100px 0;
  background: #FBF5E9;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-bottom: 90px;
}

.about-img-main {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(107, 26, 26, 0.18);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
}

.about-img-accent {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 52%;
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(107, 26, 26, 0.18);
}

.about-img-accent img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-cert-tag {
  position: absolute;
  left: 0;
  bottom: 95px;
  width: 62%;
  background: #1A1008;
  color: #E2C97A;
  padding: 24px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.about-cert-tag span {
  font-size: 42px;
}

.about-cert-tag strong {
  display: block;
  font-size: 24px;
  color: #E2C97A;
}

.about-cert-tag small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

.about-text .sec-pre {
  color: #C9A84C;
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text .sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 25px;
}

.about-text .sec-title em {
  color: #8C2222;
  font-style: italic;
}

.about-p {
  font-size: 18px;
  line-height: 1.9;
  color: #3C2510;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 34px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(201,168,76,.3);
  border-bottom: 1px solid rgba(201,168,76,.3);
}

.about-stats div {
  flex: 1;
}

.about-stats strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #6B1A1A;
  line-height: 1;
}

.about-stats span {
  display: block;
  font-size: 12px;
  color: #7A5C42;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 12px 40px rgba(107,26,26,.08);
}

.owner-avatar {
  width: 54px;
  height: 54px;
  background: #6B1A1A;
  color: #E2C97A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.owner-card strong {
  display: block;
  color: #0D0905;
  font-size: 15px;
}

.owner-card span {
  color: #7A5C42;
  font-size: 13px;
}

/* ABOUT MOBILE */
@media (max-width: 900px) {
  .about-sec {
    padding: 80px 0;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    padding-bottom: 95px;
  }

  .about-img-main {
    width: 100%;
  }

  .about-img-main img {
    aspect-ratio: 4 / 5;
  }

  .about-img-accent {
    right: 0;
    bottom: 0;
    width: 50%;
    padding: 10px;
  }

  .about-cert-tag {
    left: 0;
    bottom: 105px;
    width: 65%;
    padding: 18px 20px;
  }

  .about-cert-tag span {
    font-size: 34px;
  }

  .about-cert-tag strong {
    font-size: 20px;
  }

  .about-cert-tag small {
    font-size: 13px;
  }

  .about-text .sec-pre {
    font-size: 13px;
    letter-spacing: 7px;
  }

  .about-text .sec-title {
    font-size: 44px;
  }

  .about-p {
    font-size: 17px;
  }

  .about-stats {
    flex-direction: column;
    gap: 18px;
  }
}
/* WHY */
.why-banner {
  background: #1A1008;
  padding: 90px 0;
}

.wb-title {
  text-align: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin-bottom: 40px;
}

.wb-title em {
  color: #E2C97A;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-card {
  background: rgba(255,255,255,.05);
  padding: 28px 18px;
  text-align: center;
  border-radius: 10px;
  color: #F2E8D0;
}

.why-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* CONTACT + FOOTER */
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
}

.cc-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #6B1A1A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.footer {
  background: #0D0905;
  color: #F2E8D0;
}

.footer-top {
  padding: 60px 0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

/* MOBILE */
@media (max-width: 900px) {
  .product-grid,
  .intro-grid,
  .why-grid,
  .contact-grid,
  .footer-grid,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    height: calc(100vh - 80px);
    background: #1A1008;
    flex-direction: column;
    padding: 40px 20px;
    transition: 0.3s;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 52px;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #FBF5E9;
  color: #3C2510;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(13, 9, 5, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.brand-name {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: 13px;
  font-weight: 700;
  color: #E2C97A;
  letter-spacing: 2px;
}

.brand-tagline {
  display: block;
  font-size: 10px;
  color: #FBF5E9;
  letter-spacing: 2px;
}

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

.nav-link {
  color: #FBF5E9;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-badge {
  background: #B82020;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides,
.hero-slide,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-veil {
  background: linear-gradient(
    135deg,
    rgba(13,9,5,.85),
    rgba(107,26,26,.55),
    rgba(13,9,5,.8)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 120px 20px 60px;
}

.hero-pre {
  color: #E2C97A;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 90px);
  line-height: 1;
}

.ht-line,
.ht-italic {
  display: block;
}

.ht-italic {
  color: #E2C97A;
  font-style: italic;
}

.hero-sub {
  margin: 20px auto;
  max-width: 650px;
  color: #F2E8D0;
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.hero-pills span {
  border: 1px solid #C9A84C;
  color: #E2C97A;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold,
.btn-outline-w {
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-gold {
  background: #C9A84C;
  color: #0D0905;
}

.btn-outline-w {
  border: 1px solid #fff;
  color: #fff;
}

/* TICKER */
.ticker {
  background: #1A1008;
  color: #C9A84C;
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}

.ticker-track span {
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.intro-strip,
.gallery-sec,
.about-sec,
.contact-sec {
  padding: 90px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.sec-pre {
  color: #C9A84C;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  color: #0D0905;
}

.sec-title em {
  color: #6B1A1A;
}

.sec-desc {
  max-width: 600px;
  margin: 0 auto;
  color: #7A5C42;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.intro-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,.25);
}

.ic-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #6B1A1A;
  font-weight: 700;
}

.ic-lbl {
  font-size: 12px;
  text-transform: uppercase;
  color: #7A5C42;
}

/* PRODUCTS */
.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 18px;
  border: 1px solid #6B1A1A;
  color: #6B1A1A;
  background: transparent;
  border-radius: 30px;
  font-size: 12px;
}

.filter-pill.active,
.filter-pill:hover {
  background: #6B1A1A;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107,26,26,.2);
}

.pc-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,5,.75), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: 0.3s;
}

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

.pc-quick-add {
  width: 100%;
  padding: 11px;
  background: #C9A84C;
  color: #0D0905;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}

.pc-body {
  padding: 18px;
}

.pc-cat {
  color: #C9A84C;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: #0D0905;
  margin: 5px 0;
}

.pc-desc {
  font-size: 13px;
  color: #7A5C42;
  margin-bottom: 14px;
}

.pc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #6B1A1A;
}

.btn-atc {
  padding: 8px 14px;
  background: #0D0905;
  color: #C9A84C;
  border: 1px solid #C9A84C;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

/* CART */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
}

.cart-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -430px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1002;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-head,
.cart-drawer-foot {
  padding: 20px;
  background: #1A1008;
  color: #E2C97A;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr 28px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.ci-img {
  width: 70px;
  height: 80px;
  object-fit: cover;
}

.ci-name {
  font-weight: 700;
  font-size: 13px;
}

.ci-price {
  color: #6B1A1A;
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: #6B1A1A;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}

/* MODAL */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  opacity: 0;
  pointer-events: none;
}

.modal-mask.show {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: 90%;
  max-width: 480px;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  font-size: 20px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-row input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-main img {
  border-radius: 12px;
}

.about-img-accent {
  margin-top: 20px;
}

.about-img-accent img {
  border-radius: 12px;
}

.about-p {
  margin-bottom: 16px;
  color: #3C2510;
}

.about-stats {
  display: flex;
  gap: 25px;
  margin: 25px 0;
}

.about-stats strong {
  display: block;
  color: #6B1A1A;
  font-size: 28px;
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 10px;
}

.owner-avatar {
  width: 46px;
  height: 46px;
  background: #6B1A1A;
  color: #E2C97A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WHY */
.why-banner {
  background: #1A1008;
  padding: 90px 0;
}

.wb-title {
  text-align: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin-bottom: 40px;
}

.wb-title em {
  color: #E2C97A;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-card {
  background: rgba(255,255,255,.05);
  padding: 28px 18px;
  text-align: center;
  border-radius: 10px;
  color: #F2E8D0;
}

.why-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* CONTACT + FOOTER */
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
}

.cc-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #6B1A1A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.footer {
  background: #0D0905;
  color: #F2E8D0;
}

.footer-top {
  padding: 60px 0;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

/* MOBILE */
@media (max-width: 900px) {
  .product-grid,
  .intro-grid,
  .why-grid,
  .contact-grid,
  .footer-grid,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    height: calc(100vh - 80px);
    background: #1A1008;
    flex-direction: column;
    padding: 40px 20px;
    transition: 0.3s;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 52px;
  }
}

.order-success {
  display: none;
}

.product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-carousel-track::-webkit-scrollbar {
  display: none;
}

.product-carousel-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.product-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(13,9,5,.75);
  color: #C9A84C;
  font-size: 22px;
}

.product-carousel-btn.prev {
  left: 10px;
}

.product-carousel-btn.next {
  right: 10px;
}

.product-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 8;
}

.product-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}

.product-dot.active {
  background: #C9A84C;
}