@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --color-saffron: #f2b544;
  --color-copper: #b97432;
  --color-pomegranate: #b03a48;
  --color-fig: #6b2d4f;
  --color-olive: #4a5d3b;
  --color-sand: #f6ede0;
  --color-ivory: #fbf8f2;
  --color-text: #37261c;
  --color-accent: #c45d5d;
  --shadow-soft: 0 12px 32px rgba(55, 38, 28, 0.18);
  --transition-default: all 0.3s ease;
  --radius-large: 32px;
  --radius-medium: 20px;
  --radius-small: 12px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at 12% 18%, rgba(242, 181, 68, 0.32), transparent 55%),
    radial-gradient(circle at 82% 12%, rgba(176, 58, 72, 0.18), transparent 60%),
    var(--color-ivory);
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: var(--radius-small);
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(242, 181, 68, 0.95), rgba(176, 58, 72, 0.92));
  box-shadow: var(--shadow-soft);
}

.top-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-sand);
}

.logo span {
  display: inline-block;
  background: linear-gradient(135deg, rgba(242, 181, 68, 0.9), rgba(176, 58, 72, 0.92));
  color: var(--color-ivory);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(55, 38, 28, 0.25);
}

.logo .badge {
  width: 42px;
  height: 42px;
  background: conic-gradient(from 45deg, #f2b544, #b97432, #b03a48, #6b2d4f, #f2b544);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.logo .badge::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: white;
  mask: radial-gradient(circle at center, transparent 45%, black 46%);
}

.nav-toggle {
  display: none;
  background: white;
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-small);
  transition: var(--transition-default);
}

nav a:hover,
nav a:focus {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(55, 38, 28, 0.7);
  margin-bottom: 1.2rem;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--color-pomegranate);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(176, 58, 72, 0.95), rgba(242, 181, 68, 0.92));
  color: white;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 12px 28px rgba(55, 38, 28, 0.25);
  transition: var(--transition-default);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 36px rgba(55, 38, 28, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-pomegranate);
  border: 2px solid rgba(176, 58, 72, 0.4);
  background: rgba(255, 255, 255, 0.65);
  transition: var(--transition-default);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.text-link {
  font-weight: 600;
  color: var(--color-fig);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.text-link::after {
  content: '→';
  font-size: 0.9rem;
  transition: var(--transition-default);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: var(--color-pomegranate);
  margin-bottom: 0.5rem;
}

.section-title p {
  max-width: 620px;
  margin: 0.75rem auto 0;
}

.flagship .card {
  padding-top: 2.4rem;
}

.flagship .badge-tag {
  background: linear-gradient(135deg, rgba(176, 165, 222, 0.85), rgba(242, 181, 68, 0.85));
}

.flagship .card img {
  max-height: 200px;
  object-fit: cover;
}

.contact-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.contact-hero-text {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-large);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-highlight {
  background: linear-gradient(160deg, rgba(242, 181, 68, 0.25), rgba(176, 58, 72, 0.18));
  border-radius: var(--radius-large);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-highlight h2 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--color-pomegranate);
}

.contact-highlight ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.2rem;
}

.contact-highlight li strong {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: rgba(55, 38, 28, 0.7);
}

.contact-highlight li a {
  font-weight: 600;
  color: var(--color-fig);
}

.contact-cards .section-title {
  margin-bottom: 2rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-medium);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 5px solid rgba(176, 58, 72, 0.3);
}

.contact-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--color-pomegranate);
}

.contact-card-meta {
  font-size: 0.9rem;
  color: rgba(55, 38, 28, 0.6);
}

.collections .card {
  min-height: 340px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-medium);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid rgba(176, 58, 72, 0.38);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: var(--transition-default);
}

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

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--color-fig);
}

.badge-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, rgba(242, 181, 68, 0.6), rgba(176, 58, 72, 0.6));
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-item {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 3px dashed rgba(176, 58, 72, 0.25);
}

.why-item h3 {
  margin: 0 0 0.75rem;
  font-family: 'Poppins', sans-serif;
}

footer {
  background: #2e1f16;
  color: #fcefe6;
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.footer-column nav {
  display: grid;
  gap: 0.45rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 181, 68, 0.9), rgba(176, 58, 72, 0.9));
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.85rem;
  box-shadow: 0 8px 18px rgba(55, 38, 28, 0.3);
}

.newsletter form {
  display: grid;
  gap: 1rem;
}

.newsletter input[type='email'],
.newsletter input[type='text'],
.newsletter input[type='number'],
.newsletter input[type='url'],
.newsletter input[type='date'] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  border: none;
  background: rgba(255, 255, 255, 0.9);
}

.newsletter textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  min-height: 140px;
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.legal-links a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(252, 239, 230, 0.84);
}

.breadcrumbs {
  font-size: 0.9rem;
  margin: 1.5rem auto;
  max-width: var(--max-width);
  padding: 0 2rem;
  color: rgba(61, 44, 44, 0.7);
}

.section-alt {
  background: linear-gradient(135deg, rgba(255, 232, 163, 0.5), rgba(167, 240, 209, 0.5));
  border-radius: var(--radius-large);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

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

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-default);
}

.product-card:hover {
  transform: translateY(-12px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-default);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, #b3e5ff, #a7f0d1);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  border-radius: var(--radius-small);
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 18px rgba(55, 38, 28, 0.18);
}

.gallery-placeholder {
  min-height: 140px;
  border-radius: var(--radius-small);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: rgba(55, 38, 28, 0.65);
  background: repeating-linear-gradient(
    135deg,
    rgba(242, 181, 68, 0.18),
    rgba(242, 181, 68, 0.18) 16px,
    rgba(176, 58, 72, 0.15) 16px,
    rgba(176, 58, 72, 0.15) 32px
  );
}

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

.event-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-medium);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid rgba(176, 58, 72, 0.35);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.story-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.story-article h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--color-pomegranate);
  margin-bottom: 0.5rem;
}

.story-meta {
  font-size: 0.9rem;
  color: rgba(55, 38, 28, 0.6);
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-article p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.story-article strong {
  color: var(--color-fig);
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
}

.community-gallery .section-title p a {
  font-weight: 600;
  color: var(--color-fig);
}

.events-list .event-card h3 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}

.impact-grid .impact-card h3 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}
.form {
  display: grid;
  gap: 1rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(55, 38, 28, 0.15);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-section .section-title {
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-map {
  background: linear-gradient(145deg, rgba(148, 212, 189, 0.3), rgba(242, 181, 68, 0.25));
  border-radius: var(--radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-map h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--color-pomegranate);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 1.5rem;
  align-items: start;
}

.product-gallery.single {
  grid-template-columns: 1fr;
}

.product-gallery.single .thumbs {
  display: none;
}

.thumbs {
  display: grid;
  gap: 0.75rem;
}

.thumbs img {
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition-default);
}

.thumbs img.active,
.thumbs img:hover {
  border-color: var(--color-accent);
}

.product-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-overview h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
}

.product-price {
  font-size: 1.8rem;
  color: var(--color-plum);
  margin: 1rem 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.info-table th,
.info-table td {
  padding: 1rem 1.25rem;
}

.info-table tr:nth-child(even) {
  background: rgba(255, 232, 163, 0.35);
}

.form {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-medium);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(61, 44, 44, 0.12);
  border-radius: var(--radius-small);
  font-family: inherit;
  margin-bottom: 1rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 122, 162, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.recipe-card {
  display: grid;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 2rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.recipe-meta {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--color-fig);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.team-card h3 {
  margin: 0.75rem 0 0.3rem;
  font-family: 'Poppins', sans-serif;
}

.timeline {
  border-left: 4px solid rgba(255, 122, 162, 0.4);
  padding-left: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: -1.9rem;
  top: 0.4rem;
  box-shadow: 0 0 0 6px rgba(255, 122, 162, 0.2);
}

.blog-card {
  background: rgba(255, 255, 255, 0.93);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(55, 38, 28, 0.66);
}

.search-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.search-bar input[type="search"] {
  flex: 1;
  min-width: 240px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow-soft);
}

.faq-item {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: start;
}

.map-wrapper {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.legal-page {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  margin-bottom: 3rem;
}

.legal-page h1,
.legal-page h2 {
  font-family: 'Poppins', sans-serif;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  max-width: 540px;
  width: calc(100% - 2rem);
  background: rgba(242, 181, 68, 0.92);
  color: var(--color-text);
  padding: 1.5rem;
  border-radius: var(--radius-large);
  box-shadow: 0 18px 36px rgba(49, 29, 43, 0.25);
  display: none;
  z-index: 999;
}

.cookie-banner.show {
  display: grid;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  flex: 1;
  min-width: 140px;
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: rgba(46, 31, 22, 0.15);
  color: var(--color-pomegranate);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-default);
  min-width: 140px;
}

.cookie-link:hover,
.cookie-link:focus {
  background: rgba(46, 31, 22, 0.25);
}

.table-like {
  display: grid;
  gap: 0.75rem;
}

.table-like div {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(179, 229, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-plum);
}

.animate-pop {
  animation: pop-in 0.7s ease forwards;
}

@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .top-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav.open {
    max-height: 480px;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  footer {
    padding: 2.5rem 1.5rem;
  }

  .legal-page {
    padding: 2rem;
  }
}

@media (max-width: 540px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .recipe-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-banner {
    bottom: 1rem;
    padding: 1.2rem;
  }
}

