/** Shopify CDN: Minification failed

Line 125:19 Unexpected "*"

**/
/* ==========================================================================
   POBA — Premium Olive Oil Ritual
   Custom Styles
   Color System: Olive / Stone / Gold (from AI Studio design)
   Fonts: Playfair Display (serif), Inter (sans), Cinzel (display)
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Olive palette */
  --oleo-olive-50: #f4f7f4;
  --oleo-olive-100: #e3ebe3;
  --oleo-olive-200: #c5d9c5;
  --oleo-olive-300: #9cbca0;
  --oleo-olive-400: #759e7a;
  --oleo-olive-500: #548259;
  --oleo-olive-600: #406645;
  --oleo-olive-700: #345239;
  --oleo-olive-800: #2b4230;
  --oleo-olive-900: #243628;

  /* Stone palette */
  --oleo-stone-50: #fafaf9;
  --oleo-stone-100: #f5f5f4;
  --oleo-stone-200: #e7e5e4;
  --oleo-stone-300: #d6d3d1;
  --oleo-stone-400: #a8a29e;
  --oleo-stone-500: #78716c;
  --oleo-stone-600: #57534e;
  --oleo-stone-700: #44403c;
  --oleo-stone-800: #292524;
  --oleo-stone-900: #1c1917;

  /* Gold accent */
  --oleo-gold-500: #c5a059;
  --oleo-gold-600: #b08d4b;

  /* Functional tokens */
  --oleo-bg: var(--oleo-stone-50);
  --oleo-text: var(--oleo-stone-900);
  --oleo-text-secondary: var(--oleo-stone-600);
  --oleo-text-muted: var(--oleo-stone-500);
  --oleo-border: var(--oleo-stone-200);
  --oleo-primary: var(--oleo-olive-900);
  --oleo-primary-hover: var(--oleo-olive-800);
  --oleo-accent: var(--oleo-gold-500);

  /* Typography */
  --oleo-font-serif: 'Playfair Display', serif;
  --oleo-font-sans: 'Inter', sans-serif;
  --oleo-font-display: 'Cinzel', serif;

  /* Spacing */
  --oleo-section-py: 6rem;
  --oleo-container-px: 2rem;
  --oleo-container-max: 1320px;
}

/* !! CRITICAL: Dawn sets html{font-size:62.5%} making 1rem=10px.
   We MUST reset to 100% so 1rem=16px for all Oleo sizing. */
html {
  font-size: 100% !important;
}

/* Ensure every page fills the viewport */
.content-for-layout,
#MainContent {
  min-height: 100vh;
}

/* ---------- Dawn Override Layer ---------- */
body,
.shopify-section,
.shopify-section-group-header-group,
.shopify-section-group-footer-group {
  font-family: var(--oleo-font-sans) !important;
  background-color: var(--oleo-bg);
  color: var(--oleo-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 1.125rem !important;
  letter-spacing: 0 !important;
}

/* Override Dawn heading resets */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--oleo-font-serif) !important;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Override Dawn anchor/button resets */
a {
  color: inherit;
}
button {
  font-family: var(--oleo-font-sans) !important;
}
input,
textarea,
select {
  font-family: var(--oleo-font-sans) !important;
}

/* Kill Dawn's content-for-layout max-width constraint */
#MainContent .shopify-section {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Override Dawn's default section wrapper padding */
.section-template--*,
.shopify-section--template {
  padding: 0 !important;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--oleo-stone-300);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--oleo-stone-400);
}

/* ---------- Container ---------- */
.oleo-container {
  max-width: var(--oleo-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--oleo-container-px);
  padding-right: var(--oleo-container-px);
}

/* ---------- Typography ---------- */
.oleo-font-serif {
  font-family: var(--oleo-font-serif);
}
.oleo-font-sans {
  font-family: var(--oleo-font-sans);
}
.oleo-font-display {
  font-family: var(--oleo-font-display);
}

.oleo-heading-1 {
  font-family: var(--oleo-font-serif) !important;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
  color: var(--oleo-text);
  font-weight: 400;
}

.oleo-heading-2 {
  font-family: var(--oleo-font-serif) !important;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 3rem) !important;
  line-height: 1.15 !important;
  color: var(--oleo-text);
  font-weight: 400;
}

.oleo-heading-3 {
  font-family: var(--oleo-font-serif) !important;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem) !important;
  line-height: 1.3 !important;
  color: var(--oleo-text);
  font-weight: 400;
}

.oleo-subheading {
  font-family: var(--oleo-font-sans) !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--oleo-olive-700);
}

.oleo-body-text {
  font-family: var(--oleo-font-sans) !important;
  color: var(--oleo-text-secondary);
  line-height: 1.8;
  font-size: 1.125rem;
}

.oleo-italic {
  font-style: italic;
}
.oleo-text-olive {
  color: var(--oleo-olive-800);
}
.oleo-text-gold {
  color: var(--oleo-gold-500);
}

/* ---------- Buttons ---------- */
.oleo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--oleo-font-sans) !important;
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 3rem;
}

.oleo-btn-primary {
  background-color: var(--oleo-primary);
  color: #fff;
  padding: 1rem 2rem;
}
.oleo-btn-primary:hover {
  background-color: var(--oleo-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 54, 40, 0.3);
}

.oleo-btn-primary-compact {
  background-color: var(--oleo-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}
.oleo-btn-primary-compact:hover {
  background-color: var(--oleo-primary-hover);
  transform: translateY(-1px);
}

.oleo-btn:disabled {
  opacity: 0.8;
  cursor: wait;
}

.oleo-btn svg,
.oleo-btn .oleo-icon {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.2s ease;
}

.oleo-btn:hover svg,
.oleo-btn:hover .oleo-icon {
  transform: translateX(0.25rem);
}

/* Hero dual CTA buttons */
.oleo-btn--primary {
  background-color: var(--oleo-primary);
  color: #fff;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}
.oleo-btn--primary:hover {
  background-color: var(--oleo-primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 54, 40, 0.3);
}
.oleo-btn--outline {
  background: transparent;
  color: var(--oleo-primary);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border: 1.5px solid var(--oleo-primary);
}
.oleo-btn--outline:hover {
  background-color: var(--oleo-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Form Inputs ---------- */
.oleo-input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: #fff;
  border: 1px solid var(--oleo-border);
  border-radius: 0.5rem;
  font-family: var(--oleo-font-sans) !important;
  font-size: 1rem;
  color: var(--oleo-text);
  min-height: 3rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.oleo-input:focus {
  outline: none;
  border-color: var(--oleo-olive-500);
  box-shadow: 0 0 0 2px rgba(84, 130, 89, 0.2);
}
.oleo-input::placeholder {
  color: var(--oleo-stone-400);
  font-size: 1rem;
}
.oleo-input-compact {
  padding: 0.625rem 0.875rem;
  min-height: 2.5rem;
}

/* ---------- Animations ---------- */
@keyframes oleoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes oleoSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes oleoPing {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes oleoSpin {
  to {
    transform: rotate(360deg);
  }
}

.oleo-animate-fade-in {
  animation: oleoFadeIn 1s ease-out forwards;
}
.oleo-animate-slide-up {
  animation: oleoSlideUp 0.8s ease-out forwards;
}
.oleo-animate-ping {
  animation: oleoPing 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.oleo-animate-spin {
  animation: oleoSpin 1s linear infinite;
}

/* ---------- Section Spacing ---------- */
.oleo-section {
  padding-top: var(--oleo-section-py);
  padding-bottom: var(--oleo-section-py);
}

/* ---------- Badges ---------- */
.oleo-badge-sold-out {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b91c1c;
  background: #fef2f2;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #fecaca;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oleo-badge-discount {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--oleo-olive-800);
  background: var(--oleo-olive-50);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.oleo-badge-popular {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--oleo-gold-600);
  padding: 0.375rem 1rem;
  border-radius: 0 0 0.5rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* ---------- HEADER ---------- */
.oleo-header-section {
  position: relative;
  z-index: 9999;
}

.oleo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}
.oleo-header--transparent {
  background: transparent;
}
.oleo-header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

.oleo-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.oleo-header__logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--oleo-olive-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.oleo-header__logo-icon:hover {
  background: var(--oleo-olive-800);
}
.oleo-header__logo-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.oleo-header__logo-text {
  font-family: var(--oleo-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--oleo-olive-900);
  text-decoration: none;
}

.oleo-header__nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.oleo-header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--oleo-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}
.oleo-header__nav a:hover {
  color: var(--oleo-olive-900);
}

.oleo-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oleo-header__cart-btn {
  position: relative;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--oleo-text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}
.oleo-header__cart-btn:hover {
  color: var(--oleo-olive-900);
}
.oleo-header__cart-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.oleo-header__cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: #ef4444;
  border-radius: 50%;
}

.oleo-mobile-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.oleo-mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 768px) {
  .oleo-header__nav,
  .oleo-header__cart-btn {
    display: none;
  }
  .oleo-mobile-toggle {
    display: block;
  }
}

/* Mobile Menu */
.oleo-mobile-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--oleo-stone-100);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10000;
}
.oleo-mobile-menu.active {
  display: flex !important;
  animation: oleoFadeIn 0.3s ease;
}

.oleo-mobile-menu a {
  font-family: var(--oleo-font-serif);
  font-size: 1.25rem;
  color: var(--oleo-stone-800);
  text-decoration: none;
  padding: 0.5rem 0;
}

/* ---------- HERO ---------- */
.oleo-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--oleo-stone-100);
}

.oleo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.oleo-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.oleo-hero__bg-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245, 245, 244, 0.9), rgba(245, 245, 244, 0.6), transparent);
}
.oleo-hero__bg-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--oleo-stone-100), transparent, rgba(245, 245, 244, 0.1));
}

@media (min-width: 1024px) {
  .oleo-hero__bg-overlay-1 {
    background: linear-gradient(to right, rgba(245, 245, 244, 0.9), rgba(245, 245, 244, 0.4), transparent);
  }
}

/* Hero Two-Column Layout */
.oleo-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 6rem 0 3rem;
  width: 100%;
  align-items: center;
}
.oleo-hero__left {
  max-width: 40rem;
}
.oleo-hero__right {
  width: 100%;
  max-width: 26rem;
}

@media (min-width: 1024px) {
  .oleo-hero__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 4rem;
  }
  .oleo-hero__left {
    flex: 1 1 55%;
    max-width: 36rem;
  }
  .oleo-hero__right {
    flex: 0 0 auto;
    width: 24rem;
    max-width: 24rem;
    margin-right: -4rem; /* Shift card to the right to reveal more of the background image */
  }
}

/* Hero Text Card for Contrast */
.oleo-hero__text-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Early Access Badge */
.oleo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 2rem;
  background: rgba(36, 54, 40, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(36, 54, 40, 0.2);
  border-radius: 9999px;
}
.oleo-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--oleo-olive-600);
  box-shadow: 0 0 0 3px rgba(36, 54, 40, 0.15);
  flex-shrink: 0;
}
.oleo-hero__badge-text {
  font-family: var(--oleo-font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oleo-olive-900);
}

/* Waitlist Card */
.oleo-hero__waitlist-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 30rem;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}
.oleo-hero__waitlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.oleo-hero__restock-text {
  font-size: 0.875rem;
  color: var(--oleo-text-muted);
}

/* Social Proof Bar */
.oleo-hero__social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--oleo-text-muted);
  filter: grayscale(1);
  opacity: 0.8;
}
.oleo-hero__avatars {
  display: flex;
}
.oleo-hero__avatars img,
.oleo-hero__avatars .oleo-avatar-placeholder {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--oleo-stone-300);
  object-fit: cover;
  margin-left: -0.5rem;
}
.oleo-hero__avatars > :first-child {
  margin-left: 0;
}

.oleo-hero__stars {
  display: flex;
  color: #eab308;
}
.oleo-hero__stars svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
}

.oleo-hero__trusted-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- BENEFITS ---------- */
.oleo-benefits {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.oleo-benefits__hr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--oleo-stone-200), transparent);
}

.oleo-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .oleo-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .oleo-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.oleo-benefit-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--oleo-stone-50);
  border-radius: 0.75rem;
  border: 1px solid var(--oleo-stone-100);
  transition: border-color 0.3s ease;
}
.oleo-benefit-card:hover {
  border-color: var(--oleo-olive-200);
}

.oleo-benefit-card__icon {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  color: var(--oleo-olive-700);
  transition: all 0.3s ease;
}
.oleo-benefit-card:hover .oleo-benefit-card__icon {
  background: var(--oleo-olive-900);
  color: #fff;
}
.oleo-benefit-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.oleo-benefit-card__study {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--oleo-olive-700);
  text-decoration: none;
  transition: color 0.2s ease;
}
.oleo-benefit-card__study:hover {
  color: var(--oleo-olive-900);
}
.oleo-benefit-card__study svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.25rem;
}

/* How It Works / Daily Protocol */
.oleo-protocol {
  background: var(--oleo-olive-900);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* CSS fallback background when no image is uploaded */
.oleo-protocol::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 20px,
      rgba(255, 255, 255, 0.05) 20px,
      rgba(255, 255, 255, 0.05) 22px
    );
}
@media (min-width: 768px) {
  .oleo-protocol {
    padding: 4rem;
  }
}

.oleo-protocol__texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}
.oleo-protocol__texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oleo-protocol__content {
  position: relative;
  z-index: 10;
}

.oleo-protocol__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .oleo-protocol__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.oleo-protocol__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oleo-protocol__step-number {
  font-family: var(--oleo-font-display);
  font-size: 3rem;
  color: var(--oleo-gold-500);
  margin-bottom: 1rem;
  opacity: 0.5;
}
.oleo-protocol__step-title {
  font-family: var(--oleo-font-serif);
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.oleo-protocol__step-desc {
  color: var(--oleo-olive-100);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- PRODUCT DETAIL ---------- */
.oleo-product-detail {
  background: #fff;
}

.oleo-product-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .oleo-product-detail__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oleo-product-detail__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.oleo-product-detail__images img {
  border-radius: 0.5rem;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  width: 100%;
  transition: all 0.7s ease;
}
.oleo-product-detail__images img:nth-child(2) {
  margin-top: 2rem;
}

/* Nutrition Panel */
.oleo-nutrition {
  background: var(--oleo-stone-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--oleo-stone-100);
  margin-bottom: 2rem;
}
.oleo-nutrition__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.oleo-nutrition__item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--oleo-stone-200);
  font-size: 1rem;
}
.oleo-nutrition__item strong {
  font-weight: 700;
}

/* Taste Note */
.oleo-taste-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #fefce8;
  border: 1px solid #fef9c3;
  border-radius: 0.375rem;
  color: #854d0e;
  font-size: 1rem;
}
.oleo-taste-note svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Comparison Table */
.oleo-comparison {
  max-width: 56rem;
  margin: 0 auto 6rem;
  overflow: hidden;
}
.oleo-comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  text-align: left;
  min-width: 650px;
  table-layout: auto;
}
.oleo-comparison thead {
  font-size: 0.8125rem;
  text-transform: uppercase;
  color: var(--oleo-text-muted);
  background: var(--oleo-stone-50);
}
.oleo-comparison th {
  padding: 1rem 1.5rem;
  white-space: nowrap;
}
.oleo-comparison td {
  padding: 1rem 1.5rem;
  white-space: nowrap;
}
.oleo-comparison tbody tr {
  border-bottom: 1px solid var(--oleo-stone-100);
}

.oleo-comparison__highlight-th {
  background: var(--oleo-olive-50);
  color: var(--oleo-olive-900);
  font-weight: 700;
  border-top: 1px solid var(--oleo-olive-100);
  border-left: 1px solid var(--oleo-olive-100);
  border-right: 1px solid var(--oleo-olive-100);
  border-radius: 0.5rem 0.5rem 0 0;
}
.oleo-comparison__highlight-td {
  background: rgba(244, 247, 244, 0.3);
  color: var(--oleo-olive-900);
  font-weight: 500;
  border-left: 1px solid var(--oleo-olive-100);
  border-right: 1px solid var(--oleo-olive-100);
}
td.oleo-comparison__font-medium {
  font-weight: 500;
}

/* FAQ — uses CSS grid row trick for jitter-free animation */
.oleo-faq {
  max-width: 42rem;
  margin: 0 auto;
}
.oleo-faq__item {
  border-bottom: 1px solid var(--oleo-stone-200);
}
.oleo-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--oleo-font-sans) !important;
  font-weight: 500;
  color: var(--oleo-text);
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 1.0625rem;
}
.oleo-faq__question:hover {
  color: var(--oleo-olive-700);
}
.oleo-faq__question span {
  flex: 1;
}
.oleo-faq__question svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.oleo-faq__item.active .oleo-faq__question svg {
  transform: rotate(180deg);
}

/* Grid-row animation: 0fr → 1fr is buttery smooth, no max-height jitter */
.oleo-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.oleo-faq__item.active .oleo-faq__answer {
  grid-template-rows: 1fr;
}
.oleo-faq__answer > div,
.oleo-faq__answer > p {
  overflow: hidden;
}
.oleo-faq__answer p {
  color: var(--oleo-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  padding-bottom: 1.25rem;
}

/* ---------- TESTIMONIALS ---------- */
.oleo-testimonials {
  background: var(--oleo-stone-100);
}

.oleo-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .oleo-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.oleo-review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--oleo-stone-200);
  position: relative;
}

.oleo-review-card__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: var(--oleo-stone-200);
  fill: currentColor;
}

.oleo-review-card__stars {
  display: flex;
  color: #eab308;
  margin-bottom: 1rem;
}
.oleo-review-card__stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.oleo-review-card__text {
  color: var(--oleo-stone-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.oleo-review-card__author {
  font-family: var(--oleo-font-serif);
  font-weight: 500;
  color: var(--oleo-text);
}
.oleo-review-card__role {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--oleo-olive-600);
}

/* Press Strip */
.oleo-press-strip {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--oleo-stone-200);
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.5s ease;
}
.oleo-press-strip:hover {
  filter: grayscale(0);
}

.oleo-press-strip__label {
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--oleo-text-muted);
}
.oleo-press-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .oleo-press-strip__logos {
    gap: 5rem;
  }
}
.oleo-press-strip__logos span {
  font-family: var(--oleo-font-serif);
  font-size: 1.375rem;
  font-weight: 700;
}

/* ---------- SUBSCRIPTION BUILDER ---------- */
.oleo-subscription {
  background: var(--oleo-stone-50);
}

.oleo-subscription__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .oleo-subscription__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 52rem;
  }
}

.oleo-plan-card {
  position: relative;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--oleo-stone-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.oleo-plan-card:hover {
  border-color: var(--oleo-olive-300);
}

.oleo-plan-card--active {
  border: 2px solid var(--oleo-olive-600);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  z-index: 10;
}
.oleo-plan-card--inactive {
  opacity: 0.9;
  filter: grayscale(0.3);
}
.oleo-plan-card--inactive:hover {
  filter: grayscale(0);
}

.oleo-plan-card__sold-out-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--oleo-stone-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 0 0.5rem;
  z-index: 20;
}

.oleo-plan-card__popular-badge {
  position: absolute;
  top: -5px;
  left: 0;
  transform: none;
  z-index: 20;
}

.oleo-plan-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.oleo-plan-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.oleo-plan-card__sub {
  font-size: 1rem;
  color: var(--oleo-text-muted);
  margin-top: 0.25rem;
}

.oleo-plan-card__price {
  font-family: var(--oleo-font-sans) !important;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--oleo-olive-900);
}
.oleo-plan-card__original-price {
  font-size: 1rem;
  color: var(--oleo-stone-400);
  text-decoration: line-through;
}

.oleo-plan-card__tagline {
  color: var(--oleo-text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.oleo-plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.oleo-plan-card__features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--oleo-stone-700);
  margin-bottom: 0.75rem;
}
.oleo-plan-card__features li svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--oleo-olive-600);
  margin-right: 0.625rem;
  flex-shrink: 0;
}

.oleo-plan-card__waitlist-area {
  border-top: 1px solid var(--oleo-stone-100);
  padding-top: 1.5rem;
  margin-top: auto;
}
.oleo-plan-card__batch-info {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b91c1c;
  text-align: center;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.oleo-plan-card__batch-info svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Trust Badges */
.oleo-trust-badges {
  margin-top: 3rem;
  text-align: center;
}
.oleo-trust-badges p {
  font-size: 1rem;
  color: var(--oleo-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.oleo-trust-badges__dot {
  width: 0.25rem;
  height: 0.25rem;
  background: var(--oleo-stone-300);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- JOURNAL TEASER ---------- */
.oleo-journal {
  background: var(--oleo-olive-50);
}

.oleo-journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 768px) {
  .oleo-journal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oleo-journal__card {
  cursor: pointer;
}
.oleo-journal__card-image {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.oleo-journal__card-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.oleo-journal__card:hover .oleo-journal__card-image img {
  transform: scale(1.05);
}

.oleo-journal__card-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--oleo-olive-600);
  margin-bottom: 0.5rem;
}

.oleo-journal__card-title {
  font-family: var(--oleo-font-serif);
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.oleo-journal__card:hover .oleo-journal__card-title {
  color: var(--oleo-olive-800);
}

.oleo-journal__card-link {
  font-size: 1rem;
  border-bottom: 1px solid var(--oleo-stone-300);
  padding-bottom: 2px;
  text-decoration: none;
  color: var(--oleo-text);
}

/* ---------- EXIT INTENT POPUP ---------- */
.oleo-exit-intent {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
}
.oleo-exit-intent.active {
  display: flex;
  animation: oleoFadeIn 0.3s ease;
}

.oleo-exit-intent__card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: oleoSlideUp 0.4s ease;
}

.oleo-exit-intent__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--oleo-stone-400);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}
.oleo-exit-intent__close:hover {
  color: var(--oleo-text-secondary);
}
.oleo-exit-intent__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- FOOTER ---------- */
.oleo-footer {
  background: var(--oleo-stone-900);
  color: var(--oleo-stone-400);
  padding: 4rem 0;
}

.oleo-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .oleo-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.oleo-footer__brand-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.oleo-footer__social {
  display: flex;
  gap: 1rem;
}
.oleo-footer__social a {
  width: 2rem;
  height: 2rem;
  background: var(--oleo-stone-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  text-decoration: none;
  color: var(--oleo-stone-400);
}
.oleo-footer__social a:hover {
  background: var(--oleo-stone-700);
  color: #fff;
}
.oleo-footer__social a svg {
  width: 0.875rem;
  height: 0.875rem;
}

.oleo-footer__heading {
  color: #fff;
  font-family: var(--oleo-font-serif) !important;
  font-size: 1.125rem !important;
  margin-bottom: 1.5rem;
}

.oleo-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.oleo-footer__links li {
  margin-bottom: 0.75rem;
}
.oleo-footer__links a {
  font-size: 1rem;
  color: var(--oleo-stone-400);
  text-decoration: none;
  transition: color 0.2s ease;
}
.oleo-footer__links a:hover {
  color: #fff;
}

.oleo-footer__newsletter-hint {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.oleo-footer__bottom {
  border-top: 1px solid var(--oleo-stone-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--oleo-stone-600);
}
@media (min-width: 768px) {
  .oleo-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.oleo-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.oleo-footer__bottom-links a {
  color: var(--oleo-stone-600);
  text-decoration: none;
  transition: color 0.2s ease;
}
.oleo-footer__bottom-links a:hover {
  color: var(--oleo-stone-400);
}

/* ---------- PAGE SECTIONS (Science, About, etc.) ---------- */
.oleo-page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--oleo-stone-100);
}

.oleo-content-section {
  background: #fff;
}

.oleo-content-block {
  max-width: 48rem;
  margin: 0 auto;
}

.oleo-content-block p {
  color: var(--oleo-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.oleo-content-block h3 {
  font-family: var(--oleo-font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--oleo-text);
}

/* CTA Banner */
.oleo-cta-banner {
  background: var(--oleo-olive-900);
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

/* ---------- Waitlist Form (Snippet) ---------- */
.oleo-waitlist-form {
  width: 100%;
}
.oleo-waitlist-form__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.oleo-waitlist-form__fields--compact {
  gap: 0.5rem;
}

.oleo-waitlist-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--oleo-olive-50);
  border: 1px solid var(--oleo-olive-200);
  border-radius: 0.5rem;
  color: var(--oleo-olive-900);
  text-align: center;
}
.oleo-waitlist-form__success svg {
  width: 2rem;
  height: 2rem;
  color: var(--oleo-olive-600);
  margin-bottom: 0.5rem;
}

.oleo-waitlist-form__counter {
  font-size: 0.8125rem;
  color: var(--oleo-text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

/* ---------- Utilities ---------- */
.oleo-text-center {
  text-align: center;
}
.oleo-mb-4 {
  margin-bottom: 1rem;
}
.oleo-mb-6 {
  margin-bottom: 1.5rem;
}
.oleo-mb-8 {
  margin-bottom: 2rem;
}
.oleo-mb-12 {
  margin-bottom: 3rem;
}
.oleo-mb-16 {
  margin-bottom: 4rem;
}
.oleo-mt-8 {
  margin-top: 2rem;
}
.oleo-max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.oleo-max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.oleo-overflow-x-auto {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Hide on mobile / desktop */
@media (max-width: 768px) {
  .oleo-hide-mobile {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .oleo-hide-desktop {
    display: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE — Mobile-first overrides for conversion optimization
   ========================================================================== */

/* --- Small screens (max-width: 480px) --- */
@media (max-width: 480px) {
  :root {
    --oleo-container-px: 1.25rem;
    --oleo-section-py: 3.5rem;
  }

  .oleo-heading-1 {
    font-size: 2.25rem !important;
    line-height: 1.1 !important;
  }
  .oleo-heading-2 {
    font-size: 1.625rem !important;
  }
  .oleo-heading-3 {
    font-size: 1.25rem !important;
  }

  body,
  .shopify-section {
    font-size: 1rem !important;
  }
  .oleo-body-text {
    font-size: 1rem;
  }

  /* Hero — full-width stacked layout */
  .oleo-hero {
    min-height: 80vh;
    align-items: flex-start;
  }
  .oleo-hero__content {
    padding: 6rem 1.25rem 2rem;
    max-width: 100%;
  }
  .oleo-hero__waitlist-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  /* Buttons — big enough to tap */
  .oleo-btn-primary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }
  .oleo-input {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  /* Benefits */
  .oleo-benefits__grid {
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .oleo-benefit-card {
    padding: 1.5rem;
  }

  /* Protocol */
  .oleo-protocol {
    padding: 2rem 1.25rem;
    border-radius: 0.75rem;
  }
  .oleo-protocol__step-number {
    font-size: 2.5rem;
  }

  /* Product Detail */
  .oleo-product-detail__grid {
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .oleo-product-detail__images img {
    aspect-ratio: 1 / 1;
  }

  /* Comparison — horizontal scroll */
  .oleo-comparison {
    margin-bottom: 3rem;
  }
  .oleo-comparison table {
    font-size: 0.875rem;
    min-width: 600px;
  }
  .oleo-comparison th,
  .oleo-comparison td {
    padding: 0.75rem 1rem;
    white-space: nowrap;
  }

  /* FAQ */
  .oleo-faq__question {
    font-size: 1rem;
    padding: 1rem 0;
  }

  /* Testimonials */
  .oleo-review-card {
    padding: 1.5rem;
  }

  /* Subscription cards */
  .oleo-plan-card--active {
    transform: none;
  }
  .oleo-plan-card__body {
    padding: 1.5rem;
  }

  /* Footer */
  .oleo-footer {
    padding: 3rem 0;
  }

  /* CTA Banner */
  .oleo-cta-banner {
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
  }

  /* Exit intent popup */
  .oleo-exit-intent__card {
    padding: 1.5rem;
  }
}

/* --- Tablets (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --oleo-section-py: 4rem;
  }

  .oleo-hero__layout {
    padding: 6rem 0 2rem;
  }

  .oleo-hero__social-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Comparison scrollable */
  .oleo-overflow-x-auto {
    -webkit-overflow-scrolling: touch;
  }

  /* Plan card — no scale transform on mobile */
  .oleo-plan-card--active {
    transform: none;
  }
}

/* --- Wide screens (min-width: 1440px) --- */
@media (min-width: 1440px) {
  :root {
    --oleo-container-max: 1400px;
  }
  .oleo-heading-1 {
    font-size: 4.5rem !important;
  }
  .oleo-heading-2 {
    font-size: 3rem !important;
  }
}

/* ---------- PRODUCT PAGE — Dawn overrides ---------- */
.product__title h1,
.product__title .h1 {
  font-family: var(--oleo-font-serif) !important;
  font-size: clamp(2rem, 3vw + 1rem, 3rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: var(--oleo-text) !important;
}
.product__text.inline-richtext,
.product__text {
  font-family: var(--oleo-font-sans) !important;
  font-size: 0.875rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--oleo-text-muted) !important;
}
.product__description,
.product__description p {
  font-family: var(--oleo-font-sans) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--oleo-text-secondary) !important;
}
.price-item--regular {
  font-family: var(--oleo-font-sans) !important;
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  color: var(--oleo-text) !important;
}
/* Hide vendor line showing 'MY STORE' */
.product__text[class*='caption'] {
  display: none !important;
}
/* Shrink icon-with-text on product page */
.product__info-container .icon-with-text {
  --icon-size: 1.5rem;
  --icon-spacing: 0.5rem;
}
.product__info-container .icon-with-text .h4 {
  font-size: 0.8125rem !important;
  font-family: var(--oleo-font-sans) !important;
  font-weight: 500 !important;
}

/* ---------- PLACEHOLDER IMAGES ---------- */
.oleo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--oleo-stone-200);
  border: 2px dashed var(--oleo-stone-300);
  border-radius: 0.5rem;
  color: var(--oleo-stone-500);
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 12rem;
  font-family: var(--oleo-font-sans);
}
.oleo-placeholder--hero {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  min-height: auto;
}
.oleo-placeholder--tall {
  min-height: 16rem;
}
.oleo-placeholder__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oleo-stone-400);
}
.oleo-placeholder__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--oleo-stone-400);
}
.oleo-placeholder__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--oleo-stone-500);
  max-width: 22rem;
}

/* ---------- 404 PAGE ---------- */
.oleo-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--oleo-section-py) var(--oleo-container-px);
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(84, 130, 89, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(197, 160, 89, 0.04) 0%, transparent 60%), var(--oleo-bg);
}
.oleo-404__inner {
  max-width: 32rem;
}
.oleo-404__code {
  font-family: var(--oleo-font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--oleo-stone-200);
  margin-bottom: 1.5rem;
}
.oleo-404__heading {
  font-family: var(--oleo-font-serif) !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  line-height: 1.2 !important;
  color: var(--oleo-text);
  margin-bottom: 1rem;
}
.oleo-404__text {
  font-family: var(--oleo-font-sans);
  color: var(--oleo-text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.oleo-404__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.oleo-404__link {
  font-family: var(--oleo-font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--oleo-olive-700);
  text-decoration: none;
  transition: color 0.2s ease;
}
.oleo-404__link:hover {
  color: var(--oleo-olive-900);
}
.oleo-404__divider {
  width: 3rem;
  height: 1px;
  background: var(--oleo-stone-300);
  margin: 1rem 0;
}

/* Header Spacer for non-transparent pages */
.oleo-header-spacer {
  display: block !important;
  height: 100px;
  width: 100%;
}

@media (min-width: 768px) {
  .oleo-header-spacer {
    height: 120px;
  }
}
