/* ==========================================================================
   Guides - Archive & Single Styles
   ========================================================================== */

/* ---------- Shared ---------- */
.guides-page {
    background-color: #F7FAF8;
    color: #1A3A2E;
    line-height: 1.6;
}
.guides-page section{
    padding:20px;
}
.single-guide section{
    padding-top:0px !important;
}
.guide-step-warning p,
.guide-step-tip p{
    margin-bottom:0px;
}

/* ---------- Archive: Hero ---------- */
.guides-hero {
    padding: 2rem 1rem 3rem;
}
.guides-hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}
.guides-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}
.guides-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(32,131,111,.1);
    color: #20836f;
    padding: .5rem 1rem;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.guides-hero .hero-badge svg {
    width: 1rem; height: 1rem;
}
.guides-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A3A2E;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
@media(min-width:640px){
    .guides-hero .hero-title { font-size:3rem; }
}
.guides-hero .hero-description {
    font-size: 1.25rem;
    color: #5A7A6B;
}

/* ---------- Archive: Category Filter ---------- */
.guides-category-filter {
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.guides-category-filter-inner {
    max-width: 80rem;
    margin: 0 auto;
}
.guides-category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}
.guides-category-btn {
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .875rem;
    font-weight: 500;
    border: 1px solid #D9E5DF;
    background: #fff;
    color: #1A3A2E;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.guides-category-btn:hover {
    border-color: #20836f;
    color: #20836f;
}
.guides-category-btn.active {
    background: linear-gradient(135deg,#20836f 0%,#2a9d8f 100%);
    color: #fff;
    border-color: transparent;
}

/* ---------- Archive: Grid ---------- */
.guides-grid-section {
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.guides-grid-inner {
    max-width: 80rem;
    margin: 0 auto;
}
.guides-grid {
    display: grid;
    gap: 1.5rem;
}
@media(min-width:640px){
    .guides-grid { grid-template-columns: repeat(2,1fr); }
}
@media(min-width:1024px){
    .guides-grid { grid-template-columns: repeat(3,1fr); }
}

/* ---------- Guide Card ---------- */
.guide-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0,0,0,.08);
    border: 1px solid #D9E5DF;
    transition: all .3s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.guide-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0,0,0,.12);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.guide-card .card-image-wrapper {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}
.guide-card .card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.guide-card:hover .card-image {
    transform: scale(1.05);
}
.guide-card .card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(26,58,46,.6),transparent);
}
.guide-card .card-play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 4rem; height: 4rem;
    border-radius: 50%;
    background: rgba(32,131,111,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.guide-card:hover .card-play-button {
    transform: translate(-50%,-50%) scale(1.1);
}
.guide-card .card-play-button svg {
    width: 1.75rem; height: 1.75rem;
    color: #fff;
    margin-left: .25rem;
}
.guide-card .card-duration {
    position: absolute;
    bottom: .75rem; left: .75rem;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: .375rem .75rem;
    display: flex;
    align-items: center;
    gap: .375rem;
}
.guide-card .card-duration svg {
    width: 1rem; height: 1rem;
    color: #5A7A6B;
}
.guide-card .card-duration span {
    font-size: .875rem; font-weight: 500;
}
.guide-card .card-category-badge {
    position: absolute;
    top: .75rem; left: .75rem;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    padding: .375rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 500;
    color: #1A3A2E;
}
.guide-card .card-content {
    padding: 1.25rem;
}
.guide-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A3A2E;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.guide-card:hover .card-title {
    color: #20836f;
}
.guide-card .card-description {
    color: #5A7A6B;
    font-size: .875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: .75rem;
}
.guide-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.guide-card .card-difficulty {
    background: #EDF4F1;
    color: #1A3A2E;
    padding: .25rem .75rem;
    border-radius: .375rem;
    font-size: .75rem;
    font-weight: 500;
}
.guide-card .card-link {
    color: #20836f;
    font-size: .875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .25rem;
    transition: gap .2s;
}
.guide-card:hover .card-link {
    gap: .5rem;
}
.guide-card .card-link svg {
    width: 1rem; height: 1rem;
}

/* ---------- Archive: CTA ---------- */
.guides-cta {
    padding: 4rem 1rem;
    background: rgba(237,244,241,.5);
}
.guides-cta-inner {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}
.guides-cta .cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1A3A2E;
    margin-bottom: 1rem;
}
.guides-cta .cta-description {
    font-size: 1.25rem;
    color: #5A7A6B;
    margin-bottom: 2rem;
}
.guides-btn {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-size: .875rem;
}
.guides-btn-primary {
    background: linear-gradient(135deg,#F4A261 0%,#E76F51 100%);
    color: #fff;
}
.guides-btn-primary:hover { opacity:.9; color:#fff; }
.guides-btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1rem;
}
.guides-btn-lg svg {
    width: 1.25rem; height: 1.25rem;
    margin-left: .5rem;
}
.guides-btn-outline {
    background: #fff;
    border: 1px solid #D9E5DF;
    color: #1A3A2E;
}
.guides-btn-outline:hover {
    border-color: #20836f;
    color: #20836f;
}
.guides-btn-sm {
    padding: .375rem .75rem;
    font-size: .875rem;
}

/* ==========================================================================
   Single Guide – Redesign (matches HTML mockup 1:1)
   ========================================================================== */

/* ---------- Page wrapper & CSS Custom Properties ---------- */
.guide-single-page {
    --gs-bg:              hsl(145, 20%, 97%);
    --gs-fg:              hsl(145, 30%, 15%);
    --gs-card:            hsl(0, 0%, 100%);
    --gs-card-fg:         hsl(145, 30%, 15%);
    --gs-primary:         hsl(145, 35%, 28%);
    --gs-primary-fg:      hsl(0, 0%, 100%);
    --gs-secondary:       hsl(145, 25%, 92%);
    --gs-secondary-fg:    hsl(145, 35%, 28%);
    --gs-muted:           hsl(145, 15%, 94%);
    --gs-muted-fg:        hsl(145, 15%, 45%);
    --gs-accent:          hsl(15, 85%, 65%);
    --gs-accent-fg:       hsl(0, 0%, 100%);
    --gs-border:          hsl(145, 20%, 88%);
    --gs-radius:          1rem;

    background-color: var(--gs-bg);
    color: var(--gs-fg);
    -webkit-font-smoothing: antialiased;
}

/* ---------- Gradients & Shadows ---------- */
.guide-single-page .gradient-forest {
    background: linear-gradient(135deg, hsl(145, 35%, 28%) 0%, hsl(145, 40%, 35%) 100%);
}
.guide-single-page .gradient-peach {
    background: linear-gradient(135deg, hsl(15, 85%, 65%) 0%, hsl(25, 90%, 60%) 100%);
}
.guide-single-page .shadow-soft {
    box-shadow: 0 4px 20px -4px hsl(145 20% 60% / .15);
}
.guide-single-page .shadow-card {
    box-shadow: 0 2px 12px -2px hsl(145 20% 60% / .1);
}

/* ---------- Animations ---------- */
@keyframes gsFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes gsSlideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Icon utility ---------- */
.guide-single-page .gs-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ---------- Layout containers ---------- */
.guide-single-page .gs-container-5xl {
    width: 100%;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.guide-single-page .gs-container-4xl {
    width: 100%;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 640px) {
    .guide-single-page .gs-container-5xl,
    .guide-single-page .gs-container-4xl { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .guide-single-page .gs-container-5xl,
    .guide-single-page .gs-container-4xl { padding-left: 2rem; padding-right: 2rem; }
}

/* ---------- Spacing helpers ---------- */
.guide-single-page .gs-pb-8  { padding-bottom: 2rem; }
.guide-single-page .gs-pb-16 { padding-bottom: 4rem; }
.guide-single-page .gs-pt-20 { padding-top: 5rem; }
.guide-single-page .gs-section { padding-left: 1rem; padding-right: 1rem; }

/* ---------- Buttons ---------- */
.guide-single-page .gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: calc(var(--gs-radius) - 2px);
    font-family: inherit;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s, background-color .2s, color .2s, border-color .2s;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
}
.guide-single-page .gs-btn-sm  { padding: .5rem .875rem; font-size: .8125rem; }
.guide-single-page .gs-btn-md  { padding: .625rem 1.25rem; }
.guide-single-page .gs-btn-lg  { padding: .875rem 1.75rem; font-size: 1rem; }
.guide-single-page .gs-btn-ghost {
    background: transparent;
    color: var(--gs-fg);
    border-color: transparent;
}
.guide-single-page .gs-btn-ghost:hover { background-color: var(--gs-muted); }
.guide-single-page .gs-btn-outline {
    background: transparent;
    color: var(--gs-fg);
    border-color: var(--gs-border);
}
.guide-single-page .gs-btn-outline:hover { background-color: var(--gs-muted); }
.guide-single-page .gs-btn-peach {
    border: none;
    color: var(--gs-accent-fg);
}
.guide-single-page .gs-btn-peach:hover { opacity: .9; }
.guide-single-page .gs-btn-primary {
    color: var(--gs-primary-fg);
    border: none;
}
.guide-single-page .gs-btn-primary:hover { opacity: .9; }

/* ---------- Badge ---------- */
.guide-single-page .gs-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: .25rem .75rem;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1;
    background-color: hsl(0 0% 100% / .9);
    color: var(--gs-fg);
    backdrop-filter: blur(4px);
}

/* ---------- Back link ---------- */
.guide-single-page .gs-back-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gs-muted-fg);
    transition: color .2s;
    padding: 1rem 0;
    font-size: .9375rem;
    text-decoration: none;
}
.guide-single-page .gs-back-link:hover { color: var(--gs-fg); }

/* ---------- Hero Image ---------- */
.guide-single-page .gs-hero-wrap {
    position: relative;
    aspect-ratio: 21 / 9;
    border-radius: calc(var(--gs-radius) + 8px);
    overflow: hidden;
}
.guide-single-page .gs-hero-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.guide-single-page .gs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(145 30% 15% / .6), hsl(145 30% 15% / .2), transparent);
}
.guide-single-page .gs-hero-meta {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 2rem;
}
@media (min-width: 640px) {
    .guide-single-page .gs-hero-meta { padding: 2rem; }
}
.guide-single-page .gs-hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}
.guide-single-page .gs-hero-meta-item {
    display: flex;
    align-items: center;
    gap: .375rem;
    color: hsl(0 0% 100% / .9);
    font-size: .875rem;
    font-weight: 500;
}
.guide-single-page .gs-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .guide-single-page .gs-hero-title { font-size: 2.25rem; }
}

/* ---------- Intro section ---------- */
.guide-single-page .gs-intro-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .guide-single-page .gs-intro-section { flex-direction: row; align-items: flex-start; }
}
.guide-single-page .gs-intro-text-wrap {
    flex: 1;
    position: relative;
    min-width: 0;
}
.guide-single-page .gs-intro-text {
    color: var(--gs-muted-fg);
    line-height: 1.75;
    overflow: hidden;
    transition: max-height .5s ease;
    max-height: 120px;
}
.guide-single-page .gs-intro-text.expanded {
    max-height: 2000px;
}
.guide-single-page .gs-intro-text p { margin-bottom: 1rem; }
.guide-single-page .gs-intro-text p:last-child { margin-bottom: 0; }
.guide-single-page .gs-intro-text h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gs-fg);
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}
.guide-single-page .gs-intro-text h2:first-child { margin-top: 0; }
.guide-single-page .gs-intro-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 7rem;
    background: linear-gradient(to top, var(--gs-bg) 0%, hsl(145 20% 97% / .9) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
}
.guide-single-page .gs-intro-toggle-wrap {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

/* ---------- Video CTA button ---------- */
.guide-single-page .gs-video-btn {
    flex-shrink: 0;
    border-radius: calc(var(--gs-radius) + 8px);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    box-shadow: 0 10px 25px -5px hsl(145 35% 28% / .4);
    cursor: pointer;
    transition: opacity .2s;
    border: none;
    font-family: inherit;
}
.guide-single-page .gs-video-btn:hover { opacity: .9; }
.guide-single-page .gs-video-btn:hover .gs-video-play-circle { transform: scale(1.1); }
.guide-single-page .gs-video-play-circle {
    width: 3.5rem; height: 3.5rem;
    border-radius: 50%;
    background-color: hsl(0 0% 100% / .2);
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s;
}
.guide-single-page .gs-video-btn-label { font-size: 1.125rem; font-weight: 700; line-height: 1.2; }
.guide-single-page .gs-video-btn-sub   { font-size: .875rem; opacity: .8; display: block; }

/* ---------- Action row ---------- */
.guide-single-page .gs-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: 1.25rem;
}

/* ---------- Content Grid ---------- */
.guide-single-page .gs-content-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .guide-single-page .gs-content-grid { grid-template-columns: 1fr 1fr 1fr; }
    .guide-single-page .gs-content-main  { grid-column: span 2; }
}

/* ---------- Steps ---------- */
.guide-single-page .gs-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.guide-single-page .gs-step-card {
    background: var(--gs-card);
    border-radius: calc(var(--gs-radius) + 8px);
    padding: 1.5rem;
    border: 1px solid var(--gs-border);
}
.guide-single-page .gs-step-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.guide-single-page .gs-step-number {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.guide-single-page .gs-step-body { flex: 1; }
.guide-single-page .gs-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gs-card-fg);
    margin-bottom: .5rem;
}
.guide-single-page .gs-step-desc {
    color: var(--gs-muted-fg);
    line-height: 1.6;
    margin-bottom: .75rem;
}
.guide-single-page .gs-step-desc:last-child { margin-bottom: 0; }
.guide-single-page .gs-step-tip {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background-color: hsl(145 25% 92% / .5);
    border-radius: calc(var(--gs-radius) - 2px);
    padding: 1rem;
    margin-top: .75rem;
}
.guide-single-page .gs-step-warning {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background-color: hsl(0 72% 51% / .1);
    border-radius: calc(var(--gs-radius) - 2px);
    padding: 1rem;
    margin-top: .75rem;
}
.guide-single-page .gs-step-tip-text,
.guide-single-page .gs-step-warning-text {
    font-size: .875rem;
    color: var(--gs-fg);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ---------- Sidebar ---------- */
.guide-single-page .gs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.guide-single-page .gs-sidebar-card {
    background: var(--gs-card);
    border-radius: calc(var(--gs-radius) + 8px);
    padding: 1.5rem;
    border: 1px solid var(--gs-border);
}
.guide-single-page .gs-sidebar-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gs-card-fg);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.guide-single-page .gs-tips-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.guide-single-page .gs-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.guide-single-page .gs-tips-list li span {
    font-size: .875rem;
    color: var(--gs-muted-fg);
    line-height: 1.5;
}

/* Shopping List (sidebar) */
.guide-single-page .gs-shopping-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}
.guide-single-page .gs-shopping-header .gs-sidebar-card-title {
    margin-bottom: 0;
}
.guide-single-page .gs-qty-adjuster {
    display: flex;
    align-items: center;
    gap: .25rem;
    background: hsl(145 25% 96%);
    border-radius: .5rem;
    padding: .125rem;
}
.guide-single-page .gs-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: .375rem;
    border: 1px solid var(--gs-border);
    background: #fff;
    color: var(--gs-fg);
    cursor: pointer;
    transition: all .15s;
    padding: 0;
    line-height: 1;
}
.guide-single-page .gs-qty-btn:hover:not(:disabled) {
    background: var(--gs-primary);
    border-color: var(--gs-primary);
    color: #fff;
}
.guide-single-page .gs-qty-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.guide-single-page .gs-qty-display {
    display: flex;
    align-items: baseline;
    gap: .125rem;
    min-width: 2rem;
    justify-content: center;
    font-size: .875rem;
    font-weight: 700;
    color: var(--gs-fg);
    user-select: none;
}
.guide-single-page .gs-qty-label {
    font-weight: 400;
    color: var(--gs-muted-fg);
    font-size: .75rem;
}
.guide-single-page .gs-shopping-list {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.guide-single-page .gs-ingredient-group {
    margin-bottom: .75rem;
}
.guide-single-page .gs-ingredient-group:last-child { margin-bottom: 0; }
.guide-single-page .gs-ingredient-group-title {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gs-fg);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .5rem;
    padding-bottom: .375rem;
    border-bottom: 1px solid hsl(145 25% 92%);
}
.guide-single-page .gs-ingredient {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .375rem 0;
    cursor: pointer;
    transition: opacity .2s;
}
.guide-single-page .gs-ingredient.checked { opacity: .45; }
.guide-single-page .gs-ingredient.checked .gs-ingredient-checkbox {
    background: var(--gs-primary);
    border-color: var(--gs-primary);
}
.guide-single-page .gs-ingredient.checked .gs-ingredient-checkbox::after {
    content: '';
    display: block;
    width: .375rem;
    height: .625rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -.0625rem;
}
.guide-single-page .gs-ingredient.checked .gs-ingredient-text { text-decoration: line-through; }
.guide-single-page .gs-ingredient-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: .25rem;
    border: 2px solid var(--gs-border);
    flex-shrink: 0;
    margin-top: .125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.guide-single-page .gs-ingredient-text {
    font-size: .875rem;
    color: var(--gs-muted-fg);
    line-height: 1.4;
}
.guide-single-page .gs-ingredient-text strong {
    color: var(--gs-fg);
    font-weight: 600;
}

/* Related Guides (sidebar) */
.guide-single-page .gs-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.guide-single-page .gs-related-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem;
    margin: -.5rem;
    border-radius: .75rem;
    text-decoration: none;
    transition: background .2s;
}
.guide-single-page .gs-related-link:hover { background: hsl(145 25% 92% / .8); }
.guide-single-page .gs-related-thumb {
    position: relative;
    width: 5rem; height: 3.5rem;
    border-radius: .5rem;
    overflow: hidden;
    flex-shrink: 0;
}
.guide-single-page .gs-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.guide-single-page .gs-related-thumb .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(145 30% 15% / .3);
}
.guide-single-page .gs-related-thumb .overlay svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.guide-single-page .gs-related-text { flex: 1; min-width: 0; }
.guide-single-page .gs-related-text h4 {
    font-size: .875rem;
    font-weight: 500;
    color: var(--gs-fg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}
.guide-single-page .gs-related-link:hover .gs-related-text h4 { color: var(--gs-primary); }
.guide-single-page .gs-related-text span {
    font-size: .75rem;
    color: var(--gs-muted-fg);
}

/* ---------- Section title ---------- */
.guide-single-page .gs-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gs-fg);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* ---------- Video Section ---------- */
.guide-single-page .gs-video-embed-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--gs-radius) + 8px);
    overflow: hidden;
    background-color: var(--gs-muted);
}
.guide-single-page .gs-video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: none;
}
.guide-single-page .gs-video-disclaimer {
    font-size: .75rem;
    color: var(--gs-muted-fg);
    margin-top: .75rem;
    text-align: center;
    font-style: italic;
}

/* ---------- Related Recipes ---------- */
.guide-single-page .gs-recipes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 1024px) {
    .guide-single-page .gs-recipes-grid { grid-template-columns: repeat(4, 1fr); }
}
.guide-single-page .gs-recipe-card {
    background: var(--gs-card);
    border-radius: calc(var(--gs-radius) + 8px);
    overflow: hidden;
    border: 1px solid var(--gs-border);
    transition: box-shadow .3s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.guide-single-page .gs-recipe-card:hover {
    box-shadow: 0 4px 20px -4px hsl(145 20% 60% / .15);
    color: inherit;
}
.guide-single-page .gs-recipe-card:hover .gs-recipe-img { transform: scale(1.05); }
.guide-single-page .gs-recipe-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.guide-single-page .gs-recipe-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.guide-single-page .gs-recipe-info { padding: .75rem 1rem; }
@media (min-width: 640px) {
    .guide-single-page .gs-recipe-info { padding: 1rem; }
}
.guide-single-page .gs-recipe-title {
    font-weight: 600;
    color: var(--gs-card-fg);
    font-size: .875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
    margin-bottom: .5rem;
}
@media (min-width: 640px) {
    .guide-single-page .gs-recipe-title { font-size: 1rem; }
}
.guide-single-page .gs-recipe-card:hover .gs-recipe-title { color: var(--gs-primary); }

/* ---------- CTA Section ---------- */
.guide-single-page .gs-cta-section {
    padding: 4rem 1rem;
    background-color: hsl(145 25% 92% / .3);
    text-align: center;
}
@media (min-width: 640px) { .guide-single-page .gs-cta-section { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .guide-single-page .gs-cta-section { padding: 4rem 2rem; } }
.guide-single-page .gs-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gs-fg);
    margin-bottom: 1rem;
}
.guide-single-page .gs-cta-sub {
    font-size: 1.25rem;
    color: var(--gs-muted-fg);
    margin-bottom: 2rem;
}
.guide-single-page .gs-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
@media (min-width: 640px) {
    .guide-single-page .gs-cta-buttons { flex-direction: row; }
}

/* ---------- Editor Content ---------- */
.guide-single-page .gs-editor-content { margin-top: 2rem; }
.guide-single-page .gs-editor-content h2 {
    font-size: 1.5rem; font-weight: 700; color: var(--gs-fg);
    margin: 2rem 0 1rem;
}
.guide-single-page .gs-editor-content h2:first-child { margin-top: 0; }
.guide-single-page .gs-editor-content h3 {
    font-size: 1.25rem; font-weight: 600; color: var(--gs-fg);
    margin: 1.5rem 0 .75rem;
}
.guide-single-page .gs-editor-content p {
    color: var(--gs-muted-fg); line-height: 1.75; margin-bottom: 1rem;
}
.guide-single-page .gs-editor-content p:last-child { margin-bottom: 0; }
.guide-single-page .gs-editor-content ul,
.guide-single-page .gs-editor-content ol {
    color: var(--gs-muted-fg); line-height: 1.75; margin-bottom: 1rem; padding-left: 1.5rem;
}
.guide-single-page .gs-editor-content li { margin-bottom: .5rem; }
.guide-single-page .gs-editor-content img { border-radius: 1rem; margin: 1.5rem 0; }
.guide-single-page .gs-editor-content a { color: var(--gs-primary); text-decoration: underline; }
.guide-single-page .gs-editor-content a:hover { color: var(--gs-fg); }
.guide-single-page .gs-editor-content blockquote {
    border-left: 4px solid var(--gs-primary);
    padding: 1rem 1.5rem;
    background: hsl(145 25% 92% / .5);
    border-radius: 0 .75rem .75rem 0;
    margin: 1.5rem 0;
    color: var(--gs-fg);
    font-style: italic;
}

/* Hidden utility */
.guide-hidden { display: none !important; }
