/** Shopify CDN: Minification failed

Line 20:0 All "@import" rules must come first

**/
/* ─── Premium Magazine‑Style Recipe ─── */

/* 1) Color Palette & Variables */
:root {
  --bg-main: #faf9f7;
  --bg-card: #ffffff;
  --text-main: #2b2b2b;
  --text-sub: #555555;
  --accent: #d35400;
  --accent-light: #ffae42;
  --border: #e2dfda;
}

/* 2) Base Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans:wght@400;600&display=swap');

.recipe-container {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  max-width: 900px;
  margin: 4rem auto;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  line-height: 1.65;
}

/* 3) Hero Image & Title */
.recipe-hero {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}
.recipe-hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.recipe-hero:hover img {
  transform: scale(1.08);
}
.recipe-title {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem,6vw,3.5rem);
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  text-align: center;
}

/* 4) Meta‑Info Card (flex + equal‑width + centered content) */
.recipe-meta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.recipe-meta-item {
  flex: 1 1 0;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.75rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
.recipe-meta-item .icon {
  font-size: 1.8rem;
}
.recipe-meta-item > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.recipe-meta-item .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-sub);
}
.recipe-meta-item > div > div:last-child {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Print Button styled as a meta-item */
.print-button {
  flex: 1 1 0;
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-sub);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.print-button:hover {
  color: var(--accent);
  background: var(--accent-light)15; /* subtle tinted hover */
}

/* 5) Intro Paragraph & Divider */
.recipe-intro {
  font-size: 1.15rem;
  color: var(--text-sub);
  margin-bottom: 2rem;
}
.recipe-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* 6) Section Headings */
.recipe-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  color: var(--text-main);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 1.25rem;
}

/* 7) Lists */
.recipe-block ul,
.recipe-block ol {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}
.recipe-block li {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

/* 8) Table of Contents (Sidebar) */
.recipe-toc {
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 2rem;
}
.recipe-toc h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-sub);
}
.recipe-toc a {
  display: block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.recipe-toc a:hover {
  color: var(--accent-light);
}

/* 9) Sidebar Boxes for Ingredients & Tools */
.sidebar-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
#ingredients.sidebar-section {
  border-left: 5px solid var(--accent);
}
#tools.sidebar-section {
  border-left: 5px solid var(--accent-light);
}

/* 10) CTA Button */
.recipe-cta {
  text-align: center;
  margin-top: 3rem;
}
.recipe-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(211,84,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.recipe-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(211,84,0,0.4);
}

/* 11) Responsive Grid */
.recipe-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 900px) {
  .recipe-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem 3rem;
  }
  .recipe-sidebar {
    position: sticky;
    top: 6rem;
  }
}

/* 12) Print Styles */
@media print {
  .print-button,
  .recipe-sidebar {
    display: none;
  }
  .recipe-container {
    box-shadow: none;
    background: #fff;
  }
}
/* Scroll‑spy highlighted TOC link */
.recipe-toc a.active {
  color: var(--accent-light) !important;
  font-weight: 700;
}
@media print {
  body * { visibility: hidden; }
  .recipe-container, .recipe-container * {
    visibility: visible;
  }
  .recipe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: none;
  }
}
.recipe-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.recipe-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.recipe-breadcrumb a:hover {
  text-decoration: underline;
}
/* pull the container up so the hero sits flush against the header */
.recipe-container {
  margin-top: 0 !important;
  padding-top: 0.5rem !important;  /* you can tweak this value */
}
