/* ============================================
   PeynirliTarifler.com — Ana Stil Dosyası
   Tasarım Konsepti: "Sıcak Mutfak Editöryal"
   ============================================ */

/* ── Bahçıvan Kurumsal Fontu: Museo Sans Rounded (self-hosted) ──
   500 (Medium) + 1000 (Ultra) — Bahçıvan ekibinden web lisansı ile geldi.
   Gövde için Carlito (Calibri metric-compatible açık kaynak klon) — Google Fonts.
   Kaynak: memory/project_decisions.md "Font Paleti (2026-04-23)".
*/
@font-face {
    font-family: 'Museo Sans Rounded';
    src: url('../fonts/MuseoSansRounded-500.otf') format('opentype');
    font-weight: 400 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Museo Sans Rounded';
    src: url('../fonts/MuseoSansRounded-1000.otf') format('opentype');
    font-weight: 600 900;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Custom Properties (Tasarım Tokenleri) ── */
:root {
    /* ═══ Bahçıvan Peynir Resmi Marka Paleti ═══
       Kaynak: Kurumsal marka rehberi (2026-04-23 memory/project_decisions.md)
       Kırmızı: Pantone 485 C — RGB 205/57/44
       Yeşil:   Pantone 349 C — RGB 40/103/61
       Turkuaz: Pantone 2226 C — RGB 34/201/221 (yalnızca laktozsuz bağlamı)
    */
    --bahcivan-red: #cd392c;
    --bahcivan-red-dark: #a32d23;
    --bahcivan-red-light: #e05749;
    --bahcivan-green: #28673d;
    --bahcivan-green-dark: #1c4a2b;
    --bahcivan-green-light: #358a51;
    --bahcivan-white: #ffffff;
    --bahcivan-turquoise: #22c9dd;
    --bahcivan-turquoise-dark: #1ba2b2;
    --bahcivan-turquoise-light: #55d5e5;

    /* Geriye uyumluluk alias'ları (eski kod bunları arar) */
    --amber-gold: var(--bahcivan-red);
    --amber-gold-light: var(--bahcivan-red-light);
    --amber-gold-dark: var(--bahcivan-red-dark);
    --herb-green: var(--bahcivan-green);
    --herb-green-light: var(--bahcivan-green-light);
    --terracotta: var(--bahcivan-red);
    --soft-red: var(--bahcivan-red);

    /* Sıcak Nötrler */
    --warm-cream: #FFF9F5;
    --warm-white: #FFFFFF;
    --warm-ivory: #F5F0EB;
    --warm-sand: #E5DDD5;

    /* Metin Renkleri */
    --text-primary: #212121;
    --text-secondary: #4A4A4A;
    --text-muted: #8B8B8B;
    --text-on-dark: #F5F0EB;

    /* Zorluk Seviyeleri */
    --difficulty-easy: var(--bahcivan-green);
    --difficulty-medium: #E8A000;
    --difficulty-hard: var(--bahcivan-red);

    /* Tipografi — Bahçıvan kurumsal font hiyerarşisi */
    --font-heading: 'Museo Sans Rounded', 'Nunito', 'Segoe UI', Tahoma, sans-serif;
    --font-body: 'Carlito', 'Calibri', 'Segoe UI', Tahoma, sans-serif;

    /* Fluid Tipografi */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.9rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
    --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.3rem);
    --text-xl: clamp(1.4rem, 1.2rem + 1vw, 1.75rem);
    --text-2xl: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
    --text-3xl: clamp(2.2rem, 1.6rem + 3vw, 3.5rem);

    /* Satır Yüksekliği */
    --leading-tight: 1.25;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Boyutlar */
    --container-max: 1200px;
    --container-narrow: 800px;
    --border-radius: 12px;
    --border-radius-sm: 8px;

    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 8px 30px rgba(44, 24, 16, 0.12);
    --shadow-hover: 0 8px 30px rgba(44, 24, 16, 0.15);

    /* Geçişler */
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Header yüksekliği */
    --header-height: 72px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background-color: var(--warm-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--amber-gold-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--amber-gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    font-weight: 700;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

ul, ol { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

@media (min-width: 640px) {
    .container {
        padding-inline: var(--space-xl);
    }
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ── Genel Sayfa İçeriği ── */
.page-content__title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.page-content__body {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.page-content__body h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: var(--text-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.page-content__body p,
.page-content__body ul,
.page-content__body ol {
    margin-bottom: var(--space-md);
}

.page-content__body ul,
.page-content__body ol {
    padding-left: var(--space-lg);
}

.page-content__body li {
    margin-bottom: var(--space-xs);
}

.page-content__body a {
    color: var(--amber-gold);
    text-decoration: underline;
}

.page-content__body a:hover {
    color: var(--herb-green);
}

/* ── Butonlar ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--amber-gold);
    color: white;
}

.btn--primary:hover {
    background-color: var(--amber-gold-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    border: 2px solid var(--amber-gold);
    color: var(--amber-gold);
    background: transparent;
}

.btn--outline:hover {
    background-color: var(--amber-gold);
    color: white;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--warm-white);
    border-bottom: 1px solid var(--warm-sand);
    transition: box-shadow var(--transition-base);
}

.site-header--scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

/* Header Layout: [Tarifler + Arama] | Logo | [Linkler] */
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-lg);
}

/* ── Sol Grup: Tarifler + Arama ── */
.site-header__left {
    display: none;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
}

@media (min-width: 1024px) {
    .site-header__left {
        display: flex;
    }
}

/* ── Logo — Ortada ── */
.site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: center;
}

.site-header__logo-primary {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bahcivan-red);
}

.site-header__logo-secondary {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--bahcivan-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── Sağ Grup: Sayfa Linkleri ── */
.site-header__right {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    flex: 1;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .site-header__right {
        display: flex;
    }
}

.header-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.header-link:hover {
    color: var(--bahcivan-red);
    background-color: rgba(205, 57, 44, 0.05);
}

.header-link--brand {
    color: var(--bahcivan-green);
    font-weight: 600;
}

.header-link--brand:hover {
    color: var(--bahcivan-green-light);
    background-color: rgba(40, 103, 61, 0.06);
}

/* ── Mega Menü: "Tarifler" Dropdown ── */
.mega-menu {
    position: relative;
}

.mega-menu__trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--bahcivan-red);
    background: none;
    border: 2px solid var(--bahcivan-red);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.mega-menu__trigger:hover,
.mega-menu__trigger[aria-expanded="true"] {
    background-color: var(--bahcivan-red);
    color: white;
}

.mega-menu__chevron {
    transition: transform var(--transition-fast);
}

.mega-menu__trigger[aria-expanded="true"] .mega-menu__chevron {
    transform: rotate(180deg);
}

.mega-menu__icon {
    flex-shrink: 0;
}

/* Mega Panel */
.mega-menu__panel {
    display: none;
    position: absolute;
    top: calc(100% + var(--space-sm));
    left: 0;
    width: 820px;
    background: var(--warm-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--warm-sand);
    padding: var(--space-lg) var(--space-xl);
    z-index: 200;
}

.mega-menu__panel.is-active {
    display: block;
    animation: fadeIn var(--transition-fast) forwards;
}

/* 3 Kolon Yapısı */
.mega-menu__columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.mega-menu__col-links--split {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 0 var(--space-lg);
    align-items: start;
}

.mega-menu__col-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bahcivan-red);
    margin-bottom: var(--space-sm);
}

.mega-menu__col-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
}

.mega-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 0;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.mega-menu__link:hover {
    color: var(--bahcivan-red);
}

.mega-menu__link-icon {
    font-size: 1rem;
}

/* Tüm Tarifler Link */
.mega-menu__all-link {
    display: block;
    text-align: center;
    padding: var(--space-md) 0 var(--space-xs);
    margin-top: var(--space-md);
    border-top: 1px solid var(--warm-sand);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--bahcivan-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mega-menu__all-link:hover {
    color: var(--bahcivan-green-light);
}

/* ── Header Arama (Inline) ── */
.header-search {
    flex: 1;
    max-width: 260px;
}

.header-search__form {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--warm-sand);
    border-radius: 100px;
    overflow: hidden;
    background: var(--warm-cream);
    transition: border-color var(--transition-fast);
}

.header-search__form:focus-within {
    border-color: var(--bahcivan-green);
}

.header-search__input {
    flex: 1;
    padding: 8px 16px;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-primary);
    min-width: 0;
}

.header-search__input::placeholder {
    color: var(--text-muted);
}

.header-search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.header-search__btn:hover {
    color: var(--bahcivan-green);
}

/* ── Mobil menü toggle ── */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 1px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil menü */
.mobile-menu {
    display: none;
    background-color: var(--warm-white);
    border-top: 1px solid var(--warm-sand);
    padding: var(--space-lg);
}

.mobile-menu.is-active {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
    animation: slideDown var(--transition-base) forwards;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu li a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--warm-sand);
}

.mobile-nav-menu li a:hover {
    color: var(--bahcivan-red);
}

.mobile-menu__section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-menu__label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-nav-icon {
    margin-right: var(--space-sm);
}

/* ── Site Main ── */
.site-main {
    min-height: 60vh;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-4xl);
}

/* ── Sayfa Hero (Blog, İletişim vb.) ── */
.page-hero {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding-top: var(--space-xl);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.page-hero__desc {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ── Blog Grid ── */
.blog-page {
    padding: var(--space-xl) 0 var(--space-4xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Kartı */
.blog-card {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--warm-ivory);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.blog-card__date {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.blog-card:hover .blog-card__title {
    color: var(--bahcivan-red);
}

.blog-card__excerpt {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}

.blog-card__read-more {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--bahcivan-green);
    margin-top: var(--space-xs);
}

/* ── İletişim Sayfası ── */
.contact-page {
    padding: var(--space-xl) 0 var(--space-4xl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .contact-layout {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-label .required {
    color: var(--bahcivan-red);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--warm-sand);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--warm-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--bahcivan-green);
    box-shadow: 0 0 0 3px rgba(40, 103, 61, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B8B8B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

.btn--full {
    width: 60%;
    justify-content: center;
    gap: var(--space-sm);
    background-color: var(--bahcivan-green);
    border-color: var(--bahcivan-green);
}

.btn--full:hover {
    background-color: var(--bahcivan-green-dark);
    border-color: var(--bahcivan-green-dark);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.form-success h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--bahcivan-green);
}

.form-success p {
    color: var(--text-secondary);
}

.form-error-msg {
    background: rgba(205, 57, 44, 0.06);
    border: 1px solid rgba(205, 57, 44, 0.2);
    border-radius: var(--border-radius-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-error-msg p {
    color: var(--bahcivan-red);
    font-size: var(--text-sm);
    font-weight: 500;
    margin: 0;
}

/* İletişim Bilgi Kartları */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-info__card {
    background: var(--warm-cream);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-info__card--brand {
    background: var(--bahcivan-green);
    color: white;
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
}

.contact-info__text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}

.contact-info__card--brand .contact-info__text {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info__link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.contact-info__link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.empty-state__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
}

.empty-state__text {
    color: var(--text-muted);
    max-width: 400px;
}

/* ── Blog Tekil Sayfa ── */
.blog-single {
    padding: var(--space-xl) 0 var(--space-4xl);
}

.blog-single__header {
    margin-bottom: var(--space-xl);
}

.blog-single__date {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.blog-single__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.blog-single__hero {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.blog-single__hero img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single__content {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
}

.blog-single__content p {
    margin-bottom: var(--space-lg);
}

.blog-single__content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin: var(--space-2xl) 0 var(--space-md);
}

.blog-single__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin: var(--space-xl) 0 var(--space-md);
}

.blog-single__nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--warm-sand);
}

.blog-single__nav-link {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-decoration: none;
    max-width: 45%;
}

.blog-single__nav-link--next {
    text-align: right;
    margin-left: auto;
}

.blog-single__nav-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-single__nav-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.blog-single__nav-link:hover .blog-single__nav-title {
    color: var(--bahcivan-red);
}

/* ── Tarif Kartı Grid ── */
.recipe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 640px) {
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .recipe-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.recipe-grid--4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .recipe-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .recipe-grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Tarif Kartı ── */
.recipe-card {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    animation: fadeInUp var(--transition-slow) both;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.recipe-card:nth-child(1) { animation-delay: 0ms; }
.recipe-card:nth-child(2) { animation-delay: 50ms; }
.recipe-card:nth-child(3) { animation-delay: 100ms; }
.recipe-card:nth-child(4) { animation-delay: 150ms; }
.recipe-card:nth-child(5) { animation-delay: 200ms; }
.recipe-card:nth-child(6) { animation-delay: 250ms; }

.recipe-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.recipe-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.recipe-card:hover .recipe-card__image img {
    transform: scale(1.05);
}

.recipe-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.difficulty--easy { background-color: var(--difficulty-easy); }
.difficulty--medium { background-color: var(--difficulty-medium); }
.difficulty--hard { background-color: var(--difficulty-hard); }

.recipe-card__content {
    padding: var(--space-lg);
}

.recipe-card__category {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--amber-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.recipe-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--bahcivan-red);
    margin-bottom: var(--space-sm);
    line-height: var(--leading-tight);
}

.recipe-card__title a {
    color: inherit;
    text-decoration: none;
}

.recipe-card__title a:hover {
    color: var(--bahcivan-red-dark);
}

.recipe-card__meta {
    display: flex;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.recipe-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.recipe-card__meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* ── Kategori Kartı ── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
    transform: scale(1.08);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 24, 16, 0.8) 0%,
        rgba(44, 24, 16, 0.1) 60%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
}

.category-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    line-height: var(--leading-tight);
}

@media (min-width: 640px) {
    .category-card__name {
        font-size: var(--text-lg);
    }
}

.category-card__count {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.75);
    margin-top: var(--space-xs);
}

.category-card a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ══════════════════════════════════════
   ANA SAYFA BİLEŞENLERİ
   ══════════════════════════════════════ */

/* ── Home Hero CTA ── */
.home-hero {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--warm-sand);
}

.home-hero__inner {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

.home-hero__content {
    flex: 1;
}

.home-hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--bahcivan-green);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-md);
}

.home-hero__highlight {
    color: var(--bahcivan-red);
}

.home-hero__desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.home-hero__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .home-hero__actions {
        flex-direction: row;
        align-items: center;
    }
}

.btn--lg {
    padding: 14px 28px;
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.home-hero__search {
    flex: 1;
    max-width: 320px;
}

.home-hero__search form {
    display: flex;
    border: 1.5px solid var(--warm-sand);
    border-radius: 100px;
    overflow: hidden;
    background: var(--warm-white);
    transition: border-color var(--transition-fast);
}

.home-hero__search form:focus-within {
    border-color: var(--bahcivan-green);
}

.home-hero__search input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    background: transparent;
    min-width: 0;
}

.home-hero__search input::placeholder {
    color: var(--text-muted);
}

.home-hero__search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.home-hero__search button:hover {
    color: var(--bahcivan-green);
}

/* Hero Cinema (Ken Burns Slideshow) */
.home-hero__visual {
    display: none;
}

@media (min-width: 768px) {
    .home-hero__visual {
        display: flex;
        flex-shrink: 0;
        width: 360px;
    }
}

@media (min-width: 1024px) {
    .home-hero__visual {
        width: 440px;
    }
}

.hero-cinema {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.hero-cinema__slide {
    position: absolute;
    inset: 0;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: hidden;
}

.hero-cinema__slide.is-active {
    opacity: 1;
    z-index: 1;
}

/* Ken Burns efektleri */
.hero-cinema__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-cinema__slide.is-active .hero-cinema__img {
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.hero-cinema__slide.is-active[data-kb="kb-zoom-in"] .hero-cinema__img {
    animation-name: kbZoomIn;
}
.hero-cinema__slide.is-active[data-kb="kb-zoom-out"] .hero-cinema__img {
    transform: scale(1.15);
    animation-name: kbZoomOut;
}
.hero-cinema__slide.is-active[data-kb="kb-pan-left"] .hero-cinema__img {
    animation-name: kbPanLeft;
}
.hero-cinema__slide.is-active[data-kb="kb-pan-right"] .hero-cinema__img {
    animation-name: kbPanRight;
}

@keyframes kbZoomIn {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

@keyframes kbZoomOut {
    from { transform: scale(1.15); }
    to   { transform: scale(1); }
}

@keyframes kbPanLeft {
    from { transform: scale(1.1) translateX(3%); }
    to   { transform: scale(1.1) translateX(-3%); }
}

@keyframes kbPanRight {
    from { transform: scale(1.1) translateX(-3%); }
    to   { transform: scale(1.1) translateX(3%); }
}

/* Overlay + Caption */
.hero-cinema__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.1) 40%,
        transparent 100%
    );
}

.hero-cinema__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-lg);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hero-cinema__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: white;
    line-height: var(--leading-tight);
}

.hero-cinema__cta {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-fast);
}

.hero-cinema__slide:hover .hero-cinema__cta {
    color: white;
}

/* ── Home Sections ── */
.home-section {
    padding: var(--space-3xl) 0;
}

.home-favorites {
    background: var(--warm-white);
}

.home-meal-types {
    background: var(--warm-cream);
}

.home-categories {
    background: var(--warm-white);
}

.home-latest {
    background: var(--warm-cream);
}

@media (max-width: 639px) {
    .home-latest {
        padding-bottom: var(--space-xl); /* 2rem — was 4rem */
    }
    .site-main {
        padding-bottom: var(--space-2xl); /* 3rem — was 6rem */
    }
}

/* ── Slider (Carousel) ── */
.slider {
    overflow: hidden;
    position: relative;
}

.slider__track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-sm);
}

.slider__track::-webkit-scrollbar {
    display: none;
}

.slider__slide {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (min-width: 640px) {
    .slider__slide {
        flex: 0 0 300px;
    }
}

/* Slider Arrows */
.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--warm-sand);
    border-radius: 50%;
    background: var(--warm-white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--bahcivan-red);
    color: var(--bahcivan-red);
    background: rgba(205, 57, 44, 0.04);
}

.section-header__nav {
    display: flex;
    gap: var(--space-sm);
}

.section-header__right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* ── Favorite Card (Carousel Item) ── */
.favorite-card {
    display: block;
    text-decoration: none;
    background: var(--warm-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.favorite-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.favorite-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--warm-ivory);
    position: relative;
}

.favorite-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.favorite-card:hover .favorite-card__image img {
    transform: scale(1.06);
}

.favorite-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-ivory);
}

.favorite-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.favorite-card__body {
    padding: var(--space-md);
}

.favorite-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--bahcivan-red);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-sm);
}

.favorite-card:hover .favorite-card__title {
    color: var(--bahcivan-red);
}

.favorite-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.favorite-card__tag {
    font-size: var(--text-xs);
    color: var(--bahcivan-green);
    font-weight: 600;
}

.favorite-card__time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ── Meal Type Grid ── */
.meal-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .meal-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .meal-type-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.meal-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--warm-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--meal-color, var(--bahcivan-red));
    transition: all var(--transition-base);
}

.meal-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.meal-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.meal-card__image {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.meal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.meal-card:hover .meal-card__image img {
    transform: scale(1.1);
}

.meal-card--visual {
    cursor: pointer;
}

.meal-card__content {
    flex: 1;
    min-width: 0;
}

.meal-card__title {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--bahcivan-green);
}

.meal-card:hover .meal-card__title {
    color: var(--meal-color, var(--bahcivan-red));
}

.meal-card__count {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.meal-card__arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.meal-card:hover .meal-card__arrow {
    color: var(--meal-color, var(--bahcivan-red));
    transform: translateX(4px);
}

/* ── Cheese Category Grid ── */
.cheese-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .cheese-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .cheese-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.cheese-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--warm-cream);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all var(--transition-base);
    text-align: center;
}

.cheese-card:hover {
    background: var(--warm-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.cheese-card__icon {
    font-size: 2.2rem;
}

.cheese-card__name {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--bahcivan-red);
}

.cheese-card:hover .cheese-card__name {
    color: var(--bahcivan-red);
}

.cheese-card__count {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ── Home Brand Section ── */
.home-brand {
    background: var(--bahcivan-green);
    color: white;
}

.home-brand__inner {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
}

@media (max-width: 767px) {
    .home-brand__inner {
        flex-direction: column;
        text-align: center;
    }
}

.home-brand__content {
    flex: 1;
}

.home-brand__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.home-brand__text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.home-brand .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.home-brand .btn--outline:hover {
    background: white;
    color: var(--bahcivan-green);
    border-color: white;
}

.home-brand__badges {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .home-brand__badges {
        width: 100%;
        justify-content: center;
    }
}

.brand-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    min-width: 100px;
}

.brand-badge__icon {
    font-size: 1.8rem;
}

.brand-badge__text {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* ── Bölüm Başlıkları ── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    gap: var(--space-md);
}

/* Kicker + accent-line + başlık grubunu dikey hizalar */
.section-header__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-header__kicker {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bahcivan-green);
    margin-bottom: var(--space-xs);
}

/* Dekoratif kırmızı accent çizgisi — tüm başlık bloklarında tutarlı */
.pt-accent-line {
    display: block;
    width: 38px;
    height: 3px;
    background: var(--bahcivan-red);
    border-radius: 2px;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--bahcivan-green);
}

.section-header__link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--amber-gold);
    white-space: nowrap;
}

.section-header__link:hover {
    color: var(--amber-gold-dark);
}

/* ── Tarif Detay Sayfası ── */
.recipe-detail {
    max-width: var(--container-max);
    margin-inline: auto;
}

.recipe-detail h1 {
    color: var(--bahcivan-red);
    font-weight: 400;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--amber-gold);
}

.breadcrumb__separator {
    color: var(--bahcivan-red);
}

/* Tarif hero */
.recipe-hero {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
    .recipe-hero {
        aspect-ratio: 2.5 / 1;
    }
}

.recipe-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta bilgi kartı */
.recipe-meta-card {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--warm-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-2xl);
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 120px;
}

.recipe-meta-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--warm-ivory);
    border-radius: 50%;
    color: var(--amber-gold);
    flex-shrink: 0;
}

.recipe-meta-item__icon svg {
    width: 20px;
    height: 20px;
}

.recipe-meta-item__label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: block;
}

.recipe-meta-item__value {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

/* Tarif içerik layout */
.recipe-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 1024px) {
    .recipe-content {
        grid-template-columns: 320px 1fr;
        gap: var(--space-3xl);
    }
}

/* Sol sütun: video + malzemeler */
.recipe-content__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

@media (min-width: 1024px) {
    .recipe-content__sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
        align-self: start;
    }
}

/* Malzeme listesi (sidebar) */
.recipe-ingredients {
    background: var(--warm-ivory);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
}

.recipe-ingredients__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--amber-gold);
}

.recipe-ingredients__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.recipe-ingredients__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--warm-sand);
    font-size: var(--text-base);
    line-height: var(--leading-tight);
}

.recipe-ingredients__item:last-child {
    border-bottom: none;
}

.recipe-ingredients__item.is-checked {
    text-decoration: line-through;
    opacity: 0.5;
}

.recipe-ingredients__item.is-checked .recipe-ingredients__checkbox {
    background: var(--bahcivan-green);
    border-color: var(--bahcivan-green);
}

.recipe-ingredients__checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--warm-sand);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 3px;
}

.recipe-ingredients__amount {
    font-weight: 600;
    flex: 0 0 80px;
}

.recipe-ingredients__item [itemprop="recipeIngredient"] {
    flex: 1;
}

/* Adım adım yapılış */
.recipe-steps__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
}

.recipe-steps__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    counter-reset: step-counter;
}

.recipe-step {
    display: flex;
    gap: var(--space-lg);
    counter-increment: step-counter;
}

.recipe-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--warm-ivory);
    color: var(--amber-gold);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.recipe-step__text {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    padding-top: var(--space-sm);
}

/* Bahçıvan CTA kutusu */
.bahcivan-cta {
    background-color: var(--warm-ivory);
    border-left: 4px solid var(--amber-gold);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-2xl) 0;
}

.bahcivan-cta__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.bahcivan-cta__product {
    font-weight: 700;
    color: var(--text-primary);
}

.bahcivan-cta__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--amber-gold);
    position: relative;
}

.bahcivan-cta__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--amber-gold);
    transition: width var(--transition-base);
}

.bahcivan-cta__link:hover::after {
    width: 100%;
}

.bahcivan-cta__link:hover {
    color: var(--amber-gold-dark);
}

/* Püf noktaları */
.recipe-tips {
    background-color: rgba(93, 143, 80, 0.08);
    border-left: 4px solid var(--herb-green);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-2xl) 0;
}

.recipe-tips__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--herb-green);
    margin-bottom: var(--space-sm);
}

.recipe-tips__text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

/* Meta karttaki besin değerleri — sağa yaslanmış kompakt grup */
.recipe-meta-nutrition {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-left: auto;
    padding-left: var(--space-xl);
    border-left: 1px solid var(--warm-sand);
}

@media (max-width: 767px) {
    .recipe-meta-nutrition {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: var(--space-lg);
        border-top: 1px solid var(--warm-sand);
        width: 100%;
    }
}

.recipe-meta-nutrition__title {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.recipe-meta-nutrition__items {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.recipe-meta-nutrition__item {
    text-align: center;
}

.recipe-meta-nutrition__number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    line-height: 1;
}

.recipe-meta-nutrition__value {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--amber-gold);
    line-height: 1;
}

.recipe-meta-nutrition__unit {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1;
}

.recipe-meta-nutrition__label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    display: block;
    margin-top: 3px;
}

/* Zorluk yıldızları */
.recipe-difficulty-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.recipe-difficulty-star {
    font-size: var(--text-lg);
    color: var(--warm-sand);
    line-height: 1;
}

.recipe-difficulty-star.is-filled {
    color: var(--amber-gold);
}

.recipe-difficulty-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-left: var(--space-xs);
}

/* Besin değerleri tablosu (nutrition-table.php — ileride kullanılabilir) */
.nutrition-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

@media (min-width: 640px) {
    .nutrition-table {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nutrition-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--warm-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.nutrition-item__value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--amber-gold);
    display: block;
}

.nutrition-item__unit {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.nutrition-item__label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: var(--space-xs);
    display: block;
}

/* Benzer tarifler */
.similar-recipes {
    margin-top: var(--space-4xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--warm-sand);
}

/* Sosyal paylaşım butonları */
.share-buttons {
    display: flex;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.share-btn--facebook { background-color: #1877F2; }
.share-btn--twitter { background-color: #1DA1F2; }
.share-btn--pinterest { background-color: #E60023; }
.share-btn--whatsapp { background-color: #25D366; }

.share-btn svg {
    width: 18px;
    height: 18px;
}

/* Yazdır butonu */
.print-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--warm-sand);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.print-btn:hover {
    border-color: var(--amber-gold);
    color: var(--amber-gold);
}

.print-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.print-btn:hover svg {
    transform: rotate(-5deg);
}

/* ── Kategori Sayfası ── */
.taxonomy-header {
    margin-bottom: var(--space-2xl);
}

.taxonomy-header__kicker {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bahcivan-green);
    margin-bottom: var(--space-xs);
}

.taxonomy-header__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--bahcivan-red);
    margin-bottom: var(--space-sm);
}

.taxonomy-header__description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    width: 100%;
    line-height: var(--leading-normal);
}

.taxonomy-header__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
    list-style: none;
    padding: 0;
    margin-top: var(--space-sm);
    width: 100%;
}

.taxonomy-header__features li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 0.2em 0.7em;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: var(--surface-secondary);
}

.filter-clear {
    color: var(--bahcivan-red);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-left: var(--space-sm);
}

/* ── Arşiv Filtre ── */
.archive-filters {
    background: var(--warm-cream);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.archive-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.filter-group--btn {
    flex: 0 0 auto;
    min-width: auto;
}

.filter-label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-select {
    padding: 10px 36px 10px 14px;
    border: 1.5px solid var(--warm-sand);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-primary);
    background: var(--warm-white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B8B8B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.filter-select:focus {
    border-color: var(--bahcivan-green);
    outline: none;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    white-space: nowrap;
}

/* Aktif Filtre Etiketleri */
.active-filters {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(205, 57, 44, 0.08);
    color: var(--bahcivan-red);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: 100px;
}

.active-filter-tag a {
    color: var(--bahcivan-red);
    text-decoration: none;
    font-size: 1.1em;
    line-height: 1;
}

.active-filter-tag a:hover {
    color: var(--bahcivan-red-dark);
}

/* ── Arama Sonuçları ── */
.search-results-header {
    margin-bottom: var(--space-2xl);
}

.search-results-header__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
}

.search-results-header__query {
    color: var(--amber-gold);
}

.search-results-header__count {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ── Marka Alanı (Legacy) ── */
.brand-section {
    background: var(--warm-ivory);
    border-radius: var(--border-radius);
    padding: var(--space-2xl);
    text-align: center;
    margin-top: var(--space-3xl);
}

.brand-section__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    line-height: var(--leading-normal);
}

/* ── Footer ── */
.site-footer {
    background-color: var(--text-primary);
    color: var(--text-on-dark);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

.site-footer__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.site-footer__logo-primary {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--amber-gold-light);
}

.site-footer__logo-secondary {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: rgba(245, 237, 227, 0.7);
}

.site-footer__tagline {
    font-size: var(--text-sm);
    color: rgba(245, 237, 227, 0.7);
    margin-bottom: var(--space-md);
    line-height: var(--leading-normal);
}

.site-footer__bahcivan-link {
    color: var(--amber-gold-light);
    font-weight: 600;
    font-size: var(--text-sm);
}

.site-footer__bahcivan-link:hover {
    color: var(--amber-gold);
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.site-footer__list li a {
    color: rgba(245, 237, 227, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.site-footer__list li a:hover {
    color: var(--amber-gold-light);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    color: rgba(245, 237, 227, 0.7);
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--amber-gold-light);
}

.site-footer__bottom {
    border-top: 1px solid rgba(245, 237, 227, 0.15);
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: var(--text-sm);
    color: rgba(245, 237, 227, 0.5);
}

.site-footer__bottom a {
    color: rgba(245, 237, 227, 0.7);
}

.site-footer__bottom a:hover {
    color: var(--amber-gold-light);
}

.site-footer__legal {
    margin-top: var(--space-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8em;
    opacity: 0.7;
}

.site-footer__legal a {
    color: rgba(245, 237, 227, 0.7);
    text-decoration: none;
}

.site-footer__legal a:hover {
    color: var(--amber-gold-light);
    text-decoration: underline;
}

/* ── 404 Sayfası ── */
.error-404 {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.error-404__code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 10vw, 10rem);
    font-weight: 700;
    color: var(--warm-sand);
    line-height: 1;
    display: block;
}

.error-404__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.error-404__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    line-height: var(--leading-normal);
}

.error-404__suggestions {
    margin-top: var(--space-3xl);
    text-align: left;
}

.error-404__suggestions h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* ── Pagination ── */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border-radius: var(--border-radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--warm-white);
    border: 1px solid var(--warm-sand);
    transition: all var(--transition-fast);
}

.page-numbers:hover {
    border-color: var(--amber-gold);
    color: var(--amber-gold);
}

.page-numbers.current {
    background-color: var(--amber-gold);
    color: white;
    border-color: var(--amber-gold);
}

/* ── No Results ── */
.no-results {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.no-results h2 {
    margin-bottom: var(--space-md);
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* ── Animasyonlar ── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion desteği */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   SVG Icon Sistemi (Tabler Icons — inc/icons.php)
   Tüm icon'lar currentColor kullanır; default marka kırmızısı.
   ══════════════════════════════════════════════════════════════ */
.pt-icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--bahcivan-red);
    flex-shrink: 0;
    stroke-width: 2;
}

/* Brand PNG ikonları — renk manipülasyonu yok, object-fit ile orantı koru */
.pt-icon--png {
    object-fit: contain;
    stroke-width: unset;
    color: unset;
}

/* Mega menü — emoji yerinde tutarlı boyut */
.mega-menu__link-icon .pt-icon {
    width: 30px;
    height: 30px;
}

/* Ana sayfa peynir kartı */
.cheese-card__icon .pt-icon {
    width: 48px;
    height: 48px;
    stroke-width: 1.75;
}

/* "Ne Pişirsem?" meal kartları */
.meal-card__icon .pt-icon {
    width: 56px;
    height: 56px;
    stroke-width: 1.75;
}

/* Brand badges (Bahçıvan 3 kutu) */
.brand-badge__icon .pt-icon {
    width: 36px;
    height: 36px;
}

/* Mobil nav icon kapsayıcı */
.mobile-nav-icon .pt-icon {
    width: 20px;
    height: 20px;
}

/* ── Honeypot (Bot Koruması) ── */
.pt-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ── Tarif Öneri Formu ── */
.submission-page {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.submission-form-wrapper {
    background: var(--warm-white);
    border-radius: var(--border-radius);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    margin: var(--space-xl) 0;
}

.submission-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.submission-consent input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--herb-green);
    cursor: pointer;
}

.submission-consent label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    cursor: pointer;
}

.submission-consent label a {
    color: var(--amber-gold);
    text-decoration: underline;
}

.submission-consent label a:hover {
    color: var(--herb-green);
}

.form-hint {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ── Tarif Gönderme Başarı Ekranı ── */
.submission-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--warm-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin: var(--space-xl) 0;
}

.submission-success svg {
    margin-bottom: var(--space-lg);
}

.submission-success h2 {
    font-size: var(--text-2xl);
    color: var(--bahcivan-green);
    margin-bottom: var(--space-md);
}

.submission-success p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    margin-inline: auto;
    line-height: var(--leading-relaxed);
}

/* ── Tarif Detay Hero — kategori kicker ── */
.recipe-detail header .section-header__kicker {
    margin-bottom: var(--space-xs);
}

/* ── Tarif Video ── */
.recipe-video {
    margin-bottom: var(--space-xl);
}

.recipe-video__player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
}

.recipe-video__player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s;
}

.recipe-video__player:hover img {
    opacity: 0.8;
}

.recipe-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.65);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    pointer-events: none;
}

.recipe-video__player:hover .recipe-video__play {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.recipe-video__play svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

.recipe-video__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
