@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold:    #D4A017;
  --gold-lt: #F5C842;
  --brown:   #3B1F0A;
  --green:   #3A5A2C;
  --green-lt:#5A8A48;
  --cream:   #FDF8EE;
  --white:   #FFFFFF;
  --text:    #2A1A08;
  --shadow:  rgba(59,31,10,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--brown);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: #f0e0c0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { background: var(--gold); color: var(--brown); }

.nav-cart {
  position: relative;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.nav-cart:hover { transform: scale(1.1); }

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #d32f2f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold-lt);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a0d00 0%, #3B1F0A 45%, #1d3a12 100%);
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(90,138,72,0.12) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-logo {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 32px;
  animation: floatBee 4s ease-in-out infinite;
}

@keyframes floatBee {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)); }

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 100px;
  padding: 6px 18px;
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.hero p {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 640px;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--brown);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
  transition: all 0.25s;
}

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,160,23,0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

.hero-stats {
  position: relative;
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold-lt);
  font-weight: 900;
}

.hero-stat span { color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ─── SEKCJE OGÓLNE ─── */
.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt { background: var(--brown); }
.section-alt .section { /* unchanged */ }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.light { color: #fff; }

.section-sub {
  color: #6b5840;
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 52px;
}

.section-sub.light { color: rgba(255,255,255,0.7); }

/* ─── ACHIEVEMENT STRIP ─── */
.achievements-strip {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.achievements-strip::before, .achievements-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}

.achievements-strip::before { left: 0; background: linear-gradient(to right, var(--gold), transparent); }
.achievements-strip::after  { right: 0; background: linear-gradient(to left, var(--gold), transparent); }

.achievements-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}

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

.achievements-track .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: var(--brown);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  border-right: 2px solid rgba(59,31,10,0.2);
}

.achievements-track .item .icon { font-size: 1.3rem; }

/* ─── AWARDS GRID ─── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.award-card {
  background: linear-gradient(135deg, #fff8e8, #fff);
  border: 2px solid rgba(212,160,23,0.25);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.award-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(212,160,23,0.15), transparent);
  border-radius: 50%;
}

.award-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(59,31,10,0.15); }

.award-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.award-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.award-card p { color: #7a5c35; font-size: 0.88rem; }

.award-ribbon {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(59,31,10,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(59,31,10,0.18); }

.product-img {
  height: 220px;
  background: linear-gradient(135deg, #f5e6c0, #e8d09a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.product-body { padding: 20px; }

.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.product-body p { color: #7a5c35; font-size: 0.88rem; margin-bottom: 16px; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
}

.product-price small { font-size: 0.75rem; color: #9a7a5a; font-family: 'Lato', sans-serif; font-weight: 400; display: block; }

.btn-add {
  background: var(--brown);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-add:hover { background: var(--gold); color: var(--brown); transform: scale(1.05); }

/* ─── CART SIDEBAR ─── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.25);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  background: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.cart-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

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

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0e8d8;
}

.cart-item-emoji { font-size: 2.2rem; flex-shrink: 0; }

.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.95rem; color: var(--brown); }
.cart-item-info span { font-size: 0.82rem; color: #9a7a5a; }

.cart-item-price { font-weight: 700; color: var(--brown); }

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: #d32f2f; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  background: #f5e8d0;
  border: none;
  border-radius: 50%;
  width: 26px; height: 26px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s;
}

.cart-item-qty button:hover { background: var(--gold); }

.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid #f0e8d8;
  background: #fdf8ee;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total-row strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--brown); }
.cart-total-row .total-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--brown);
  border: none;
  border-radius: 50px;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-checkout:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ─── GALERIA ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e8d09a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.03); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(59,31,10,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 2rem;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── FOOTER ─── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 72px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.9); }

.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-lt);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-lt); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 0;
}

.footer-social a:hover { background: var(--gold); color: var(--brown); }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-certs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-lt);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

/* ─── STRIPE MODAL ─── */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-overlay.open { display: flex; }

.checkout-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 6px;
}

.checkout-modal .subtitle { color: #9a7a5a; font-size: 0.9rem; margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8d8c0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

#stripe-card-element {
  padding: 12px 16px;
  border: 2px solid #e8d8c0;
  border-radius: 10px;
  min-height: 44px;
}

.order-summary {
  background: #fdf8ee;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid #f0e0c0;
}

.order-summary h4 { color: var(--brown); margin-bottom: 10px; font-size: 0.9rem; }
.order-line { display: flex; justify-content: space-between; font-size: 0.88rem; color: #7a5c35; padding: 4px 0; }
.order-line.total { font-weight: 700; color: var(--brown); border-top: 1px solid #e0c8a0; margin-top: 8px; padding-top: 8px; }

.shipping-note {
  font-size: 0.8rem;
  color: #9a7a5a;
  text-align: center;
  margin-bottom: 16px;
}

#payment-message { color: #d32f2f; font-size: 0.88rem; margin-top: 12px; text-align: center; }
#payment-success { color: var(--green); font-size: 0.95rem; margin-top: 12px; text-align: center; display: none; }

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

.about-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f5e6c0, #e8d09a);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  box-shadow: 16px 16px 0 rgba(212,160,23,0.25);
}

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

.facts-list { list-style: none; margin-top: 24px; }
.facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0e0c0;
  font-size: 0.95rem;
  color: #5a3d1e;
}

.facts-list li::before {
  content: '🐝';
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; width: 100%; background: var(--brown); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── PAGE HEROES (sub-pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, #2d1506 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '🍯';
  position: absolute;
  right: -30px; bottom: -20px;
  font-size: 10rem;
  opacity: 0.05;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

.page-hero .gold-line {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE OVERRIDES  (v2 – with real logos)
   ═══════════════════════════════════════════════════════════ */

/* ── NAV logo sizing ── */
.nav-logo img {
  height: 52px !important;
  width: auto;
  object-fit: contain;
  /* logo is on white bg – slight warm overlay on dark nav */
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 4px 8px;
}

/* ── Sticky nav height fix ── */
.nav-inner { height: 72px; }

/* ── Mobile: full-width drawer nav ── */
@media (max-width: 768px) {
  .nav-inner { height: 64px; padding: 0 16px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--brown);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 800;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-links a.active { background: var(--gold); color: var(--brown); }

  .hamburger { display: block; font-size: 1.6rem; }
  .nav-cart { width: 42px; height: 42px; font-size: 1.1rem; }
}

/* ── Hero split – mobile stack ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr !important; min-height: auto !important; }
  .hero-left { padding: 52px 24px 36px !important; }
  .hero-left::after { display: none !important; }
  .hero-right { height: 260px !important; }
  .hero-stats { position: static !important; flex-wrap: wrap; }
  .hero-stat { padding: 12px 16px; }
}

/* ── Two brands – stack on mobile ── */
@media (max-width: 680px) {
  .two-brands { grid-template-columns: 1fr !important; }
  .brand-half { padding: 52px 28px !important; }
}

/* ── About split ── */
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr !important; }
  .about-split-img { height: 280px; }
  .about-split-text { padding: 44px 24px !important; }
}

/* ── Awards row ── */
@media (max-width: 700px) {
  .awards-row { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 440px) {
  .awards-row { grid-template-columns: 1fr !important; }
}

/* ── Products featured ── */
@media (max-width: 700px) {
  .products-featured { grid-template-columns: 1fr !important; }
}

/* ── Timeline ── */
@media (max-width: 860px) {
  .timeline::before { left: 20px !important; }
  .tl-item, .tl-item:nth-child(even) {
    justify-content: flex-start !important;
    padding: 0 0 0 76px !important;
  }
  .tl-dot { left: 20px !important; top: 20px !important; width: 40px !important; height: 40px !important; font-size: 1.2rem !important; }
  .tl-card { max-width: 100% !important; }
  .tl-item:nth-child(even) .tl-card { border-left: 5px solid var(--green-lt) !important; border-right: none !important; }
}

/* ── Certs big ── */
@media (max-width: 700px) {
  .certs-grid-big { grid-template-columns: 1fr !important; }
  .cert-big { padding: 28px 22px !important; }
}

/* ── Cart drawer – full width on small screens ── */
@media (max-width: 480px) {
  .cart-drawer { width: 100vw !important; }
  .checkout-modal { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr !important; }
}

/* ── Footer ── */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Shop layout ── */
@media (max-width: 820px) {
  .shop-layout { grid-template-columns: 1fr !important; }
  .shop-sidebar { position: static !important; }
}

/* ── Gallery ── */
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── General section padding on mobile ── */
@media (max-width: 600px) {
  .section { padding: 52px 16px !important; }
  .page-hero { padding: 60px 16px 48px !important; }
  h2.section-title { font-size: 1.8rem !important; }
}

/* ── Pillars ── */
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr !important; }
  .pillar { border-right: none !important; border-bottom: 1px solid #f0e0c0; padding: 36px 24px !important; }
}

/* ── Touch targets ── */
@media (max-width: 768px) {
  .btn-primary, .btn-outline, .btn-add, .btn-checkout {
    min-height: 48px;
    padding: 14px 24px;
  }
  .add-to-cart { min-height: 48px; }
}
