@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap&subset=latin,latin-ext,greek');

/* ===== ACCESSIBILITY ===== */

/* Skip-to-main-content link — visually hidden until focused by keyboard */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold, #B8922E);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius, 10px) 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold-dark, #8F6E1F);
  outline-offset: 2px;
}

/* Keyboard focus ring — brand-consistent gold outline */
:focus-visible {
  outline: 3px solid var(--gold, #B8922E);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Remove focus ring for mouse users only */
:focus:not(:focus-visible) {
  outline: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #B8922E;
  --gold-light: #D4A94A;
  --gold-dark: #8F6E1F;
  --dark: #18120C;
  --dark-brown: #3D2B1F;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --olive: #3E5320;
  --olive-light: #5A7832;
  --white: #FFFFFF;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'EB Garamond', serif;
  line-height: 1.3;
  color: var(--dark-brown);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.7);
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  font-size: 1rem;
}

.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-switch a {
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.lang-switch a.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: #ffffff;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  mix-blend-mode: multiply;
  /* Helps hide the white background if the navbar isn't completely white */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.7px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.mobile-only-nav {
  display: none;
}

.nav-links .mobile-nav-btn {
  background: var(--gold);
  color: #fff !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  width: 100%;
  margin-top: 8px;
}

.nav-links .mobile-nav-btn:hover {
  background: var(--gold-dark);
}

.nav-links .mobile-nav-btn::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #2a1f0e 0%, #3d2b1f 50%, #1a2a10 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold-light);
  animation: fadeInDown 1s ease;
}

.hero h1 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--gold-light) !important;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(170, 121, 47, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-cream {
  background: var(--cream);
}

.section-olive {
  background: linear-gradient(160deg, #3E5320 0%, #2E3D18 100%);
  color: #fff;
}

.section-olive h2,
.section-olive h3 {
  color: #fff;
}

/* Section wave dividers */
.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider-top {
  position: absolute;
  top: -1px;
  bottom: auto;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.section-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== STATS ===== */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== STORY SECTION ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content h2 {
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.story-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
  list-style-type: disc;
}

.story-content li {
  margin-bottom: 8px;
  color: var(--text-light);
  line-height: 1.6;
}

.story-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-brown);
  border: 1px solid rgba(170, 121, 47, 0.15);
  transition: all var(--transition);
}

.badge:hover {
  background: rgba(170, 121, 47, 0.08);
  border-color: var(--gold-light);
}

a.badge {
  color: var(--dark-brown);
}

a.badge:hover {
  color: var(--dark-brown);
}

.badge-icon {
  font-size: 1.2rem;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (min-width: 993px) {
  .products-grid {
    --card-width: calc((100% - 3 * 32px) / 4);
  }

  #olive-oil .products-grid {
    grid-template-columns: repeat(4, var(--card-width));
    justify-content: center;
  }

  #olives .products-grid {
    grid-template-columns: repeat(4, var(--card-width));
    justify-content: center;
  }

  #tapenade .products-grid {
    grid-template-columns: repeat(2, var(--card-width));
    justify-content: center;
  }

  #products .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  aspect-ratio: 4/3;
  background: transparent;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.product-card-img.full-bleed img {
  object-fit: cover;
}

.product-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-body h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.product-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.product-weight {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: auto;
}

.product-link:hover {
  gap: 10px;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.process-step {
  padding: 20px 8px;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.process-step:hover .process-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.process-connector {
  display: none;
}

/* ===== CERTIFICATIONS ===== */
.cert-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  flex-wrap: wrap;
}

.cert-item {
  text-align: center;
  flex: 1 1 250px;
  max-width: 320px;
}

.cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-bottom: 12px;
  font-size: 3.2rem;
}

.cert-icon img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.cert-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.cert-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== QUOTE ===== */
.quote-section {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #2a1f10 100%);
  padding: 80px 0;
  text-align: center;
}

.quote-text {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-attr {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.quote-decor {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  align-self: start;
}

.contact-form textarea {
  height: 280px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  height: 150px;
  resize: none;
  overflow-y: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(170, 121, 47, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--dark-brown), #2a1f10);
  text-align: center;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* ===== ORDER PAGE ===== */
.order-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.order-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all var(--transition);
}

.order-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.order-card-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.order-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-card-info {
  flex: 1;
}

.order-card-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.1px;
}

.order-card-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qty-input {
  width: 48px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 4px;
  font-size: 0.9rem;
}

.order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 100px;
}

/* ===== CATEGORY PICKER ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #FAF7F2 0%, #EFEBE4 100%);
  border: 1px solid rgba(184, 146, 46, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(184, 146, 46, 0.15);
  border-color: var(--gold);
  color: #fff;
}

.category-card img {
  position: absolute;
  top: 12%;
  left: 6%;
  width: 88%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
  transform: scale(1.06) translateY(-4px);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 18, 12, 0.75) 0%, rgba(24, 18, 12, 0.1) 45%, transparent 70%);
  transition: background 0.4s ease;
  z-index: 1;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(24, 18, 12, 0.85) 0%, rgba(24, 18, 12, 0.2) 50%, transparent 75%);
}

.category-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-brown);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.category-card-bottom {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.category-card-bottom h3 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 992px) {
  .desktop-br {
    display: none;
  }
}

.category-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.category-card-arrow i {
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(4px);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== WHY ORGANIC ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reason-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.reason-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 919px) and (min-width: 481px) {
  .reasons-grid>.reason-card:nth-child(3):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 8px);
  }
}


/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-children .fade-in:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children .fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children .fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children .fade-in:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children .fade-in:nth-child(6) {
  transition-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpCentered {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-scroll {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  animation: fadeInUpCentered 1s ease 1.2s both;
}

.hero-scroll.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-scroll span {
  display: block;
}

.hero-scroll-arrow {
  display: block;
  margin: 8px auto 0;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: float 2s ease-in-out infinite;
  transition: border-color 0.3s ease;
}

/* ===== ORDER PAGE LAYOUT ===== */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

@media (min-width: 993px) {
  .mobile-only {
    display: none !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }

  .hero {
    padding-bottom: 75px;
  }

  .hero-scroll {
    bottom: 15px;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }

  .hero-scroll-arrow {
    width: 14px;
    height: 14px;
    margin: 4px auto 0;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: left var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
    left: 0;
    right: auto;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-cta {
    display: none;
  }

  .mobile-only-nav {
    display: block;
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Story content headings centered on mobile & tablet */
  .story-content h2,
  .story-content h3 {
    text-align: center;
  }

  .story-content .section-label {
    display: block;
    text-align: center;
  }

  .story-content .story-badges {
    justify-content: center;
  }

  /* Badges: column layout for consistent height on tablet & mobile */
  .story-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 10px;
  }

  .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 12px 10px;
    height: 100%;
    box-sizing: border-box;
  }

  .badge .badge-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .story-grid[style*="direction: rtl"] {
    direction: ltr !important;
  }

  .story-grid[style*="direction: rtl"]>* {
    direction: ltr !important;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .section-divider svg,
  .section-divider-top svg {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .top-bar-left {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .cert-strip {
    gap: 24px;
  }

  .cert-item {
    flex: 0 0 calc(50% - 12px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-divider svg,
  .section-divider-top svg {
    height: 30px;
  }

  .page-header {
    padding: 100px 0 48px;
  }

  .order-products {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  /* Footer: 2-column quick links */
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .footer-grid>div:last-child .footer-links {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
  }

  /* Footer bottom: stack with producer code above copyright */
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cert-item {
    flex: 0 0 100%;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    aspect-ratio: 4/3;
  }

  /* Badges equal size on mobile */
  .story-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 8px;
  }

  .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 12px 8px;
    font-size: 0.8rem;
    height: 100%;
    box-sizing: border-box;
  }

  .badge .badge-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
}

.gallery-item {
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover .play-btn {
  background: var(--gold);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* Hide number input arrows (spinners) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
  /* Firefox */
}

/* ===== BASKET ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-add-to-basket {
  padding: 10px 20px;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
}

.btn-add-to-basket i {
  font-size: 0.8rem;
}

.btn-add-to-basket.added {
  background: var(--olive);
  pointer-events: none;
}

.nav-basket {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.15rem;
  padding: 6px;
  transition: color var(--transition);
}

.nav-basket:hover {
  color: var(--gold);
}

.nav-basket-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  transition: transform 0.3s ease;
}

.nav-basket-badge.bump {
  animation: badgeBump 0.3s ease;
}

.nav-basket-badge:empty {
  display: none;
}

@keyframes badgeBump {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

/* Toast notification */
.basket-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.basket-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.basket-toast i {
  color: var(--gold-light);
}

@media (max-width: 992px) {
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .hamburger {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .nav-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    position: static;
    transform: none;
  }
}

/* ===== PRODUCT CATEGORY FILTERING & TRANSITIONS ===== */
.product-section {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  max-height: 4000px;
  /* Safe upper bound for full section expansion */
  overflow: visible;
}

.product-section.filtered-out {
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  pointer-events: none;
}

/* Category grid active state style enhancements */
.category-card.active {
  border-color: var(--gold) !important;
  box-shadow: 0 16px 40px rgba(184, 146, 46, 0.25) !important;
  transform: translateY(-6px);
  color: #fff;
}

.category-card.active img {
  transform: scale(1.06) translateY(-4px);
}

.category-card.active .category-card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(4px);
}

.category-card.active .category-card-arrow i {
  transform: rotate(180deg);
}

/* Dim inactive cards to draw focus to the active choice */
.category-grid.has-active .category-card:not(.active) {
  opacity: 0.5;
  filter: grayscale(20%);
}

.category-grid.has-active .category-card:not(.active):hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

/* ===== MOBILE WIZARD (Order Page) ===== */
.mobile-stepper {
  display: none;
}

.mobile-wizard-nav {
  display: none;
}

@media (max-width: 991px) {
  .desktop-only-hr {
    display: none;
  }

  .mobile-stepper {
    display: block;
    margin-bottom: 24px;
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .stepper-progress {
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .stepper-bar {
    height: 100%;
    background: var(--gold);
    width: 33.33%;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .stepper-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    text-align: center;
  }

  .wizard-step {
    display: none;
    animation: fadeInStep 0.4s ease forwards;
  }

  .wizard-step.active {
    display: block;
  }

  @keyframes fadeInStep {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-wizard-nav {
    display: block;
  }

  .mobile-wizard-nav.mobile-wizard-flex {
    display: flex;
    gap: 12px;
  }

  .order-summary {
    background: transparent;
    padding: 0;
  }

  .wizard-step[data-step="2"],
  .wizard-step[data-step="3"] {
    background: var(--cream);
    padding: 24px;
    border-radius: var(--radius);
  }
}

.mobile-wizard-nav .btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.mobile-wizard-nav .btn-outline:hover {
  background: var(--text);
  color: #fff;
}

@media (max-width: 992px) {
  .product-section {
    max-height: 8000px;
  }
}

/* ── Process Tabs (our-story.html) ── */
.process-tabs {
  margin-top: 40px;
  background: var(--cream-dark);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}

.proc-tab-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.proc-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px 18px;
  background: none;
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}

.proc-tab-btn:last-child {
  border-right: none;
}

.proc-tab-btn:hover {
  background: rgba(61, 43, 31, 0.04);
}

.proc-tab-btn.active {
  background: rgba(61, 43, 31, 0.06);
}

/* Underline indicator on active tab */
.proc-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--dark-brown);
  border-radius: 2px 2px 0 0;
}

.proc-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  color: var(--dark-brown);
  font-size: 1.25rem;
  border: 2px solid rgba(61, 43, 31, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.proc-tab-btn.active .proc-tab-icon,
.proc-tab-btn:hover .proc-tab-icon {
  background: var(--dark-brown);
  color: #fff;
  border-color: var(--dark-brown);
}

.proc-tab-label {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-brown);
  text-align: center;
  line-height: 1.3;
}

.proc-tab-panel {
  padding: 24px 28px;
  display: grid;
}

.proc-tab-content {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.proc-tab-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.proc-tab-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .proc-tab-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-tab-btn:nth-child(2) {
    border-right: none;
  }

  .proc-tab-btn:nth-child(3) {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }

  .proc-tab-btn:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }
}

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.35);
  animation: cookieBannerSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

#cookie-banner.cookie-banner--hidden {
  animation: cookieBannerSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes cookieBannerSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookieBannerSlideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
}

.cookie-banner__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.cookie-banner__text {
  flex: 1;
  min-width: 0;
}

.cookie-banner__title {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.cookie-banner__body {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.cookie-banner__link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.cookie-banner__link:hover {
  color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--dark);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn--decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.25rem;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 0.8rem;
  }
}