:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #475569;
  --border: #e5e7eb;
  --brand-red: #d71920;
  --brand-gold: #f59e0b;
  --primary: var(--brand-red);
  --accent: var(--brand-gold);
  --horeca-primary: #cc6600;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout helpers */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.section {
  padding: 80px 0;
  scroll-margin-top: 96px;
  /* Avoid header overlap on anchor scroll */
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  filter: brightness(0.92);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--text);
  background: #fff;
}

.btn-outline:hover {
  background: rgba(245, 158, 11, 0.08);
}

/* Header & Nav */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 105px;
  width: auto;
}


.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

/* Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: #334155;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 20;
  border-radius: 10px;
  border: 1px solid var(--border);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.dropdown-content a {
  color: var(--text);
  padding: 12px 16px;
  display: block;
  font-weight: 400;
  font-size: 14px;
  transition: background-color 0.15s;
}

.dropdown-content a:hover {
  background-color: rgba(215, 25, 32, 0.08);
}

/* Highlight for Premium Pickles */
.dropdown-content .premium-link {
  color: var(--primary);
  font-weight: 600;
  border-top: 1px solid var(--border);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger & Mobile menu */

.hamburger {
  height: 40px;
  width: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-content: center;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  display: none;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  z-index: 40;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
}

/* Desktop nav visible on md+ */

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* Hero */

.hero {
  padding-top: 120px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://source.unsplash.com/1600x900/?pickles,spices') center/cover no-repeat;
  z-index: -2;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.96) 60%, #fff);
  z-index: -1;
}

.title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.brand-accent {
  color: var(--primary);
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 580px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill-avatars {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-left: -8px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-card {
  border-radius: 26px;
  overflow: hidden;
}

.hero-card-img {
  padding-top: 75%;
  background-color: #ffffff;
  position: relative;
}

.hero-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section backgrounds */

.section-muted {
  background: linear-gradient(#fff, #fff7ed);
}

.section-premium {
  background-color: #fff7ed;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.catering-section {
  background-color: #f7f7f7;
}

/* Cards */

.cards {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.12);
}

.card-img {
  position: relative;
  padding-top: 65%;
  overflow: hidden;
  background-color: #ffffff;
}

.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.5s;
  padding: 10px;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 18px;
}

.card-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

/* Typography */

.h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

.section-subtitle {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-subtitle-green {
  color: #10b981;
}

.muted {
  color: var(--muted);
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

/* Products header */

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* KV list */

.kvs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.kv {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.kv dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.kv dd {
  margin: 6px 0 0;
  font-weight: 600;
}

.kv-value {
  margin: 6px 0 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.kv-address {
  margin: 6px 0 0;
  font-weight: 600;
  font-size: 14px;
}

/* Catalog cards */

.qr-card {
  border-radius: 22px;
  justify-items: center;
  border: 1px solid var(--border);
  padding: 20px;
  background: #fff;
}

.cta-card {
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(135deg, var(--brand-red), #9f1239);
  color: #fff;
}

.cta-phone {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-top: 4px;
}

.cta-email,
.cta-web {
  display: block;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

/* Forms */

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form .field {
  margin-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(225, 29, 47, 0.12);
  margin-left: 20px;
}


/* Footer */

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: #64748b;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
form button,
form .btn {
  display: block;
  margin: 18px auto 0 auto;
  text-align: center;
}

/* Catering section highlight */

#catering .h2 {
  color: var(--horeca-primary) !important;
}

/* Catering cards specific */

.catering-card {
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catering-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

/* WhatsApp button (floating) */

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 18px #25D36655;
  z-index: 60;
  transition: transform 0.15s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float i {
  font-size: 26px;
}

/* Responsive tweaks */

@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }

  .lead {
    font-size: 16px;
  }

  .hero {
    padding-top: 104px;
  }

  .about-grid,
  .catalogs-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .kvs {
    grid-template-columns: 1fr;
  }

  .contact-kvs {
    grid-template-columns: 1fr;
  }
}