/* Styles extracted from index.html */
/* ════════════════════════════════════════════
   ROOT & RESET
════════════════════════════════════════════ */
/* Една спокойна фермерска палитра: бледо, топло, ясно четими текстове */
:root {
  --bg: #faf8f6;
  --bg-alt: #f2efe9;
  --pale: #faf8f6;
  --cream: #f2efe9;
  --warm-white: #f2efe9;
  --olive: #7d6e62;
  --olive-light: #9a8b7d;
  --stone: #8a8076;
  --text: #2c2825;
  --text-dark: #2c2825;
  --charcoal: #2c2825;
  --accent: #a89478;
  --terracotta: #a89478;
  --terracotta-light: #c2af96;
  --olive-dark: #faf8f6;
  --border: rgba(125,110,98,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}
html, body { margin: 0; padding: 0; min-height: 100%; }

/* ════ NOISE TEXTURE OVERLAY ════ */
body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(135deg, #faf8f6 0%, #f5f2ee 35%, #f2efe9 70%, #faf8f6 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* SVG noise injected via pseudo-element on html */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ════ BACK BUTTON (global) ════ */
.back-btn {
  display: none;
  align-items: center; gap: 0.5rem;
  background: none; border: none;
  color: var(--olive); cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0; margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--terracotta); }
.back-btn svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  z-index: 200;
  padding-top: max(0.85rem, env(safe-area-inset-top, 0));
  padding-right: max(2rem, env(safe-area-inset-right, 0));
  padding-bottom: 0.85rem;
  padding-left: max(2rem, env(safe-area-inset-left, 0));
  background: rgba(252,251,250,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.35s ease, border-radius 0.35s ease, background 0.35s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(107,93,82,0.08);
  border-bottom-color: var(--border);
  border-radius: 0 0 16px 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
  transition: transform 0.2s ease;
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; background: var(--olive); position: relative;
  box-shadow: 0 2px 12px rgba(107,93,82,0.25);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.nav-logo-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nav-logo-icon .nav-logo-fallback {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 700; color: var(--cream);
}
.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 4px 16px rgba(107,93,82,0.3);
  transform: scale(1.03);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text strong { font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--text); letter-spacing: 0.02em; }
.nav-logo-text span { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--charcoal);
  font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; transition: color 0.2s ease; position: relative;
  -webkit-font-smoothing: antialiased;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.25s ease;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(145deg, var(--olive-light), var(--olive)) !important;
  color: var(--cream) !important; padding: 0.55rem 1.35rem !important;
  border-radius: 8px !important; box-shadow: 0 2px 12px var(--border) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--olive) !important; color: var(--cream) !important;
  box-shadow: 0 4px 16px rgba(107,93,82,0.2) !important;
  transform: translateY(-1px);
}

.nav-login {
  font-size: 0.84rem; color: var(--stone); margin-left: 0.5rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-login:hover { color: var(--olive); }
.nav-login::after { display: none; }
.nav-active { color: var(--olive); font-weight: 700; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none; border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-hamburger:hover { background: rgba(100,84,68,0.1); }
.nav-hamburger span {
  width: 22px; height: 2px; background: var(--charcoal); display: block;
  transition: all 0.3s ease; border-radius: 1px;
}
.mobile-menu {
  display: none; position: fixed; inset: 0;
  top: calc(72px + env(safe-area-inset-top, 0));
  z-index: 150;
  background: rgba(252,251,250,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.15rem; font-family: 'Lato', sans-serif;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 0;
  text-align: center;
  transition: color 0.2s ease;
  -webkit-font-smoothing: antialiased;
}
.mobile-menu a:hover { color: var(--olive); }
.mobile-menu-login {
  font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stone);
  margin-top: 1rem; padding-top: 1rem;
  text-align: center;
}
.mobile-menu-login:hover { color: var(--olive); }

/* Back to top – долен десен ъгъл */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 180;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(145deg, var(--olive-light), var(--olive));
  color: var(--cream); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(107,93,82,0.25);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.back-to-top.visible {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(107,93,82,0.35);
  background: var(--olive);
}
.back-to-top:active { transform: translateY(-1px); }
.back-to-top svg { width: 22px; height: 22px; }

/* ════════════════════════════════════════════
   PAGES SYSTEM
════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }
#main-site { display: block; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.35) 100%),
    url('/uploads/hero%20image/hero%20image.png') center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem; position: relative;
}
.hero-badge {
  background: rgba(107,93,82,0.9); color: var(--cream);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 20px; margin-bottom: 1.5rem;
  display: inline-block; animation: fadeUp 0.8s ease both;
}
/* Само текстовете в hero – винаги бели за добра четимост */
#hero #heroBadge { color: #fff !important; }
#hero #heroTitle,
#hero #heroTitle em { color: #fff !important; }
#hero #heroSubtitle { color: #fff !important; }
.hero h1 {
  font-size: clamp(2.2rem, 7vw, 5rem); color: #fff; line-height: 1.15;
  max-width: 800px; margin-bottom: 1.2rem; animation: fadeUp 0.8s 0.15s ease both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.35);
}
.hero h1 em { color: #fff; font-style: italic; opacity: 0.95; }
.hero p {
  color: #fff; font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both; font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; animation: fadeUp 0.8s 0.45s ease both; }
.btn-primary {
  background: var(--olive); color: var(--cream);
  padding: 0.9rem 2.2rem; border-radius: 6px; text-decoration: none;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s; display: inline-block; cursor: pointer; border: none;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-primary:hover { background: var(--olive-light); transform: translateY(-2px); }

.btn-youtube {
  background: #e62117; color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 6px; text-decoration: none;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s; display: inline-block; border: none;
}
.btn-youtube:hover { background: #cc1a12; color: #fff; transform: translateY(-2px); }

/* Назад към сайта (product.html, products.html) */
.nav-back-product { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--olive); font-weight: 700; font-size: 0.9rem; text-decoration: none; line-height: 1; padding: 0.25rem 0; }
.nav-back-product svg { flex-shrink: 0; display: block; }
.nav-back-product:hover { color: var(--accent); }

.btn-outline {
  border: 2px solid rgba(232,227,220,0.9); color: var(--cream);
  padding: 0.9rem 2.2rem; border-radius: 6px; text-decoration: none;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; transition: all 0.2s; display: inline-block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.btn-outline:hover { background: rgba(232,227,220,0.2); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--cream); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ════════════════════════════════════════════
   SEASONAL CALENDAR
════════════════════════════════════════════ */
#calendar { background: linear-gradient(135deg, #faf8f6 0%, #f5f2ee 50%, #f2efe9 100%); overflow: hidden; }
.calendar-inner { display: flex; align-items: stretch; }
.calendar-label {
  background: var(--olive); color: var(--cream); padding: 1.2rem 1.5rem;
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Playfair Display', serif; flex-shrink: 0;
}
.calendar-track-wrap { position: relative; flex: 1; display: flex; align-items: stretch; min-width: 0; }
.cal-arrow {
  position: absolute; top: 0; bottom: 0; width: 44px; z-index: 2;
  background: rgba(0,0,0,0.06); border: none; cursor: pointer;
  color: var(--olive); font-size: 1.75rem; line-height: 1; font-weight: 300;
  opacity: 0.75; transition: opacity 0.2s, background 0.2s;
  display: none; align-items: center; justify-content: center;
  padding: 0;
}
.cal-arrow:hover { opacity: 1; background: rgba(0,0,0,0.1); }
.cal-arrow:focus { outline: 2px solid var(--olive); outline-offset: -2px; }
.cal-arrow-left { left: 0; }
.cal-arrow-right { right: 0; }
@media (min-width: 769px) {
  .cal-arrow { display: flex; }
}
.calendar-track { display: flex; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
.calendar-track::-webkit-scrollbar { display: none; }
.cal-month {
  min-width: 148px; padding: 1.25rem 1rem;
  background: #f5f2ee;
  border-right: 1px solid var(--border);
  cursor: pointer; transition: background 0.2s, transform 0.15s; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-start;
}
.cal-month:hover { background: rgba(107,93,82,0.04); transform: translateY(-2px); }
.cal-month.active { background: rgba(107,93,82,0.08); }
.cal-month.active .cal-month-name { color: var(--text); }
.cal-month.active .cal-month-emoji-wrap { background: rgba(154,132,104,0.2); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.cal-month-emoji-wrap {
  width: 2.75rem; height: 2.75rem; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(107,93,82,0.08);
  margin-bottom: 0.75rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.cal-month-emoji { font-size: 1.45rem; line-height: 1; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.cal-month-name { font-family: 'Playfair Display', serif; color: var(--text); margin-bottom: 0.35rem; display: block; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }
.cal-month-event { color: var(--text); font-size: 0.8rem; line-height: 1.4; font-weight: 300; }

/* ════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════ */
.section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.7rem; font-weight: 700; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); line-height: 1.2; }
.section-header p { color: var(--text); max-width: 540px; margin: 1rem auto 0; line-height: 1.7; opacity: 0.9; }

/* ════════════════════════════════════════════
   STORY
════════════════════════════════════════════ */
#story { background: linear-gradient(135deg, #faf9f6 0%, #f5f2ee 45%, #faf9f6 100%); padding: 5rem 0; }
.story-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, #9d8e7e 0%, #7d6d5c 50%, #fcfbf9 100%); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.story-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: #a82a2a; color: #fff;
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-family: 'Playfair Display', serif; padding: 1rem;
  box-shadow: 0 4px 20px rgba(168,42,42,0.4);
}
.story-badge strong { font-size: 1.8rem; line-height: 1; }
.story-badge span { font-size: 0.65rem; line-height: 1.3; margin-top: 0.2rem; }
.story-img-wrap { position: relative; }
.story-content { text-align: center; }
.story-content .section-tag { display: block; margin-left: auto; margin-right: auto; }
.story-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--text); line-height: 1.2; margin-bottom: 1.5rem; }
.story-content p { color: var(--text); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.story-content p:last-of-type { margin-bottom: 0; }
.story-content p:empty { display: none; }
.story-values { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.story-value { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--olive); }

/* ════════════════════════════════════════════
   PRODUCTS GRID (main page)
════════════════════════════════════════════ */
#products { background: linear-gradient(135deg, #f2efe9 0%, #faf8f6 40%, #f5f2ee 100%); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.product-card {
  background: white; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.product-img {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
  background-size: cover;
  background-position: center;
}
.pimg1 { background: linear-gradient(135deg, var(--terracotta-light), var(--stone)); }
.pimg2 { background: linear-gradient(135deg, var(--stone), var(--olive)); }
.pimg3 { background: linear-gradient(135deg, var(--cream), var(--accent)); }
.pimg4 { background: linear-gradient(135deg, var(--olive-light), var(--olive)); }
.product-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--olive); color: var(--cream);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 3px; font-weight: 700;
}
.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.5rem; }
.product-body p { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--text); font-family: 'Lato', sans-serif; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem 1.5rem; }
.product-yt-link {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--olive); text-decoration: none; font-weight: 700;
  cursor: pointer; background: none; border: none; font-family: 'Lato', sans-serif;
}
.product-yt-link svg { width: 16px; height: 16px; }
.product-btn-order {
  background: var(--olive); color: var(--cream);
  border: none; padding: 0.55rem 1.1rem; border-radius: 5px;
  font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.product-btn-order:hover { background: var(--olive-light); }

/* ════════════════════════════════════════════
   PRODUCT DETAIL PAGE
════════════════════════════════════════════ */
#product-detail-page {
  padding-top: 90px;
  min-height: 100vh;
  background: var(--bg);
}
.product-detail-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.product-detail-visual {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.product-detail-info { }
.product-detail-info .section-tag { display: block; text-align: left; margin-bottom: 0.5rem; }
.product-detail-info h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--text); margin-bottom: 1rem; line-height: 1.2; }
.product-detail-price-row { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.product-detail-price { font-size: 2rem; font-family: 'Lato', sans-serif; color: var(--text); font-weight: 700; }
.product-detail-unit { font-size: 0.85rem; color: var(--text); }
.product-detail-desc { color: var(--text); line-height: 1.85; margin-bottom: 2rem; font-size: 0.95rem; }
.product-detail-attrs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2rem; }
.product-attr {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 0.35rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; color: var(--text);
}
.product-yt-section {
  background: var(--cream); border-radius: 10px;
  padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; cursor: pointer; transition: background 0.2s;
  border: 1px solid var(--border);
}
.product-yt-section:hover { background: var(--olive); }
.product-yt-section:hover .product-yt-text strong,
.product-yt-section:hover .product-yt-text span { color: var(--cream); }
.product-yt-play {
  width: 44px; height: 44px; background: var(--olive);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-yt-play svg { width: 18px; height: 18px; fill: var(--cream); margin-left: 3px; }
.product-yt-text strong { display: block; color: var(--text); font-size: 0.9rem; }
.product-yt-text span { color: var(--stone); font-size: 0.8rem; }

/* Order form on product page */
.order-form-section {
  background: white; border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 2.5rem; max-width: 600px;
}
.order-form-section h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 0.5rem; }
.order-form-section > p { font-size: 0.85rem; color: var(--text); margin-bottom: 2rem; }
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 0.4rem; font-weight: 700; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--bg);
  transition: border-color 0.2s; outline: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--olive); }
.form-row textarea { height: 100px; resize: vertical; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; }
.qty-btn { width: 38px; height: 38px; background: var(--cream); border: none; cursor: pointer; font-size: 1.2rem; color: var(--text); transition: background 0.2s; font-weight: 700; }
.qty-btn:hover { background: var(--olive); color: var(--cream); }
.qty-input { width: 50px; height: 38px; border: none; text-align: center; font-size: 1rem; font-family: 'Lato', sans-serif; font-weight: 700; background: white; color: var(--text); outline: none; }
.qty-label { font-size: 0.85rem; color: var(--text); }
.order-total { background: var(--cream); border-radius: 8px; padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.order-total span { font-size: 0.85rem; color: var(--text); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.order-total strong { font-size: 1.3rem; font-family: 'Lato', sans-serif; color: var(--text); }
.form-submit {
  width: 100%; background: var(--olive); color: var(--cream);
  border: none; padding: 1rem; border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; text-transform: uppercase;
}
.form-submit:hover { background: var(--olive-light); }
.form-note { font-size: 0.75rem; color: var(--text); text-align: center; margin-top: 0.8rem; opacity: 0.9; }
.form-error { font-size: 0.9rem; color: #b71c1c; font-weight: 600; line-height: 1.4; }

/* ════════════════════════════════════════════
   VIDEOS (YouTube Facade / Lightbox)
════════════════════════════════════════════ */
#videos { background: linear-gradient(135deg, #faf9f6 0%, #f2efe9 50%, #faf9f6 100%); }
.videos-section-wrap { background: linear-gradient(135deg, #faf9f6 0%, #f2efe9 50%, #faf9f6 100%); padding: 5rem 0; }
.videos-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.video-facade {
  border-radius: 10px; overflow: hidden;
  background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.video-facade:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

.video-thumb-facade {
  aspect-ratio: 16/9; display: block; position: relative; overflow: hidden;
  min-height: 0;
}
.video-thumb-facade img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; vertical-align: top; transition: transform 0.4s;
}
.video-facade:hover .video-thumb-facade img { transform: scale(1.04); }

/* Fallback gradient when no real thumbnail */
.vbg1 { background: linear-gradient(135deg, #7d6d5c, #fcfbf9); }
.vbg2 { background: linear-gradient(135deg, #7d6d5c, #e2cfb8); }
.vbg3 { background: linear-gradient(135deg, #9d8e7e, #fcfbf9); }
.vbg4 { background: linear-gradient(135deg, #7d6d5c, #fcfbf9); }
.vbg5 { background: linear-gradient(135deg, #9d8e7e, #7d6d5c); }
.vbg6 { background: linear-gradient(135deg, #9d8e7e, #fcfbf9); }

.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--olive); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.video-facade:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.12); background: var(--olive-light); }
.video-play-btn svg { width: 22px; height: 22px; fill: var(--cream); margin-left: 4px; }

.video-duration {
  position: absolute; bottom: 0.5rem; right: 0.7rem;
  background: rgba(0,0,0,0.75); color: white;
  font-size: 0.72rem; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 700;
}
.video-emoji-badge {
  position: absolute; top: 0.7rem; left: 0.7rem;
  font-size: 1.4rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.video-info { padding: 1rem 1.2rem 1.2rem; background: white; }
.video-cat { font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); font-weight: 700; margin-bottom: 0.3rem; }
.video-info h3 { font-size: 0.97rem; color: var(--text); line-height: 1.4; margin-bottom: 0.4rem; }
.video-meta { font-size: 0.75rem; color: var(--text); opacity: 0.85; }

/* Lightbox */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.lightbox-overlay.open { display: flex; }
.lightbox-inner {
  width: 100%; max-width: 880px;
  position: relative;
  animation: fadeIn 0.25s ease;
}
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: var(--cream);
  font-size: 2rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: white; }
.lightbox-video-wrap {
  aspect-ratio: 16/9;
  background: black;
  border-radius: 8px;
  overflow: hidden;
}
.lightbox-video-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.lightbox-title {
  color: var(--cream); font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-top: 1rem; text-align: center;
}
.lightbox-watch-yt {
  display: inline-block; margin-top: 0.75rem; color: var(--cream);
  font-weight: 700; text-decoration: none; font-size: 0.9rem; opacity: 0.95;
}
.lightbox-watch-yt:hover { text-decoration: underline; color: white; }

/* Gallery image lightbox – винаги 80% от екрана на desktop */
.gallery-lightbox .gallery-lightbox-inner {
  position: relative;
  width: 80vw;
  height: 80vh;
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .gallery-lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-lightbox .lightbox-close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top, 0.75rem));
  right: max(0.75rem, env(safe-area-inset-right, 0.75rem));
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 501;
}
@media (max-width: 768px) {
  .gallery-lightbox .lightbox-close {
    min-width: 3rem;
    min-height: 3rem;
    font-size: 1.75rem;
  }
}

/* ════════════════════════════════════════════
   YOUTUBE API SECTION
════════════════════════════════════════════ */
.yt-api-note {
  background: rgba(219,210,203,0.08); border: 1px dashed rgba(219,210,203,0.2);
  border-radius: 8px; padding: 1rem 1.5rem; margin-top: 2rem; text-align: center;
}
.yt-api-note p { color: var(--charcoal); font-size: 0.8rem; opacity: 0.9; }
.yt-api-note code { font-size: 0.75rem; background: rgba(0,0,0,0.3); padding: 0.1rem 0.4rem; border-radius: 3px; color: var(--text-dark); }

/* ════════════════════════════════════════════
   SOCIAL PROOF – FRIDGE NOTES
════════════════════════════════════════════ */
#reviews { background: linear-gradient(135deg, #f5f2ee 0%, #ebe6e0 50%, #f5f2ee 100%); padding: 5rem 0; }
.reviews-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header .section-tag { color: var(--stone); }
.reviews-header h2 { color: var(--text); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.reviews-header p { color: var(--text); max-width: 500px; margin: 0.8rem auto 0; font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.review-note {
  position: relative;
  padding: 1.8rem 1.5rem 1.5rem;
  border-radius: 2px;
  box-shadow: 4px 4px 18px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.2);
  transform: rotate(var(--rot, -1.5deg));
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.review-note:hover { transform: rotate(0deg) scale(1.03); box-shadow: 6px 8px 28px rgba(0,0,0,0.4); z-index: 2; }

/* Pin */
.review-note::before {
  content: '📌';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.note-yellow  { background: #f0ebe0; --rot: -2deg; }
.note-green   { background: #e5e8dc; --rot: 1.5deg; }
.note-pink    { background: #ebe0dc; --rot: -1deg; }
.note-blue    { background: #e2e4e8; --rot: 2deg; }
.note-orange  { background: #ebe3d8; --rot: -1.8deg; }

.review-note-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.review-note-author {
  display: flex; align-items: center; gap: 0.6rem;
}
.review-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--olive); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.82rem; color: var(--text); }
.review-author-info span { font-size: 0.72rem; color: var(--text); opacity: 0.8; }
.review-author-info .review-date { display: block; margin-top: 0.25rem; }
.review-youtube-label {
  display: inline-block; font-size: 0.65rem; color: var(--olive); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-left: 0.35rem;
}
.review-stars { font-size: 0.75rem; color: #e6b800; margin-top: 0.3rem; }
.review-yt-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.65rem; color: var(--olive); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 0.8rem;
}

/* ════════════════════════════════════════════
   SUPPORT (Подкрепете ни)
════════════════════════════════════════════ */
.support-section { background: linear-gradient(135deg, #faf9f6 0%, #f0ebe6 50%, #faf9f6 100%); padding: 5rem 0; }
.support-inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.support-header { margin-bottom: 1.5rem; }
.support-header .section-tag { display: block; margin-bottom: 0.5rem; }
.support-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--text); line-height: 1.2; }
.support-text {
  font-size: 1rem; line-height: 1.75; color: var(--text);
  margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto;
}
.support-qr-wrap { margin-bottom: 1.5rem; display: flex; justify-content: center; }
.support-qr-placeholder {
  width: 220px; height: 220px; border-radius: 12px;
  background: var(--cream); border: 2px solid var(--border);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.support-qr-placeholder img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.support-qr-placeholder.support-qr-empty {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-qr-placeholder.support-qr-empty::before {
  content: 'QR код';
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.7;
  letter-spacing: 0.1em;
}
.support-thanks {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text);
  font-weight: 700; letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════
   BLOG (не се използва – запазено за съвместимост)
════════════════════════════════════════════ */
#blog { background: linear-gradient(135deg, #faf8f6 0%, #f2efe9 60%, #faf8f6 100%); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.blog-featured { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.07); cursor: pointer; transition: transform 0.3s; }
.blog-featured:hover { transform: translateY(-4px); }
.blog-featured-img { aspect-ratio: 16/8; background: linear-gradient(135deg, #7d6d5c, #9d8e7e, #e2cfb8); display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; }
.blog-featured-cat { position: absolute; bottom: 1rem; left: 1rem; background: var(--olive); color: var(--cream); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 3px; font-weight: 700; }
.blog-featured-body { padding: 1.8rem; }
.blog-featured-body h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 0.7rem; line-height: 1.3; }
.blog-featured-body p { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.blog-featured-meta { font-size: 0.75rem; color: var(--text); opacity: 0.85; display: flex; gap: 1rem; }
.blog-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.blog-small { background: white; border-radius: 8px; display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); cursor: pointer; transition: transform 0.25s; text-decoration: none; color: inherit; }
.blog-small:hover { transform: translateY(-3px); }
.blog-small-icon { font-size: 2rem; width: 52px; height: 52px; flex-shrink: 0; background: var(--cream); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.blog-small-cat { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); font-weight: 700; margin-bottom: 0.2rem; }
.blog-small-body h4 { font-size: 0.9rem; color: var(--text); line-height: 1.35; }

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
#gallery { background: linear-gradient(135deg, #f2efe9 0%, #ebe6e0 40%, #f2efe9 100%); padding: 5rem 0; }
.gallery-header { text-align: center; padding: 0 2rem; margin-bottom: 2.5rem; }
.gallery-header .section-tag { color: var(--stone); }
.gallery-header h2 { color: var(--text); font-size: clamp(1.8rem, 4vw, 2.8rem); }
/* Desktop: равномерна мрежа 3 колони × 2 реда, всички клетки еднакви */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-item { overflow: hidden; border-radius: 8px; cursor: pointer; position: relative; }
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s;
}
.g1 { background: linear-gradient(135deg, #9d8e7e, #7d6d5c); }
.g2 { background: linear-gradient(135deg, #9d8e7e, #e2cfb8); }
.g3 { background: linear-gradient(135deg, #fcfbf9, #7d6d5c); }
.g4 { background: linear-gradient(135deg, #e2cfb8, #ede0d0); }
.g5 { background: linear-gradient(135deg, #7d6d5c, #9d8e7e); }
.g6 { background: linear-gradient(135deg, #fcfbf9, #7d6d5c); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: flex-end; padding: 1rem; transition: background 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.25); }
.gallery-view-all-wrap { text-align: center; margin-top: 2rem; padding: 0 2rem; }
.gallery-view-all-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--olive);
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.gallery-view-all-btn:hover { background: var(--olive-light); color: var(--cream); }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact { background: linear-gradient(135deg, #f5f2ee 0%, #faf8f6 50%, #f2efe9 100%); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); margin-bottom: 1rem; }
.contact-info p { color: var(--text); line-height: 1.7; margin-bottom: 2rem; font-size: 0.9rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-link { text-decoration: none; color: inherit; transition: opacity 0.2s; }
.contact-detail-link:hover { opacity: 0.85; }
.contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--olive); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 1rem; overflow: hidden; }
.contact-detail-icon-emoji { font-size: 1.2rem; }
.contact-detail-icon-img { background: var(--olive); padding: 0; }
.contact-detail-icon-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-detail-text strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 0.2rem; }
.contact-detail-text span { color: var(--text); font-size: 0.9rem; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: var(--olive); display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; font-size: 1rem; transition: background 0.2s, transform 0.2s; }
.social-link:hover { background: var(--olive-light); transform: translateY(-3px); }
.contact-form-box { background: white; padding: 2.5rem; border-radius: 10px; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }

/* Форма за отзив – 5 звезди */
.review-stars-input {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.star-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.8rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  line-height: 1;
}
.star-btn:hover,
.star-btn.active { color: #e6b800; }
.review-stars-input[data-value="1"] .star-btn:nth-child(1),
.review-stars-input[data-value="2"] .star-btn:nth-child(1),
.review-stars-input[data-value="2"] .star-btn:nth-child(2),
.review-stars-input[data-value="3"] .star-btn:nth-child(1),
.review-stars-input[data-value="3"] .star-btn:nth-child(2),
.review-stars-input[data-value="3"] .star-btn:nth-child(3),
.review-stars-input[data-value="4"] .star-btn:nth-child(1),
.review-stars-input[data-value="4"] .star-btn:nth-child(2),
.review-stars-input[data-value="4"] .star-btn:nth-child(3),
.review-stars-input[data-value="4"] .star-btn:nth-child(4),
.review-stars-input[data-value="5"] .star-btn { color: #e6b800; }

/* Отстъп при скрол до секция (за да не се покрива от фиксирания навбар) */
#hero, #story, #products, #videos, #support, #gallery, #contact {
  scroll-margin-top: 72px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { background: #1a1a1a; color: #fff; padding: 1.75rem 2rem 1.25rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-bottom: 1.25rem; }
.footer-brand strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; display: block; margin-bottom: 0.35rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.55; max-width: 300px; margin: 0; color: rgba(255,255,255,0.9); }
.footer-col h4 { color: #fff; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1.5rem; margin: 0; padding: 0; max-width: 280px; }
.footer-col a {
  color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.82rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block; padding: 0.2rem 0 0.2rem 0;
  border-radius: 2px;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.85); }

/* ════════════════════════════════════════════
   ANIMATIONS & REVEAL
════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50 { transform: translateX(-50%) translateY(8px); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .story-badge { right: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; max-width: none; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  nav { padding: 0.8rem 1.2rem; }
  .form-two-col { grid-template-columns: 1fr; }
  .back-to-top { width: 44px; height: 44px; bottom: 1.25rem; right: 1.25rem; }
  .back-to-top svg { width: 20px; height: 20px; }
}

