/* =============================================
   Krebur — Fırınlanmış Çıtır Kraker
   Tasarım: Lexend + kırmızı-bordo + paket atmosferi
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&display=swap&subset=latin,latin-ext');

:root {
  /* Brand */
  --brand-primary: #ef4138;
  --brand-primary-dark: #a32035;
  --brand-primary-light: #ff6a61;

  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-warm: #FFF8F2;

  /* Text */
  --text: #1A1A1A;
  --text-muted: #666;
  --text-inverse: #FFFFFF;
  --border: #EAEAEA;

  /* Paket atmosferi */
  --pkg-spicy: #C8202A;
  --pkg-spicy-bg: #FEF2F2;
  --pkg-cheese: #F39200;
  --pkg-cheese-bg: #FFF8EE;
  --pkg-taco: #9CAA00;
  --pkg-taco-bg: #F7F9E8;
  --pkg-brown: #6B4226;

  /* Health */
  --health-green: #4CAF50;

  /* Typography */
  --font: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(26,26,26,.06);
  --shadow: 0 4px 16px rgba(26,26,26,.08);
  --shadow-lg: 0 8px 32px rgba(26,26,26,.12);
  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --container: 1200px;
  --header-height: 80px;
}

/* ============================================= RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); font-weight: 700; line-height: 1.25; margin: 0 0 .5em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25rem; margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.pre-title { display: inline-block; font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-primary); margin-bottom: 12px; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 48px; }

/* ============================================= BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { background: var(--brand-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }
.btn-outline:hover { background: var(--brand-primary); color: #fff; }
.btn-light { background: #fff; color: var(--brand-primary-dark); }
.btn-light:hover { background: var(--brand-primary); color: #fff; }
.btn-dark { background: var(--brand-primary-dark); color: #fff; }
.btn-dark:hover { background: var(--text); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }

/* ============================================= HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--brand-primary-dark);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.header-top {
  background: rgba(0,0,0,.2);
  font-size: .8rem;
  padding: 8px 0;
  display: none;
}
@media (min-width: 768px) { .header-top { display: block; } }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.header-top a { color: rgba(255,255,255,.85); text-decoration: none; }
.header-top a:hover { color: #fff; }
.header-top-left { display: flex; gap: 20px; }
.header-top-right { display: flex; gap: 16px; align-items: center; }
.header-main { padding: 16px 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; font-weight: 800; font-size: 1.5rem; }
.site-logo img { height: 48px; width: auto; }
.site-logo span { font-family: var(--font); font-weight: 800; letter-spacing: -.01em; }

.main-nav { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav > ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { background: rgba(255,255,255,.12); color: #fff; }
.main-nav > ul > li > a .chev { font-size: .7em; opacity: .7; margin-left: 4px; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none; margin: 8px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  font-size: .95rem;
  transition: background var(--transition);
}
.dropdown-menu li a:hover { background: var(--pkg-spicy-bg); color: var(--brand-primary); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-b2b {
  background: var(--brand-primary);
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-b2b:hover { background: #fff; color: var(--brand-primary-dark); transform: translateY(-1px); }
.btn-b2b .dot { display: inline-block; width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 8px;
  font-size: 1.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-nav {
  display: none;
  background: var(--brand-primary-dark);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.mobile-nav ul ul a { padding-left: 40px; font-size: .92rem; opacity: .85; }

/* ============================================= HERO SLIDER */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--brand-primary-dark);
  color: #fff;
}
.hero-slides { position: relative; width: 100%; height: 100%; min-height: 560px; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(163,32,53,.45) 0%, rgba(239,65,56,.25) 100%);
  z-index: 1;
}
.hero-slide .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.9);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}
.hero .pre-title { color: #ffda6a; font-weight: 700; }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,.25); }
.hero p.hero-sub { font-size: 1.25rem; color: rgba(255,255,255,.92); margin-bottom: 32px; max-width: 560px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav {
  position: absolute; bottom: 32px; right: 32px; z-index: 3;
  display: flex; gap: 8px;
}
.hero-nav button {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.hero-nav button:hover { background: rgba(255,255,255,.35); }
.hero-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all var(--transition);
}
.hero-dots button.active { background: #fff; width: 28px; border-radius: 5px; }

/* ============================================= TRUST STRIP (Sağlık Rozetleri) */
.trust-strip {
  background: var(--bg-warm);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 12px;
}
.trust-icon {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  border: 2px solid var(--health-green);
}
.trust-icon img { width: 32px; height: 32px; object-fit: contain; }
.trust-item h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--brand-primary-dark);
  margin: 0 0 4px;
}
.trust-item p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ============================================= CARDS & GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--text-muted); font-size: .95rem; flex: 1; }
.card-body .card-cta { margin-top: 16px; font-weight: 600; color: var(--brand-primary); }
.card-body .card-cta:hover { color: var(--brand-primary-dark); }

/* Product card — paket renkleri */
.product-card { border-top: 4px solid var(--brand-primary); }
.product-card.theme-spicy { border-top-color: var(--pkg-spicy); }
.product-card.theme-spicy:hover { background: var(--pkg-spicy-bg); }
.product-card.theme-cheese { border-top-color: var(--pkg-cheese); }
.product-card.theme-cheese:hover { background: var(--pkg-cheese-bg); }
.product-card.theme-taco { border-top-color: var(--pkg-taco); }
.product-card.theme-taco:hover { background: var(--pkg-taco-bg); }

/* ============================================= SECTION HEADER */
.section-header { text-align: center; margin-bottom: 48px; }

/* ============================================= BREADCRUMB */
.breadcrumb {
  background: var(--bg-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--text-muted); }
.breadcrumb li a { color: var(--text-muted); }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ============================================= PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.9); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* ============================================= CORPORATE TABS */
.tab-nav {
  display: flex; gap: 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-nav button, .tab-nav a {
  padding: 14px 24px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  text-decoration: none;
}
.tab-nav button.active, .tab-nav a.active {
  color: var(--brand-primary-dark);
  border-bottom-color: var(--brand-primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.prose { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.prose h2 { margin-top: 2em; margin-bottom: .5em; color: var(--brand-primary-dark); }
.prose p { margin-bottom: 1.25em; }
.prose strong { color: var(--brand-primary-dark); }
.prose ul, .prose ol { margin-bottom: 1.25em; }
.prose li { margin-bottom: .5em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.prose table th, .prose table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.prose table th { background: var(--bg-warm); font-weight: 600; }

/* ============================================= PRODUCT DETAIL */
.product-hero {
  padding: 64px 0;
}
.theme-spicy .product-hero { background: var(--pkg-spicy-bg); }
.theme-cheese .product-hero { background: var(--pkg-cheese-bg); }
.theme-taco .product-hero { background: var(--pkg-taco-bg); }

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .product-hero-grid { grid-template-columns: 1fr 1fr; } }
.product-hero-img {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-content h1 {
  color: var(--brand-primary-dark);
  margin-bottom: 16px;
}
.theme-spicy .product-hero-content h1 { color: var(--pkg-spicy); }
.theme-cheese .product-hero-content h1 { color: var(--pkg-cheese); }
.theme-taco .product-hero-content h1 { color: var(--pkg-taco); }

.product-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  color: var(--health-green);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid var(--health-green);
}
.badge::before { content: '✓'; font-weight: 900; }

.product-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.product-section h2 {
  font-size: 1.5rem;
  color: var(--brand-primary-dark);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.product-section h2::before {
  content: '';
  width: 4px; height: 24px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.ingredients-list { columns: 2; column-gap: 24px; list-style: none; padding: 0; }
.ingredients-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  break-inside: avoid;
}
.ingredients-list li::before {
  content: '●'; color: var(--brand-primary);
  position: absolute; left: 4px; font-size: .7rem; top: 12px;
}

.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table th, .nutrition-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.nutrition-table th { background: var(--bg-warm); font-weight: 600; color: var(--text); }
.nutrition-table tr:last-child td, .nutrition-table tr:last-child th { border-bottom: 0; }
.nutrition-table .amount { text-align: right; font-weight: 600; color: var(--brand-primary-dark); }

.package-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.package-table tr { border-bottom: 1px solid var(--border); }
.package-table tr:last-child { border-bottom: 0; }
.package-table td { padding: 14px 18px; }
.package-table td:first-child { font-weight: 500; color: var(--text-muted); width: 50%; }
.package-table td:last-child { font-weight: 600; color: var(--text); text-align: right; }

/* ============================================= CERTIFICATES */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--brand-primary); }
.cert-card img { width: 140px; height: 180px; margin: 0 auto 16px; object-fit: contain; }
.cert-card h3 { font-size: 1rem; margin-bottom: 4px; color: var(--brand-primary-dark); }
.cert-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; }
.cert-card .cert-status {
  display: inline-block;
  padding: 4px 12px;
  background: var(--health-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}
.cert-card .cert-status.pending { background: var(--pkg-cheese); }

/* ============================================= GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-img-wrapper {
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.4, 0, .2, 1);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(163,32,53,0.9) 0%, rgba(163,32,53,0.4) 50%, rgba(163,32,53,0) 100%);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.overlay-content {
  color: #fff;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.gallery-item:hover .overlay-content {
  transform: translateY(0);
}
.overlay-content h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.overlay-content span {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================= BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card a { text-decoration: none; color: inherit; display: block; }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-warm); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 12px; }
.blog-card-meta .cat { color: var(--brand-primary); font-weight: 600; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text); }
.blog-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}
.blog-post h1 { margin-bottom: 12px; color: var(--brand-primary-dark); }
.blog-post-meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 32px; display: flex; gap: 16px; }
.blog-post-cover {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-warm);
  border-radius: var(--radius);
  margin-bottom: 32px;
  overflow: hidden;
}
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================= CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow); }
.contact-card .icon {
  width: 64px; height: 64px;
  background: var(--pkg-spicy-bg);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 16px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--brand-primary-dark); }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: .95rem; margin: 4px 0; }
.contact-card a:hover { color: var(--brand-primary); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: .875rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition);
  font-family: var(--font);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--brand-primary);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; font-size: .9rem; color: var(--text-muted); }
.form-check input { margin-top: 3px; }
.form-check a { color: var(--brand-primary); font-weight: 500; }
.form-honeypot { position: absolute; left: -9999px; visibility: hidden; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-form { background: #fff; padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-map { min-height: 400px; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: .9rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }

/* ============================================= FOOTER */
.site-footer {
  background: var(--brand-primary-dark);
  color: rgba(255,255,255,.85);
  padding-top: 0;
}
.footer-trust {
  background: rgba(0,0,0,.15);
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-trust .trust-grid .trust-item h4 { color: #fff; }
.footer-trust .trust-grid .trust-item p { color: rgba(255,255,255,.7); }
.footer-trust .trust-icon { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.footer-main {
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .92rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-about .site-logo { color: #fff; margin-bottom: 16px; }
.footer-about p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--brand-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-align: center;
}

/* ============================================= WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: ping 2s infinite; opacity: .6; z-index: -1; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================= COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 480px;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--brand-primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 95;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 8px; color: var(--brand-primary-dark); }
.cookie-banner p { font-size: .85rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.cookie-banner .btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 18px; font-size: .85rem; }

/* ============================================= LEGAL PAGE */
.legal-notice {
  background: #fff8e1;
  border-left: 4px solid #f9a825;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: .9rem;
  color: #6d5113;
}

/* ============================================= 404 */
.error-page {
  text-align: center;
  padding: 96px 24px;
}
.error-page h1 { font-size: 6rem; color: var(--brand-primary); line-height: 1; margin: 0 0 16px; font-weight: 800; }
.error-page h2 { font-size: 1.5rem; margin-bottom: 16px; }
.error-page p { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================= CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.125rem; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================= ADMIN */
.admin-body { background: var(--bg-soft); }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--brand-primary-dark);
  color: #fff;
  padding: 24px 0;
  position: sticky; top: 0; height: 100vh;
}
.admin-sidebar .logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 16px; color: #fff; font-weight: 800; font-size: 1.25rem; }
.admin-sidebar nav ul { list-style: none; padding: 0; margin: 0; }
.admin-sidebar nav ul li a {
  display: block; padding: 12px 24px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .92rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.admin-sidebar nav ul li a:hover,
.admin-sidebar nav ul li a.active {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-left-color: var(--brand-primary);
}
.admin-main { flex: 1; padding: 32px 48px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-header h1 { margin: 0; font-size: 1.75rem; }
.admin-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { background: var(--bg-soft); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.admin-table .actions { display: flex; gap: 8px; }
.admin-table .actions a, .admin-table .actions button { padding: 6px 12px; font-size: .85rem; border-radius: 6px; text-decoration: none; }

.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
  padding: 24px;
}
.admin-login-card {
  background: #fff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
}
.admin-login-card h1 { text-align: center; color: var(--brand-primary-dark); margin-bottom: 8px; }
.admin-login-card p { text-align: center; color: var(--text-muted); margin-bottom: 32px; font-size: .9rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border-left: 4px solid var(--brand-primary); }
.stat-card .stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.stat-card .stat-value { font-size: 2rem; font-weight: 800; color: var(--brand-primary-dark); margin: 4px 0; }

.badge-pill { display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill); font-size: .75rem; font-weight: 600; }
.badge-pill.active { background: #e8f5e9; color: #2e7d32; }
.badge-pill.inactive { background: #f5f5f5; color: #757575; }

/* ============================================= UTILITIES */
.hide { display: none !important; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .hero-content { padding: 56px 0; }
  .hero-nav { display: none; }
  .admin-sidebar { width: 100%; position: relative; height: auto; }
  .admin-layout { flex-direction: column; }
  .admin-main { padding: 20px; }
}
