/* ── CSS Variables ── */
:root {
  --primary: #2c5e3b;
  --primary-dark: #1e4029;
  --primary-light: #dfecd8;
  --secondary: #8b5e3c;
  --bg-color: #f5efe6;
  --light-bg: #ede4d8;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  overflow-x: hidden;
}
@media (max-width: 992px) {
  html { scroll-padding-top: 95px; }
}

body {
  font-family: 'Nunito', sans-serif;
  color: #1a1a1a;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

/* ── Brand ── */
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-decoration: none;
}
.logo-text span { color: var(--secondary); }

/* ── Icon buttons ── */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #555;
  font-size: 1.1rem;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.icon-btn:hover { color: var(--primary); background: var(--primary-light); }

/* ── Top bar ── */
.top-bar {
  background: var(--primary);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Middle header ── */
.middle-header { padding: 10px 0; background: var(--bg-color); border-bottom: 1px solid #e0d8cd; }

/* Navbar layout */
.navbar-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}
.navbar-left { display: flex; align-items: center; }
.navbar-center { display: flex; justify-content: center; align-items: center; }
.navbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 6px; min-width: 38px; }
.navbar-logo-mobile { display: block; }
.navbar-logo-desktop { display: none; }
.navbar-search-col { display: none; }
.navbar-hamburger { display: flex; }
.navbar-cat-nav { display: none; }
.navbar-overlay { z-index: 1040; }
.navbar-drawer {
  width: 85%;
  max-width: 350px;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.navbar-drawer-open { transform: translateX(0); }
.navbar-drawer-item {
  display: flex; align-items: center;
  padding: 14px 20px; font-weight: 700; font-size: 0.85rem;
  color: #333; border-bottom: 1px solid #f5f5f5; text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.navbar-drawer-item:hover { color: var(--primary); background: var(--primary-light); }

@media (min-width: 992px) {
  .navbar-grid { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .navbar-center { justify-content: center; }
  .navbar-logo-mobile { display: none; }
  .navbar-logo-desktop { display: block; }
  .navbar-search-col { display: flex; justify-content: center; width: 100%; }
  .navbar-hamburger { display: none !important; }
  .navbar-cat-nav { display: block !important; }
  .navbar-drawer { display: none !important; }
  .navbar-overlay-js { display: none !important; }
}

/* ── Category nav ── */
.bottom-nav { background: var(--bg-color); border-bottom: 1px solid #e0d8cd; overflow-x: auto; }
.bottom-nav-container { display: flex; justify-content: center; }
.nav-category {
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #555;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-category:hover { color: var(--primary); }
.nav-category.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ── Live search ── */
.search-wrapper { position: relative; width: 100%; max-width: 500px; }
.search-form { position: relative; width: 100%; }
.search-form input {
  width: 100%;
  border-radius: 50px;
  background-color: #f4f4f4;
  border: 2px solid transparent;
  padding: 9px 50px 9px 22px;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
}
.search-form input:focus {
  box-shadow: 0 0 0 4px rgba(44,94,59,0.12);
  border-color: var(--primary);
  background-color: #fff;
}
.search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
.search-form button:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.08); }
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--bg-color);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 1050;
  border: 1px solid #e0d8cd;
  display: none;
}
.search-dropdown.open { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; text-decoration: none; color: inherit;
  border-bottom: 1px solid #f4f4f4; transition: background 0.15s;
}
.search-result-item:hover { background: var(--light-bg); }
.search-result-img {
  width: 44px; height: 44px; border-radius: 8px; overflow: hidden;
  background: #f0f0f0; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { display: block; font-weight: 600; font-size: 0.87rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-cat { display: block; font-size: 0.75rem; color: #888; }
.search-result-price { font-weight: 700; color: var(--primary); white-space: nowrap; font-size: 0.9rem; }
.search-see-all {
  display: block; width: 100%; padding: 13px 16px;
  background: none; border: none; border-top: 1px solid #f0f0f0;
  color: var(--primary); font-weight: 600; font-size: 0.83rem;
  text-align: center; cursor: pointer; transition: background 0.15s; font-family: inherit;
}
.search-see-all:hover { background: var(--primary-light); }

/* ── Sort bar ── */
.sort-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.sort-btn {
  padding: 7px 18px; border-radius: 50px; border: 1.5px solid #e8e8e6;
  background: white; font-family: 'Nunito', sans-serif; font-size: 0.82rem;
  font-weight: 700; color: #666; cursor: pointer; transition: all 0.2s;
}
.sort-btn:hover { border-color: var(--primary); color: var(--primary); }
.sort-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* ── Filter bar ── */
.filter-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-select-wrap {
  position: relative; display: flex; align-items: center;
  background: white; border: 1.5px solid #e8e8e6; border-radius: 50px;
  padding: 0 14px 0 16px; height: 42px; min-width: 200px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.filter-select-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(44,94,59,0.1); }
.filter-select-wrap > i:first-child { color: var(--primary); font-size: 0.82rem; flex-shrink: 0; margin-right: 10px; }
.filter-select-wrap select {
  flex: 1; border: none; background: transparent; font-family: 'Nunito', sans-serif;
  font-size: 0.88rem; font-weight: 700; color: #444; cursor: pointer;
  appearance: none; -webkit-appearance: none; outline: none; padding-right: 24px;
}
.filter-chevron { position: absolute; right: 14px; font-size: 0.7rem; color: #aaa; pointer-events: none; }
.filter-count { font-size: 0.78rem; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 1.5px; margin-left: 4px; }
@media (max-width: 575px) {
  .filter-bar { gap: 8px; }
  .filter-select-wrap { min-width: calc(50% - 4px); flex: 1; }
  .filter-count { width: 100%; text-align: center; margin-left: 0; }
}

/* ── Product card ── */
.product-card {
  border-radius: 16px; overflow: hidden; border: 1px solid #f0f0f0;
  background: white; transition: all 0.3s ease; width: 100%; display: block; text-decoration: none;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.product-img-wrapper { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--light-bg); }
.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-no-img { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; color: var(--primary); opacity: 0.2; font-size: 2rem; }
.product-info { padding: 14px 16px; }
.product-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; color: var(--secondary); text-transform: uppercase; margin-bottom: 4px; }
.product-title { display: block; font-weight: 700; font-size: 0.9rem; color: #1a1a1a; text-decoration: none; line-height: 1.35; margin-bottom: 6px; }
.product-price { font-weight: 800; font-size: 1.05rem; color: var(--primary); }

/* ── Products grid ── */
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 991px) { .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 639px) { .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; } }

/* ── Section header ── */
.styled-section-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 20px 80px; border-radius: 50px; display: block; width: fit-content;
  margin: 0 auto 44px; text-align: center;
  box-shadow: 0 8px 32px rgba(44,94,59,0.28);
}
.styled-section-title { font-size: 2rem; font-weight: 900; letter-spacing: 5px; color: white; margin: 0; text-transform: uppercase; font-family: 'Nunito', sans-serif; }

/* ── Category header ── */
.cat-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 36px; border-bottom: 2px solid #ededeb; gap: 16px;
}
@media (max-width: 639px) { .cat-section-header { flex-direction: column; align-items: flex-start; } }
.cat-eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; color: var(--primary); display: block; margin-bottom: 6px; }
.cat-section-title { font-family: 'Nunito', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; color: #1a1a1a; letter-spacing: -1.5px; line-height: 1; }

/* ── Discover badge ── */
.discover-badge {
  display: inline-block; margin-bottom: 2rem; padding: 16px 48px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 6px; color: white;
  background-color: var(--secondary); box-shadow: 0 8px 28px rgba(107,79,42,0.35);
}

/* ── Bento wide card ── */
.bento-wide-card {
  position: relative; border-radius: 16px; overflow: hidden; display: block; height: 280px; cursor: pointer;
}
.bento-wide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bento-wide-card:hover img { transform: scale(1.04); }
.bento-wide-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.50);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px;
}

/* ── Story section ── */
.story-section { min-height: 100vh; background: #1a1a1a; display: flex; align-items: center; padding: 80px 0; margin-bottom: 80px; }
.story-section-header { margin-bottom: 64px; text-align: center; }
.story-section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; color: var(--primary-light); text-transform: uppercase; margin-bottom: 14px; display: block; }
.story-section-title { font-family: 'Nunito', sans-serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -1.5px; text-transform: uppercase; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }

/* ── Why cards ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 991px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; }
.why-card:hover { transform: translateY(-8px); border-color: rgba(44,94,59,0.5); box-shadow: 0 24px 64px rgba(0,0,0,0.45); }
.why-card-head { padding: 32px 28px 28px; background: linear-gradient(135deg, rgba(44,94,59,0.28) 0%, rgba(18,18,18,0.1) 100%); position: relative; overflow: hidden; }
.why-card-head::after { content: attr(data-num); position: absolute; top: -8px; right: 10px; font-size: 5.5rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; font-family: 'Nunito', sans-serif; pointer-events: none; user-select: none; }
.why-icon { width: 58px; height: 58px; border-radius: 15px; background: rgba(44,94,59,0.35); border: 1px solid rgba(232,242,236,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary-light); transition: background 0.3s, color 0.3s, transform 0.3s; position: relative; z-index: 1; }
.why-card:hover .why-icon { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.1); }
.why-card-body { padding: 24px 28px 32px; }
.why-card-title { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 900; color: white; margin-bottom: 10px; line-height: 1.3; }
.why-card-text { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.85; }

/* ── Store section ── */
.store-section-wrapper { background: #1a1a1a; min-height: 100vh; display: flex; align-items: center; padding: 60px 0; }
.store-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 991px) { .store-section-inner { grid-template-columns: 1fr; gap: 32px; } }
.store-heading { font-family: 'Nunito', sans-serif; font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 900; color: white; margin-bottom: 12px; line-height: 1.1; letter-spacing: -1.5px; text-transform: uppercase; }
.store-details { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.store-detail-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.store-detail-item i { color: var(--primary-light); width: 18px; margin-top: 2px; flex-shrink: 0; }
.store-detail-item a { color: inherit; text-decoration: none; }
.store-detail-item a:hover { color: white; }
.store-map-block { border-radius: 16px; overflow: hidden; height: 320px; }
.store-map-block iframe { width: 100%; height: 100%; border: 0; display: block; }
.story-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 4px; color: var(--primary-light); text-transform: uppercase; margin-bottom: 14px; display: block; }

/* ── Hero swiper ── */
.hero-swiper { position: relative; overflow: hidden; }
.hero-swiper .swiper-slide { display: flex; flex-direction: column; }
@media (max-width: 767px) {
  .hero-swiper .swiper-slide { height: 70vh !important; min-height: 340px !important; }
}
.hero-swiper .swiper-pagination-bullet-active { background: white !important; }
.hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev { color: white !important; }
.hero-caption { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; z-index: 2; }
.hero-caption h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 16px; }
.hero-caption p { font-size: clamp(1rem, 1.8vw, 1.3rem); color: rgba(255,255,255,0.9); max-width: 520px; margin-bottom: 28px; }

/* ── Bento grid ── */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 767px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
.bento-card { position: relative; border-radius: 18px; overflow: hidden; height: 300px; cursor: pointer; display: block; }
@media (max-width: 767px) { .bento-card { height: 180px; } }
.bento-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.bento-card:hover img { transform: scale(1.06); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); display: flex; align-items: flex-end; padding: 20px; }
.bento-label { color: white; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* ── Product description ── */
.product-desc-section { margin-top: 40px; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.product-desc-header { background: #1a1a1a; color: white; padding: 14px 24px; font-weight: 700; font-size: 0.95rem; }
.product-desc-body { background: var(--light-bg); padding: 24px; font-size: 0.95rem; line-height: 1.8; color: #444; }
.buy-box { position: sticky; top: 100px; }
.tag-primary { display: inline-block; padding: 4px 12px; border-radius: 50px; background: var(--primary-light); color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── Footer ── */
.fat-footer { background: #111; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-main-row { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
.footer-social-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.9); text-transform: uppercase; margin-bottom: 18px; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; }
.footer-contact-item i { color: var(--primary-light); width: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-item a:hover { color: white; }
.footer-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-trust-badge { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); font-size: 0.75rem; padding: 6px 12px; border-radius: 50px; display: flex; align-items: center; gap: 6px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Mobile bottom nav ── */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; height: 64px;
  background: var(--bg-color); border-top: 1px solid #e0d8cd;
  display: flex; align-items: center; justify-content: space-around;
  z-index: 1050;
}
@media (min-width: 992px) { .mobile-bottom-nav { display: none; } }
.mobile-bottom-nav .nav-item {
  display: flex; flex-direction: column; align-items: center;
  color: #aaa; font-size: 0.68rem; font-weight: 600; gap: 5px;
  cursor: pointer; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.5px;
  background: none; border: none; padding: 0; text-decoration: none; font-family: inherit;
}
.mobile-bottom-nav .nav-item i { font-size: 1.25rem; transition: transform 0.25s; }
.mobile-bottom-nav .nav-item:hover, .mobile-bottom-nav .nav-item.active { color: var(--primary); }
.mobile-bottom-nav .nav-item:hover i { transform: translateY(-3px); }
.cart-badge { position: relative; }
.cart-badge-count {
  position: absolute; top: -6px; right: -10px;
  background: var(--primary); color: white; font-size: 0.6rem; font-weight: 900;
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 32px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 200;
  box-shadow: 0 4px 20px rgba(44,94,59,0.35);
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }
@media (max-width: 768px) { .back-to-top { bottom: 80px; right: 16px; } }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1a1a; color: white; z-index: 2000;
  padding: 20px; animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-icon-wrap { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.cookie-text p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept { background: var(--primary); color: white; border: none; padding: 8px 20px; border-radius: 50px; font-weight: 700; cursor: pointer; font-size: 0.88rem; font-family: inherit; }
.cookie-btn-decline { background: rgba(255,255,255,0.15); color: white; border: none; padding: 8px 20px; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: 0.88rem; font-family: inherit; }

/* ── Toast ── */
.toast-container { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 3000; pointer-events: none; }
@media (min-width: 992px) { .toast-container { bottom: 24px; } }
.toast {
  background: #1a1a1a; color: white; padding: 12px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(20px); transition: all 0.3s; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Input ── */
.input-field {
  width: 100%; border: 2px solid #e5e7eb; border-radius: 10px;
  padding: 10px 14px; font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: white;
}
.input-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(44,94,59,0.12); }

/* ── Cart table ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: #aaa; padding: 0 0 16px; border-bottom: 2px solid #ededeb; text-align: left; }
.cart-table td { padding: 16px 0; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty button { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid #e8e8e6; background: white; cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.cart-qty button:hover { border-color: var(--primary); color: var(--primary); }
.cart-qty input { width: 40px; text-align: center; border: 1.5px solid #e8e8e6; border-radius: 8px; padding: 4px; font-family: inherit; font-weight: 700; font-size: 0.9rem; }

/* ── Checkout form ── */
.checkout-section { background: white; border-radius: 20px; padding: 32px; border: 1px solid #f0f0f0; box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 6px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid #f0f0f0; border-radius: 12px; cursor: pointer; transition: all 0.2s; }
.payment-option:hover { border-color: var(--primary-light); }
.payment-option input[type=radio]:checked + .payment-option-inner { color: var(--primary); }
.payment-radio:checked ~ .payment-option { border-color: var(--primary); background: var(--primary-light); }

/* ── Order success ── */
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
