
:root {
  --color-primary: #5C1A1A;
  --color-primary-hover: #7A2020;
  --color-primary-deep: #3D1010;
  --color-gold: #C8860A;
  --color-gold-light: #E8A020;
  --color-gold-pale: #F2D080;
  --color-cream: #F5ECD7;
  --color-cream-dark: #EDE0C4;
  --color-text-dark: #2C1810;
  --color-text-light: #FFFFFF;
  --color-text-muted: #7A5C4E;
  --color-border: #D4B896;
  --color-whatsapp: #25D366;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow-soft: 0 18px 42px rgba(44, 24, 16, 0.12);
  --shadow-deep: 0 28px 70px rgba(44, 24, 16, 0.24);
  --header-height: 151px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 3px;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-size: clamp(40px, 5.5vw, 64px); }
h2 { font-size: clamp(34px, 4vw, 48px); }
h3 { font-size: 24px; }
p { margin: 0 0 18px; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; scroll-margin-top: 170px; }
.text-center { text-align: center; }
.section-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-intro p { color: var(--color-text-muted); font-size: 17px; }
.section-kicker, .hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.gold-rule {
  display: block;
  width: 76px;
  height: 3px;
  margin: 18px auto 24px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { border-color: var(--color-gold); background: var(--color-primary); color: var(--color-text-light); }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-whatsapp { border-color: var(--color-whatsapp); background: var(--color-whatsapp); color: #fff; }
.btn-whatsapp:hover { box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26); }
.btn-outline-dark { border-color: var(--color-gold); color: var(--color-primary); background: transparent; }
.btn-outline-dark:hover { background: rgba(200, 134, 10, 0.1); }
.btn-ghost-light { border-color: rgba(242, 208, 128, 0.72); color: var(--color-text-light); background: transparent; }
.btn-ghost-light:hover { background: rgba(242, 208, 128, 0.12); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 134, 10, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: var(--color-primary);
  border-top: 3px solid var(--color-gold);
  color: var(--color-text-light);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 34px rgba(20, 6, 6, 0.42); }
.header-top { border-bottom: 1px solid rgba(200, 134, 10, 0.18); }
.header-top-inner {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.header-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}
.brand-wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.brand-sub {
  margin-top: 6px;
  color: var(--color-gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(200, 134, 10, 0.58);
  border-radius: 999px;
  color: var(--color-gold-light);
  font-size: 15px;
  font-weight: 700;
}
.header-phone svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-phone:hover { background: rgba(232, 160, 32, 0.1); }
.header-nav-band { border-bottom: 1px solid rgba(200, 134, 10, 0.22); }
.nav-list {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 6px;
  padding: 14px 15px;
  border: 0;
  background: transparent;
  color: rgba(245, 236, 215, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 7px;
  left: 15px;
  height: 2px;
  background: var(--color-gold-light);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover, .nav-link.active, .nav-link[aria-current="page"] { color: #fff; }
.nav-link:hover::after, .nav-link.active::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: var(--color-primary-deep);
  border-top: 3px solid var(--color-gold);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 18px;
  border-left: 3px solid transparent;
  color: rgba(245, 236, 215, 0.9);
  font-size: 14px;
  font-weight: 600;
}
.dropdown-item:hover, .dropdown-item.active {
  border-left-color: var(--color-gold-light);
  background: rgba(200, 134, 10, 0.12);
  color: #fff;
}
.menu-toggle {
  position: relative;
  z-index: 10002;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  background: transparent;
}
.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-gold-light);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.menu-toggle span:nth-child(3) { transform: translateY(7px); }
body.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }

.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 0;
  color: var(--color-text-light);
  background:
    radial-gradient(circle at 95% 12%, rgba(44, 24, 16, 0.34), transparent 34%),
    radial-gradient(circle at 84% 88%, rgba(44, 24, 16, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(61, 16, 16, 0.96) 0%, rgba(61, 16, 16, 0.9) 34%, rgba(61, 16, 16, 0.48) 55%, rgba(61, 16, 16, 0.08) 75%),
    url("assets/hero-bg.jpg") center 45% / cover no-repeat;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(44, 24, 16, 0.32) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 48vw);
}
.hero-kicker { color: var(--color-gold-light); }
.home-hero h1 span, .home-hero h1 em { display: block; }
.home-hero h1 em { color: var(--color-gold-pale); font-style: normal; }
.home-hero p {
  max-width: 540px;
  color: rgba(245, 236, 215, 0.92);
  font-size: 17px;
}
.hero-actions { margin: 30px 0 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 160, 32, 0.6);
}
.hero-stats div { padding: 0 18px; border-right: 1px solid rgba(232, 160, 32, 0.28); }
.hero-stats div:first-child { padding-left: 0; }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong {
  display: block;
  color: var(--color-gold-pale);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}
.hero-stats span {
  display: block;
  margin-top: 5px;
  color: rgba(245, 236, 215, 0.84);
  font-size: 12px;
  line-height: 1.45;
}

.category-section, .products-section, .contact-section, .contact-preview { background: var(--color-cream); }
.category-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.category-card, .product-card, .info-card, .contact-card, .form-card, .credentials-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  background: #fffaf0;
  box-shadow: 0 4px 16px rgba(92, 26, 26, 0.06);
}
.category-card, .product-card { display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.category-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.category-media, .specialty-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream-dark);
}
.animal-category .category-media { aspect-ratio: 1 / 1; }
.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover .category-media img, .specialty-card:hover .specialty-media img { transform: scale(1.04); }
.cat-bovine { object-position: center 44%; }
.cat-cabaline { object-position: center 48%; }
.cat-ovine { object-position: center 45%; }
.cat-pasari { object-position: center 34%; }
.cat-porci { object-position: center 48%; }
.cat-iepuri { object-position: center 44%; }
.specialty-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-body, .product-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.category-body h3, .product-card h3 { color: var(--color-text-dark); }
.category-body p, .product-card p { color: var(--color-text-muted); font-size: 15px; }

.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 160, 32, 0.2), transparent 38%),
    var(--color-primary-deep);
  color: #fff;
}
.why-section h2, .why-section h3 { color: #fff; }
.why-section .section-intro p, .why-section p { color: rgba(245, 236, 215, 0.82); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pillar-card {
  padding: 32px 26px;
  border: 1px solid rgba(200, 134, 10, 0.26);
  border-radius: 6px;
  background: rgba(92, 26, 26, 0.45);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar-card:hover { transform: translateY(-4px); border-color: rgba(232, 160, 32, 0.74); }
.pillar-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(232, 160, 32, 0.72);
  border-radius: 50%;
  color: var(--color-gold-light);
}
.pillar-icon svg, .contact-list svg, .mobile-sticky-bar svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bio-band { background: var(--color-cream-dark); }
.bio-grid, .contact-preview-grid, .delivery-grid, .shop-grid, .contact-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
}
.bio-grid.inverted { grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr); }
.bio-copy p { color: var(--color-text-muted); font-size: 17px; }
.bio-role { color: var(--color-primary) !important; font-weight: 700; }
.credentials-card { padding: 30px; }
.credentials-card h3 { color: var(--color-primary); }
.credentials-card p { color: var(--color-gold); font-weight: 700; }
.credentials-card ul { padding: 0; margin: 22px 0 0; list-style: none; }
.credentials-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--color-text-muted);
}
.credentials-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold);
}
.brands-section { background: #fffaf0; }
.brand-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 20px 0;
}
.brand-badges span {
  min-width: 200px;
  padding: 16px 22px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 4px;
  background: var(--color-cream);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-subline { color: var(--color-text-muted); font-style: italic; }
.delivery-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
  background:
    radial-gradient(circle at 50% 30%, rgba(232, 160, 32, 0.24), transparent 44%),
    var(--color-primary);
  color: #fff;
  text-align: center;
}
.delivery-cta p { max-width: 640px; margin: 0 auto 26px; color: rgba(245, 236, 215, 0.86); }
.delivery-cta .button-row { justify-content: center; }
.map-frame, .map-full {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-cream-dark);
  box-shadow: var(--shadow-soft);
}
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }
.map-full { border-radius: 0; border-right: 0; border-left: 0; }
.map-full iframe { display: block; width: 100%; height: 460px; border: 0; }
.contact-card { padding: 32px; }
.contact-list { padding: 0; margin: 24px 0; list-style: none; }
.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
  color: var(--color-text-muted);
}
.contact-list svg { width: 22px; height: 22px; color: var(--color-gold); }
.contact-list a { color: var(--color-primary); font-weight: 700; }

.page-hero {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 160, 32, 0.16), transparent 38%),
    var(--color-primary-deep);
  color: #fff;
  text-align: center;
}
.page-hero.compact { min-height: 280px; }
.page-hero p { max-width: 740px; margin: 18px auto 0; color: rgba(245, 236, 215, 0.9); }
.animal-page-hero {
  min-height: 0;
  padding: 0;
  background: var(--color-primary-deep);
  text-align: left;
}
.animal-hero-grid {
  display: grid;
  width: 100%;
  min-height: clamp(390px, 28vw, 500px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.animal-hero-copy {
  display: flex;
  align-items: center;
  padding: 72px clamp(28px, 5vw, 90px) 72px max(28px, calc((100vw - 1180px) / 2 + 16px));
  background:
    radial-gradient(circle at 18% 28%, rgba(232, 160, 32, 0.14), transparent 34%),
    linear-gradient(135deg, var(--color-primary-deep), var(--color-primary));
}
.animal-hero-copy-inner { max-width: 520px; }
.animal-page-hero h1 {
  max-width: 520px;
  color: #fff;
}
.animal-page-hero p { margin-right: 0; margin-left: 0; }
.animal-page-hero .breadcrumb { justify-content: flex-start; }
.animal-hero-media {
  min-width: 0;
  overflow: hidden;
}
.animal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-pasari .animal-hero-media img { object-position: center 46%; }
.hero-porci .animal-hero-media img { object-position: center 52%; }
.visual-page-hero {
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 24%, rgba(232, 160, 32, 0.14), transparent 38%),
    linear-gradient(90deg, rgba(61, 16, 16, 0.9), rgba(61, 16, 16, 0.58) 54%, rgba(61, 16, 16, 0.22)),
    var(--hero-image) var(--visual-pos, center center) / cover no-repeat;
}
.visual-hero-minerale { --visual-pos: center 52%; }
.visual-hero-accesorii { --visual-pos: center 50%; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb a:hover { color: var(--color-gold-pale); }
.expert-banner {
  padding: 34px 0;
  border-top: 3px solid var(--color-gold);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream-dark);
  text-align: center;
}
.expert-banner .lead {
  margin: 0 0 8px;
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
}
.expert-banner .sub { margin-bottom: 20px; color: var(--color-text-muted); }
.product-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-photo {
  display: flex;
  aspect-ratio: 3 / 2;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(245, 236, 215, 0.86), rgba(237, 224, 196, 0.72));
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  outline: 1px dashed rgba(122, 92, 78, 0.35);
  outline-offset: -14px;
}
.mini-brand {
  align-self: flex-start;
  padding: 5px 9px;
  margin-bottom: 12px;
  border: 1px solid rgba(200, 134, 10, 0.5);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.product-rule { display: block; width: 54px; height: 2px; margin: auto 0 18px; background: var(--color-gold); }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.product-actions .btn { min-height: 42px; padding: 11px 14px; font-size: 12px; }
.back-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; }
.delivery-section .info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.info-card { padding: 26px; }
.info-card svg { width: 30px; height: 30px; fill: none; stroke: var(--color-gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.form-card { padding: 32px; }
.form-card form { display: grid; gap: 10px; }
label { color: var(--color-primary); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
input, textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: #fffaf0;
  color: var(--color-text-dark);
  padding: 12px 13px;
}
textarea { resize: vertical; }
.form-status { min-height: 24px; margin: 8px 0 0; font-size: 14px; }
.form-status.success { color: #216c39; }
.form-status.error { color: var(--color-primary-hover); }
.brand-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 40%, rgba(232, 160, 32, 0.18), transparent 55%),
    var(--color-primary);
  color: var(--color-gold-pale);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}
.brand-panel img { width: 150px; height: 150px; object-fit: contain; }
.site-footer { background: var(--color-text-dark); color: rgba(245, 236, 215, 0.86); }
.footer-strip { height: 4px; background: linear-gradient(90deg, var(--color-primary-deep), var(--color-gold), var(--color-gold-light), var(--color-gold), var(--color-primary-deep)); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 44px; padding: 58px 0; }
.footer-logo-lockup { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo-lockup img { width: 54px; height: 54px; object-fit: contain; }
.footer-logo-lockup strong { display: block; color: var(--color-gold-light); font-family: var(--font-display); }
.footer-logo-lockup em { display: block; color: rgba(245, 236, 215, 0.72); font-style: normal; font-size: 13px; }
.site-footer h2 { margin-bottom: 16px; color: #fff; font-size: 22px; }
.footer-links, .footer-contact { padding: 0; margin: 0; list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 8px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-gold-pale); }
.footer-bottom { padding: 18px 24px; border-top: 1px solid rgba(212, 184, 150, 0.14); text-align: center; color: rgba(245, 236, 215, 0.65); font-size: 14px; }
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 9900;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
}
.whatsapp-float svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.form-page .whatsapp-float { display: none; }
.mobile-sticky-bar { display: none; }

@media (max-width: 1100px) {
  .container { width: min(100% - 40px, 960px); }
  .nav-link { padding-right: 9px; padding-left: 9px; font-size: 11px; }
  .brand-name { font-size: 20px; }
  .category-grid, .product-grid, .product-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-content { width: min(620px, 58vw); }
  .bio-grid, .bio-grid.inverted, .contact-preview-grid, .delivery-grid, .shop-grid, .contact-two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 104px; }
  body { padding-bottom: 64px; }
  .header-top-inner { min-height: 88px; }
  .header-logo { width: 56px; height: 56px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 10px; }
  .header-phone { display: none; }
  .menu-toggle {
    position: fixed;
    top: 24px;
    right: 16px;
    z-index: 11000;
    display: inline-flex;
    flex: 0 0 44px;
    background: rgba(61, 16, 16, 0.96);
    box-shadow: 0 0 0 1px rgba(232, 160, 32, 0.22);
  }
  .header-nav-band { border: 0; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 116px 24px 96px;
    background: var(--color-primary-deep);
    transform: translateX(100%);
    transition: transform 0.24s ease;
  }
  body.menu-open .site-nav { transform: translateX(0); }
  .nav-list { width: min(460px, 100%); flex-direction: column; align-items: stretch; }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 134, 10, 0.18);
    font-size: 15px;
  }
  .nav-link::after { display: none; }
  .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.22s ease, padding 0.22s ease;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 520px; padding: 8px 0 8px 12px; }
  .home-hero {
    min-height: 78vh;
    padding: 76px 0;
    background:
      radial-gradient(circle at 88% 12%, rgba(44, 24, 16, 0.36), transparent 34%),
      linear-gradient(90deg, rgba(61, 16, 16, 0.96), rgba(61, 16, 16, 0.72) 58%, rgba(61, 16, 16, 0.22)),
      url("assets/hero-bg.jpg") 54% center / cover no-repeat;
  }
  .hero-content { width: min(620px, 100%); }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .hero-stats div { padding: 0 0 12px; border-right: 0; border-bottom: 1px solid rgba(232, 160, 32, 0.26); }
  .hero-stats div:last-child { border-bottom: 0; }
  .animal-hero-grid { grid-template-columns: 1fr; }
  .animal-hero-copy {
    min-height: 280px;
    padding: 56px 24px;
    text-align: center;
  }
  .animal-hero-copy-inner { max-width: none; margin: 0 auto; }
  .animal-page-hero .breadcrumb { justify-content: center; }
  .animal-hero-media { aspect-ratio: 16 / 9; min-height: 230px; }
  .visual-page-hero {
    min-height: 340px;
    background:
      radial-gradient(circle at 50% 24%, rgba(232, 160, 32, 0.14), transparent 38%),
      linear-gradient(180deg, rgba(61, 16, 16, 0.82), rgba(61, 16, 16, 0.5)),
      var(--hero-image) var(--visual-pos, center center) / cover no-repeat;
  }
  .pillars-grid, .specialty-grid, .delivery-section .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10001;
    display: grid;
    width: 100vw;
    max-width: 100vw;
    height: 64px;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-top: 2px solid var(--color-gold);
    background: var(--color-primary);
  }
  .mobile-sticky-bar a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-right: 1px solid rgba(200, 134, 10, 0.28);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .mobile-sticky-bar span {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .mobile-sticky-bar a:last-child { border-right: 0; }
  .mobile-sticky-bar svg { width: 22px; height: 22px; color: var(--color-gold-light); }
  .whatsapp-float { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; scroll-margin-top: 110px; }
  .container { width: calc(100% - 32px); }
  .button-row, .hero-actions { align-items: stretch; }
  .button-row .btn, .hero-actions .btn { width: 100%; }
  .category-grid, .product-grid, .product-grid.four { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 42px; }
  .home-hero p { font-size: 16px; }
  .page-hero { min-height: 300px; padding: 56px 0; }
  .animal-page-hero { min-height: 0; padding: 0; }
  .expert-banner .lead { font-size: 22px; }
  .contact-card, .form-card, .credentials-card { padding: 24px; }
}

@media (max-width: 520px) {
  .header-top-inner { gap: 10px; }
  .brand { min-width: 0; gap: 10px; }
  .header-logo { width: 52px; height: 52px; }
  .brand-wordmark { max-width: 145px; min-width: 0; }
  .brand-name { font-size: 14.5px; }
  .brand-sub { font-size: 7px; letter-spacing: 0.07em; }
  .header-right { gap: 8px; }
  .hero-kicker { max-width: 320px; font-size: 10px; letter-spacing: 0.13em; }
  .home-hero h1 { max-width: 320px; font-size: 31px; }
  .home-hero p { max-width: 320px; font-size: 15px; }
  .hero-stats strong { font-size: 20px; }
  .mobile-sticky-bar a { font-size: 10px; }
  h1 { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   PREMIUM REFINEMENT LAYER — v20
   Elevates the existing system: typography, depth, hero, credential mark,
   real product photos. Additive only — overrides earlier rules cleanly.
   ========================================================================== */

/* — Editorial typography polish — */
body { line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
h1, h2, h3 { letter-spacing: 0.01em; }
.home-hero h1 { letter-spacing: 0.015em; }
.section-intro p { font-size: 17.5px; line-height: 1.75; }

/* — Section kicker refinement: small gold lead-rule before label — */
.section-kicker::before, .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.text-center .section-kicker::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
}

/* — Credential quality mark (Ing. Zootehnist) — */
.zoo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px 3px;
  border: 1px solid rgba(200, 134, 10, 0.55);
  border-radius: 999px;
  background: rgba(200, 134, 10, 0.08);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.82em;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.zoo-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold-light);
  box-shadow: 0 0 0 2px rgba(232, 160, 32, 0.25);
}
.bio-role.zoo-badge, .credentials-card p.zoo-badge { display: inline-flex; }

/* — Hero: subtle grain + gold separator rule under H1 — */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.home-hero h1 { position: relative; padding-bottom: 22px; }
.home-hero h1::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 4px;
  width: 180px;
  max-width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-light), rgba(232, 160, 32, 0));
}

/* — Deeper, more premium card shadow & motion — */
.category-card, .product-card, .info-card, .credentials-card {
  box-shadow: 0 2px 16px rgba(92, 26, 26, 0.07);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-top-color 0.3s ease;
}
.category-card:hover, .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(92, 26, 26, 0.14);
  border-top-color: var(--color-gold-light);
}

/* — Real product photo treatment (replaces dashed placeholder) — */
.product-photo.has-photo {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0%, #fbf6 ea 70%, #f3e7cf 100%);
  outline: none;
  font-size: 0;
}
.product-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(44, 24, 16, 0.16));
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-card:hover .product-photo.has-photo img { transform: scale(1.05); }

/* — "Cel mai vândut" top-seller stamp — */
.product-card.top-seller { border-top-color: var(--color-gold-light); }
.product-card.top-seller .product-photo.has-photo::after {
  content: "★ Cel mai vândut";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-gold-pale);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.28);
}

/* — Brand badge lift — */
.brand-badges span { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.brand-badges span:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(92, 26, 26, 0.12); }

/* — Pillar icons: soft gold glow on hover — */
.pillar-card:hover .pillar-icon { box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.12); }

/* — Section divider rule (full-bleed gold gradient) — */
.premium-divider {
  height: 4px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), var(--color-gold-light), var(--color-gold), var(--color-primary));
}

/* — Bio photo (Despre Noi), once Samuel sends a real photo — */
.bio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

/* — Fix product photo gradient typo fallback — */
.product-photo.has-photo { background: radial-gradient(circle at 50% 38%, #ffffff 0%, #fbf6ea 72%, #f3e7cf 100%); }

/* — Branded placeholder for products awaiting a real photo — */
.product-photo.placeholder-logo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: radial-gradient(circle at 50% 40%, #fffaf0 0%, #f3e7cf 100%);
}
.product-photo.placeholder-logo img {
  width: 46%;
  height: auto;
  opacity: 0.5;
  filter: grayscale(0.1);
}

/* ==========================================================================
   PREMIUM MOBILE ACTION BAR — v20
   WhatsApp = filled green hero centre; refined sides; taller; gold top edge.
   Overrides earlier .mobile-sticky-bar rules (loaded later).
   ========================================================================== */
@media (max-width: 1100px) {
  .mobile-sticky-bar {
    height: 72px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    align-items: stretch;
    border-top: 0;
    background: linear-gradient(180deg, var(--color-primary-deep), var(--color-primary));
    box-shadow: 0 -10px 30px rgba(20, 6, 6, 0.4);
  }
  /* gold hairline accent sitting on top of the bar */
  .mobile-sticky-bar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold-light), var(--color-gold), transparent);
  }
  .mobile-sticky-bar .msb-item {
    flex-direction: column;
    gap: 4px;
    border-right: 0;
    border-radius: 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.18s ease, transform 0.12s ease;
  }
  .mobile-sticky-bar .msb-item:active { transform: scale(0.96); }
  /* side buttons: subtle gold-tinted glass */
  .mobile-sticky-bar .msb-call,
  .mobile-sticky-bar .msb-map {
    background: rgba(245, 236, 215, 0.06);
    border: 1px solid rgba(200, 134, 10, 0.28);
    color: var(--color-cream);
  }
  .mobile-sticky-bar .msb-call svg,
  .mobile-sticky-bar .msb-map svg { width: 22px; height: 22px; color: var(--color-gold-light); }
  /* WhatsApp = primary filled action, centre */
  .mobile-sticky-bar .msb-wa {
    background: var(--color-whatsapp);
    border: 1px solid var(--color-whatsapp);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.34);
  }
  .mobile-sticky-bar .msb-wa svg { width: 24px; height: 24px; color: #fff; }
  .mobile-sticky-bar .msb-wa span { color: #fff; }
  /* keep body padding clear of the taller bar */
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}
@media (max-width: 480px) {
  .mobile-sticky-bar .msb-item { font-size: 10.5px; }
}

/* ==========================================================================
   PREMIUM BUTTONS — v20
   More presence, refined hover lift + shadow. Hero CTAs feel substantial.
   ========================================================================== */
.btn {
  padding: 15px 28px;
  border-radius: 4px;
  border-width: 2px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(44, 24, 16, 0.08);
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(44, 24, 16, 0.18); }
.btn:active { transform: translateY(0); }

/* Primary "Cere ofertă" — confident burgundy with gold edge */
.btn-primary { box-shadow: 0 4px 14px rgba(92, 26, 26, 0.22); }
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-gold-light); box-shadow: 0 12px 28px rgba(92, 26, 26, 0.30); }

/* WhatsApp — filled green, icon + label, stronger lift */
.btn-whatsapp { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28); }
.btn-whatsapp:hover { background: #20bd5a; border-color: #20bd5a; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36); }

/* Hero CTAs: a touch larger for presence on the hero */
.hero-actions .btn { min-height: 52px; padding: 16px 30px; font-size: 15px; }

/* Ghost-light (on dark delivery strip) refined */
.btn-ghost-light { border-width: 2px; }
.btn-ghost-light:hover { background: rgba(242, 208, 128, 0.16); border-color: var(--color-gold-light); }

/* Outline-dark refined */
.btn-outline-dark:hover { border-color: var(--color-gold-light); background: rgba(200, 134, 10, 0.12); }

/* ==========================================================================
   BRAND LOGO WALL — v20
   Holds real brand logos; styled text fallback until PNGs are added.
   ========================================================================== */
.brands-title { color: var(--color-primary); font-size: clamp(26px, 3vw, 34px); }
.brand-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin: 28px 0 22px;
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(92, 26, 26, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand-logo-item:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(92, 26, 26, 0.14); }
.brand-logo-item img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo-fallback {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .brand-logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .brand-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-logo-item { min-height: 84px; padding: 14px; }
}

/* ==========================================================================
   STICKY HEADER HARDENING — v20.5
   Prevents content bleeding above the header during iOS momentum scroll,
   WITHOUT creating a stacking context (which would trap the fixed mobile nav).
   Opaque background + upward backing plate are enough to stop the bleed.
   ========================================================================== */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* solid, opaque background so nothing shows through during rubber-band scroll */
  background-color: var(--color-primary);
}
/* opaque backing plate behind header content, extends upward to cover any gap */
.site-header::before {
  content: "";
  position: absolute;
  inset: -200px 0 0 0;
  z-index: -1;
  background: var(--color-primary);
  pointer-events: none;
}
.site-header { border-top: 3px solid var(--color-gold); }

/* — Samuel real portrait in credentials card (Despre Noi) — */
.credentials-card .bio-portrait {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  box-shadow: 0 6px 18px rgba(92, 26, 26, 0.18);
}

/* — Dark-background brand logos (SAF Minerals, Salrom) sit on a matching dark card — */
.brand-logo-item.brand-dark {
  background: #111;
  border-color: #2a2a2a;
}
.brand-logo-item.brand-dark img { mix-blend-mode: normal; }

/* — Real shop photo in the Despre Noi shop panel — */
.brand-panel.has-shop-photo {
  padding: 0;
  background: none;
  border: none;
  overflow: hidden;
  border-radius: 12px;
}
.brand-panel.has-shop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
