@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #1A3A0A;
  --sage: #3E6B32;
  --sage-light: #527A45;
  --gold: #C8912A;
  --gold-light: #E0AE4A;
  --gold-pale: #F5E6C3;
  --cream: #FAF5EA;
  --warm-white: #FFFDF6;
  --brown: #6B4A18;
  --brown-light: #9C7038;
  --text-dark: #1E1208;
  --text-mid: #4A3218;
  --text-light: #8B7050;
  --border: #E4D9C4;
  --shadow: rgba(26,58,10,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }
input, select, textarea { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ─── HEADER ─── */
.site-header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: var(--forest);
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.logo-text span { color: #fff; font-weight: 400; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  background: var(--gold);
  border: none;
  color: var(--forest);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.cart-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.cart-count {
  background: var(--forest);
  color: var(--gold-light);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 22px; padding: 4px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 60px 32px 28px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-text { font-size: 26px; }
.footer-brand p {
  margin-top: 12px; font-size: 13.5px;
  line-height: 1.7; max-width: 280px;
  color: rgba(255,255,255,0.55);
}
.footer-cert {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  background: rgba(200,145,42,0.18);
  color: var(--gold-light);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.4);
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,145,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--gold-light);
}

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--gold);
}

/* ─── PAGE WRAPPER ─── */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ─── PRODUCT CARD ─── */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow);
}
.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.product-card-body { padding: 18px 20px 20px; }
.product-card-cat {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 5px;
}
.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.product-card-desc {
  font-size: 12.5px; color: var(--text-light);
  margin-bottom: 14px; line-height: 1.5;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--forest);
}
.product-price span {
  font-size: 13px; font-weight: 400;
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: line-through;
  margin-left: 6px;
}
.add-cart-btn {
  background: var(--forest);
  color: var(--gold-light);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.add-cart-btn:hover {
  background: var(--gold);
  color: var(--forest);
  transform: scale(1.1);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 32px 0;
  font-size: 12.5px; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--forest);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold-light); font-size: 18px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .header-inner { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-wrap { padding: 0 20px; }
  .breadcrumb { padding: 14px 20px 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  background: var(--forest);
  padding: 0 20px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.82);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px; font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: none; }
