/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #faf9f7;
  color: #3d3a36;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ========== TYPOGRAPHY ========== */
.heading-display { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: -0.02em; }
.heading-serif { font-family: 'Playfair Display', serif; font-weight: 600; }
.text-upper { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; font-weight: 500; }

/* ========== MOBILE HEADINGS ========== */
@media (max-width: 768px) {
  h1.heading-display { font-size: 2rem !important; }
  h2.heading-display, .section-title { font-size: 1.5rem !important; }
  h3.heading-display { font-size: 1.2rem !important; }
  .section { padding: 60px 0; }
}

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-muted { color: #8a857e; }
.accent { color: #a06e59; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== STICKY NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s, padding .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a1816;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-logo span { color: #1a1816; font-weight: 300; font-size: 0.85em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a857e;
  transition: color .3s;
  font-weight: 500;
}
.nav-links a:hover { color: #1a1816; }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1a1816;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.nav-cart-count {
  background: #a06e59;
  color: #fff;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.nav-menu-btn {
  display: none;
  background: none;
  color: #1a1816;
  font-size: 1.5rem;
  padding: 4px;
}
/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(250, 249, 247, 0.98);
  z-index: 1001;
  flex-direction: column;
  gap: 32px;
  transition: opacity .4s;
  display: none;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  padding: 80px 20px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #1a1816;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .3s;
}
.mobile-nav-links a:hover { color: #a06e59; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  color: #1a1816;
  font-size: 2rem;
  z-index: 99;
}
.mobile-nav-socials {
  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 32px;
  left: 32px;
}
.mobile-nav-socials a {
  color: #1a1816;
  transition: color .3s;
}
.mobile-nav-socials a:hover { color: #a06e59; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
}

/* ========== 1. HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(181, 36, 42, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 30%, rgba(139, 90, 43, 0.03) 0%, transparent 50%),
              linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(181, 36, 42, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}
.hero-content { animation: fadeUp 1s ease-out 0.3s both; min-width: 0; overflow: hidden; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(181, 36, 42, 0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a06e59;
  margin-bottom: 28px;
  background: rgba(181, 36, 42, 0.04);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #a06e59;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: #1a1816;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: #a06e59;
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: #6a655e;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #a06e59;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 2px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.btn-primary:hover {
  background: #8a5d4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181, 36, 42, 0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border: 1px solid rgba(26, 24, 22, 0.2);
  color: #1a1816;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  border-radius: 2px;
  transition: border-color .3s, color .3s, transform .3s;
  background: transparent;
}
.btn-outline:hover {
  border-color: #a06e59;
  color: #a06e59;
  transform: translateY(-2px);
}
.hero-trust {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.trust-slider {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.trust-slider:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a857e;
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
}
.trust-divider {
  color: #d0cbc4;
  padding: 0;
  flex-shrink: 0;
}
.trust-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a06e59;
  flex-shrink: 0;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1.2s ease-out 0.6s both;
}
.hero-bottle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
  transition: transform .6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.hero-img:hover { transform: scale(1.03); }
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181, 36, 42, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; flex-wrap: nowrap; gap: 10px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    padding: 12px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-bottle { width: 100%; }
  .hero-img { width: 100%; max-height: 350px; object-fit: cover; }
}

/* ========== 2. SOCIAL PROOF BAR ========== */
.proof-bar {
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 40px 0;
  background: #fff;
}
.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a1816;
  font-weight: 700;
}
.proof-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a857e;
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
}
.proof-stars { color: #a06e59; font-size: 1rem; margin-bottom: 4px; letter-spacing: 2px; }

@media (max-width: 600px) {
  .proof-inner { gap: 24px; }
  .proof-divider { display: none; }
}

/* ========== 3. PRODUCTS SECTION ========== */
.products { background: #faf9f7; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a06e59;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #1a1816;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  color: #8a857e;
  max-width: 520px;
  margin: 0 auto 60px;
  font-size: 1rem;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(0.16,1,0.3,1), border-color .5s, box-shadow .5s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 36, 42, 0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image-channel {
  background: #f5f3f0;
}
.product-image-cigar {
  background: #f5f3f0;
}
.product-img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  font-weight: 600;
  z-index: 2;
}
.tag-signature {
  background: #a06e59;
  color: #fff;
  border: none;
}
.tag-reserve {
  background: #fff;
  color: #1a1816;
  border: none;
}
.quick-view {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 10px 24px;
  background: rgba(26, 24, 22, 0.9);
  border: none;
  z-index: 2;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  transition: opacity .4s, transform .4s;
  font-weight: 500;
}
.product-card:hover .quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-info {
  padding: 28px 28px 32px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a1816;
  margin-bottom: 6px;
  font-weight: 600;
}
.product-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a857e;
  margin-bottom: 14px;
}
.product-desc {
  font-size: 0.9rem;
  color: #6a655e;
  margin-bottom: 18px;
  line-height: 1.7;
}
.product-notes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.note-tag {
  padding: 4px 12px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  font-size: 0.7rem;
  color: #6a655e;
  letter-spacing: 0.05em;
}
.product-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1816;
  font-weight: 600;
  margin-bottom: 14px;
}
.product-size {
  font-size: 0.7rem;
  color: #8a857e;
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.btn-add {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(181, 36, 42, 0.35);
  color: #a06e59;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 2px;
  transition: background .3s, color .3s, transform .3s;
  width: 100%;
  text-align: center;
}
.btn-add:hover {
  background: #a06e59;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .product-image { }
}

/* ========== 4. FRAGRANCE EXPERIENCE ========== */
.experience {
  background: linear-gradient(180deg, #f5f3f0 0%, #faf9f7 50%, #f5f3f0 100%);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(181, 36, 42, 0.03) 0%, transparent 50%);
}
.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.experience-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(181, 36, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.experience-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.04);
}
.experience-circle::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 36, 42, 0.05) 0%, transparent 70%);
}
.experience-img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}
.exp-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a06e59;
  margin-bottom: 16px;
}
.exp-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #1a1816;
  margin-bottom: 24px;
  line-height: 1.2;
}
.exp-text {
  color: #6a655e;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}
.exp-qualities {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}
.quality { text-align: center; }
.quality-line {
  width: 40px;
  height: 2px;
  background: #a06e59;
  margin: 0 auto 10px;
}
.quality-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #3d3a36;
}

@media (max-width: 768px) {
  .experience-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .experience-visual { order: -1; }
  .experience-circle { width: 260px; height: 260px; }
  .exp-qualities { justify-content: center; }
}

/* ========== 5. BRAND STORY ========== */
.brand-story {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-year {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: #a06e5950;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.story-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #1a1816;
  margin-bottom: 24px;
  line-height: 1.2;
}
.story-text {
  color: #6a655e;
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  background: #a06e59;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1a1816;
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: #8a857e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-year { font-size: 4rem; }
}

/* ========== 6. WHY CHOOSE US ========== */
.why-us { background: #faf9f7; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 40px 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 6px;
  text-align: center;
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
.benefit-card:hover {
  border-color: rgba(181, 36, 42, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(181, 36, 42, 0.06);
  color: #a06e59;
  font-size: 1.2rem;
}
.benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #1a1816;
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 0.85rem;
  color: #8a857e;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ========== 7. REVIEWS ========== */
.reviews {
  background: linear-gradient(180deg, #f5f3f0, #faf9f7, #f5f3f0);
  overflow: hidden;
}
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.reviews-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
.review-slide {
  width: 33.333%;
  min-width: 33.333%;
  max-width: 33.333%;
  flex-shrink: 0;
  padding: 0 12px;
  box-sizing: border-box;
}
.review-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 6px;
  transition: border-color .4s, box-shadow .4s;
  height: 100%;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.review-card:hover {
  border-color: rgba(181, 36, 42, 0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.review-stars { color: #a06e59; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 0.88rem;
  color: #5a5550;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.review-author { font-size: 0.8rem; color: #1a1816; font-weight: 500; }
.review-product { font-size: 0.7rem; color: #8a857e; margin-top: 2px; }
.review-verified {
  font-size: 0.65rem;
  color: #2a7a4a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.reviews-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d9d3cc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #5a5650;
}
.reviews-nav-btn:hover { border-color: #a06e59; color: #a06e59; }
.reviews-dots {
  display: flex;
  gap: 8px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d3cc;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.reviews-dot.active { background: #a06e59; transform: scale(1.3); }

@media (max-width: 1024px) {
  .review-slide { width: 50%; min-width: 50%; max-width: 50%; }
}
@media (max-width: 600px) {
  .review-slide { width: 100%; min-width: 100%; max-width: 100%; padding: 0 8px; }
}

/* ========== 8. URGENCY / OFFER ========== */
.offer {
  background: linear-gradient(135deg, #1a1210 0%, #2a1a18 50%, #1a1210 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181, 36, 42, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.offer-content { position: relative; z-index: 1; }
.offer-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a06e59;
  margin-bottom: 16px;
}
.offer-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.offer-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.offer-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.timer-block { text-align: center; }
.timer-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.timer-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ========== 9. NEWSLETTER ========== */
.newsletter {
  background: #faf9f7;
  text-align: center;
}
.newsletter-box {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #1a1816;
  margin-bottom: 12px;
  line-height: 1.2;
}
.newsletter-sub {
  color: #8a857e;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  color: #1a1816;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .3s;
}
.newsletter-input::placeholder { color: #b0aba3; }
.newsletter-input:focus { border-color: rgba(181, 36, 42, 0.4); }
.newsletter-privacy {
  font-size: 0.7rem;
  color: #b0aba3;
  margin-top: 16px;
}

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
}

/* ========== ORDER TRACKING ========== */
.tracking-section {
  background: #1a1816;
  padding: 80px 0;
}
.tracking-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.tracking-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.tracking-sub {
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.tracking-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 0;
}
.tracking-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .3s;
}
.tracking-input::placeholder { color: rgba(255,255,255,0.35); }
.tracking-input:focus { border-color: #a06e59; }
.tracking-result {
  margin-top: 28px;
  text-align: left;
  display: none;
}
.tracking-result.visible { display: block; }
.tracking-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px;
}
.tracking-order-num {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a06e59;
  font-weight: 600;
  margin-bottom: 16px;
}
.tracking-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.tracking-row:last-child { border-bottom: none; }
.tracking-label { color: rgba(255,255,255,0.5); }
.tracking-value { color: #fff; font-weight: 500; }
.tracking-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.tracking-badge-pending { background: rgba(212,136,15,0.2); color: #f0b429; }
.tracking-badge-confirmed { background: rgba(46,125,50,0.2); color: #66bb6a; }
.tracking-badge-shipped { background: rgba(21,101,192,0.2); color: #42a5f5; }
.tracking-badge-delivered { background: rgba(0,105,92,0.2); color: #4db6ac; }
.tracking-badge-cancelled { background: rgba(198,40,40,0.2); color: #ef5350; }
.tracking-items {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tracking-items-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.tracking-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.7);
}
.tracking-error {
  color: #ef5350;
  font-size: 0.88rem;
  margin-top: 20px;
  display: none;
}
.tracking-error.visible { display: block; }
@media (max-width: 500px) {
  .tracking-form { flex-direction: column; }
  .tracking-card { padding: 20px; }
}

/* ========== 10. FOOTER ========== */
.footer {
  padding: 60px 0 30px;
  background: #1a1816;
  color: #e0ddd8;
  border-top: 2px dashed #e0ddd855;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand-name span { color: #fff; font-weight: 300; font-size: 0.85em; }
.footer-brand-desc {
  font-size: 0.85rem;
  color: #8a857e;
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.85rem;
  color: #8a857e;
  transition: color .3s;
}
.footer-links a:hover { color: #a06e59; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #8a857e;
  transition: border-color .3s, color .3s;
}
.social-link:hover {
  border-color: #a06e59;
  color: #a06e59;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: #5a5550; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: #5a5550; transition: color .3s; }
.footer-legal a:hover { color: #8a857e; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ========== PRODUCT PAGE MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  overflow-y: auto;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: block; }
.modal {
  max-width: 960px;
  margin: 60px auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
  animation: fadeUp 0.5s ease-out;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #1a1816;
  font-size: 1.8rem;
  background: white !important;
  padding: 8px !important;
  transition: color .3s;
  z-index: 99;
  border-radius: 50px;
  line-height: 100% !important;
}
.modal-close:hover { color: #a06e59; }
.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.modal-image {
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal-image-channel { background: radial-gradient(ellipse at center, rgba(181,36,42,0.06) 0%, #f5f3f0 70%); }
.modal-image-cigar { background: radial-gradient(ellipse at center, rgba(139,90,43,0.06) 0%, #f5f3f0 70%); }
.modal-img {
  max-height: 400px;
  width: 100% !important;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  transition: opacity .4s;
}
.modal-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 32px 0px;
  width: 95%;
}
.modal-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.modal-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity .3s, border-color .3s;
}
.modal-thumb:hover { opacity: 0.8; }
.modal-thumb.active {
  border-color: #a06e59;
  opacity: 1;
}
.modal-details { padding: 48px 40px; }
.modal-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1a1816;
  margin-bottom: 6px;
}
.modal-product-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a857e;
  margin-bottom: 16px;
}
.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.modal-rating-stars { color: #a06e59; font-size: 0.85rem; }
.modal-rating-count { font-size: 0.8rem; color: #8a857e; }
.modal-story {
  color: #6a655e;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.notes-section { margin-bottom: 28px; }
.notes-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a1816;
  margin-bottom: 14px;
  font-weight: 600;
}
.notes-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.note-group { flex: 1; min-width: 100px; }
.note-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a06e59;
  margin-bottom: 6px;
}
.note-value { font-size: 0.8rem; color: #6a655e; }
.modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a1816;
  margin-bottom: 20px;
}
.modal-add-btn {
  width: 100%;
  padding: 18px;
  background: #a06e59;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 2px;
  transition: background .3s;
  margin-bottom: 12px;
}
.modal-add-btn:hover { background: #8a5d4a; }
.modal-benefits {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.modal-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #8a857e;
}
.modal-benefit svg { color: #a06e59; }

@media (max-width: 768px) {
  .modal { margin: 20px; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-image { min-height: 300px; }
  .modal-details { padding: 32px 24px; }
  .modal-img {
    max-height: 400px;
    width: 100% !important;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: opacity .4s;
    border-radius: 8px;
  }
}

/* ========== STICKY COUNTDOWN (mobile) ========== */
.sticky-countdown {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1816;
  padding: 10px 20px;
  z-index: 500;
  justify-content: space-between;
  align-items: center;
}
.sticky-countdown.visible { display: flex; }
.sticky-countdown-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a06e59;
  font-weight: 600;
}
.sticky-countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sticky-timer-block {
  text-align: center;
  color: #fff;
}
.sticky-timer-block span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.sticky-timer-block small {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a857e;
  margin-left: 2px;
}
.sticky-timer-sep {
  color: #a06e59;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 2px;
}
.sticky-countdown-btn {
  padding: 8px 20px;
  background: #a06e59;
  color: #fff;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 2px;
}

/* ========== FAQ ========== */
.faq { background: #fff; border-top: 1px solid rgba(0,0,0,0.04); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1816;
  cursor: pointer;
  transition: color .3s;
  gap: 16px;
}
.faq-question:hover { color: #a06e59; }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 1.1rem;
  color: #8a857e;
  transition: transform .3s, border-color .3s, color .3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: #a06e59;
  color: #a06e59;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.16, 1, 0.3, 1), padding .3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: #6a655e;
  line-height: 1.8;
}

/* ========== CART SIDEBAR ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1816;
  font-weight: 700;
}
.cart-count-label {
  font-size: 0.75rem;
  color: #8a857e;
  font-weight: 400;
  margin-left: 8px;
}
.cart-close-btn {
  background: none;
  color: #1a1816;
  font-size: 1.6rem;
  padding: 4px;
  transition: color .3s;
}
.cart-close-btn:hover { color: #a06e59; }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.2;
}
.cart-empty-text {
  font-size: 0.95rem;
  color: #8a857e;
  margin-bottom: 8px;
}
.cart-empty-sub {
  font-size: 0.8rem;
  color: #b0aba3;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  animation: fadeUp .3s ease-out;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f3f0;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #1a1816;
  font-weight: 600;
  margin-bottom: 2px;
}
.cart-item-type {
  font-size: 0.7rem;
  color: #8a857e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #1a1816;
  font-weight: 600;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  background: none;
  color: #1a1816;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.cart-qty button:hover { background: rgba(0,0,0,0.04); }
.cart-qty-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #1a1816;
  font-weight: 500;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
}
.cart-item-remove {
  background: none;
  color: #b0aba3;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  padding: 0;
  transition: color .3s;
  align-self: flex-start;
}
.cart-item-remove:hover { color: #a06e59; }
.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #faf9f7;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cart-subtotal-label {
  font-size: 0.8rem;
  color: #8a857e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-subtotal-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1816;
  font-weight: 700;
}
.cart-shipping-note {
  font-size: 0.7rem;
  color: #8a857e;
  margin-bottom: 18px;
}
.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: #a06e59;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 2px;
  transition: background .3s;
  margin-bottom: 10px;
}
.cart-checkout-btn:hover { background: #8a5d4a; }
.cart-continue {
  width: 100%;
  padding: 12px;
  background: none;
  border: 1px solid rgba(0,0,0,0.1);
  color: #1a1816;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 2px;
  transition: border-color .3s;
}
.cart-continue:hover { border-color: #a06e59; color: #a06e59; }

/* ========== CHECKOUT VIEW (inside cart sidebar) ========== */
.checkout-view { display: none; }
.checkout-view.active { display: flex; flex-direction: column; height: 100%; }
.cart-main-view { display: flex; flex-direction: column; height: 100%; }
.cart-main-view.hidden { display: none; }
.checkout-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.checkout-back {
  background: none;
  color: #1a1816;
  font-size: 1.2rem;
  padding: 4px;
  transition: color .3s;
}
.checkout-back:hover { color: #a06e59; }
.checkout-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a1816;
  font-weight: 700;
}
.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.checkout-order-summary {
  padding: 16px;
  background: #f5f3f0;
  border-radius: 4px;
  margin-bottom: 24px;
}
.checkout-summary-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a857e;
  margin-bottom: 12px;
  font-weight: 600;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #3d3a36;
  margin-bottom: 6px;
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a1816;
  font-weight: 700;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.checkout-section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a06e59;
  margin-bottom: 14px;
  font-weight: 600;
}
.checkout-field {
  margin-bottom: 14px;
}
.checkout-field label {
  display: block;
  font-size: 0.75rem;
  color: #6a655e;
  margin-bottom: 6px;
  font-weight: 500;
}
.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  color: #1a1816;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .3s;
}
.checkout-field input:focus,
.checkout-field textarea:focus,
.checkout-field select:focus {
  border-color: #a06e59;
}
.checkout-field textarea {
  resize: vertical;
  min-height: 70px;
}
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #faf9f7;
}
.checkout-place-btn {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border-radius: 2px;
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.checkout-place-btn:hover { background: #1da851; }
.checkout-place-btn svg { flex-shrink: 0; }
.checkout-note {
  font-size: 0.7rem;
  color: #8a857e;
  margin-top: 10px;
  text-align: center;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #faf9f7; }
::-webkit-scrollbar-thumb { background: rgba(181, 36, 42, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(181, 36, 42, 0.45); }
