/* ═══════════════════════════════════════════════════════════════════════════
   Veliki Kuvar - Main Stylesheet v2
   velikikuvar.com
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
    --color-bg: #faf8f5;
    --color-bg-alt: #f4f0eb;
    --color-surface: #ffffff;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999;
    --color-primary: #8b4513;
    --color-primary-dark: #6b3410;
    --color-primary-light: #a0522d;
    --color-accent: #c0392b;
    --color-accent-light: #e74c3c;
    --color-border: #e8e2da;
    --color-border-light: #f0ebe4;
    --color-hero-bg: #3b2f2f;
    --color-hero-text: #faf8f5;
    --color-card-hover: #f5f0ea;
    --color-badge-bg: #f0ebe4;
    --color-badge-text: #8b4513;
    --color-highlight: #ffdd74;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --max-width-narrow: 800px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    min-height: 100vh;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.3;
    font-weight: 600;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── SVG Icon Base ───────────────────────────────────────────────────────── */
.icon {
    display: inline-block;
    vertical-align: -3px;
    flex-shrink: 0;
}

/* ─── Header & Navigation ─────────────────────────────────────────────────── */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.main-nav a:hover {
    background: var(--color-card-hover);
    color: var(--color-primary);
}

.icon-chevron {
    transition: transform 0.2s ease;
}

.has-dropdown.open .icon-chevron {
    transform: rotate(180deg);
}

/* Dropdown - hover based */
.has-dropdown {
    position: relative;
}

ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 280px;
    padding: 8px 0;
    z-index: 100;
    flex-direction: column;
}

.has-dropdown:hover > ul.dropdown {
    display: flex;
}

.has-dropdown.open > ul.dropdown {
    display: flex;
}

.dropdown li {
    display: block;
}

.dropdown a {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 0;
}

.dropdown a:hover {
    background: var(--color-card-hover);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* ─── Breadcrumbs ──────────────────────────────────────────────────────────── */
.breadcrumbs {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border-light);
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-text-light);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs .sep {
    margin: 0 6px;
    color: var(--color-border);
}

/* ─── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
    background: var(--color-hero-bg);
    color: var(--color-hero-text);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139,69,19,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: auto;
    height: 200px;
    margin: 0 auto 32px;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--color-hero-text);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-text {
    font-size: 1rem;
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-hero-text);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(250, 248, 245, 0.5);
    margin-top: 4px;
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ─── Sections ─────────────────────────────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section:nth-child(odd) {
    background: var(--color-bg);
}

.section:nth-child(even) {
    background: var(--color-surface);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-label .icon {
    color: var(--color-primary);
    opacity: 0.8;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-highlight);
    display: inline-block;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* ─── Featured Recipe / Recipe of the Week ────────────────────────────────── */
.featured-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin: 0 auto;
    transition: box-shadow var(--transition);
}

.featured-card:hover {
    box-shadow: var(--shadow-md);
}

.featured-body {
    padding: 40px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.featured-body h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.featured-body p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* ─── Categories Grid with Images ─────────────────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    display: block;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
}

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

.category-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.category-card-body {
    padding: 20px 24px 24px;
}

.category-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-text);
}

.cat-preview {
    font-size: 0.83rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.cat-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ─── Link Lists ───────────────────────────────────────────────────────────── */
.link-list {
    list-style: none;
    max-width: 550px;
    margin: 0 auto;
}

.link-list li {
    border-bottom: 1px solid var(--color-border-light);
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition);
}

.link-list a:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.link-text {
    flex: 1;
}

.link-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 12px;
    opacity: 0.7;
}

.link-list a:hover .link-meta {
    opacity: 1;
}

.link-list + .btn {
    display: flex;
    max-width: 320px;
    margin: 32px auto 0;
    text-align: center;
    justify-content: center;
}

/* ─── About Section ────────────────────────────────────────────────────────── */
.about-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-content strong {
    color: var(--color-text);
}

/* ─── Archive Page ─────────────────────────────────────────────────────────── */
.archive-page {
    padding: 48px 0 80px;
}

.archive-header {
    text-align: center;
    margin-bottom: 48px;
}

.archive-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.archive-description {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 8px;
}

.recipe-count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ─── Recipe Grid (Archive) ────────────────────────────────────────────────── */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.recipe-card {
    display: block;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--color-text);
}

.recipe-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: var(--color-text);
}

.card-body {
    padding: 24px;
}

.card-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-badge-text);
    background: var(--color-badge-bg);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ─── Recipe Page ──────────────────────────────────────────────────────────── */
.recipe-page {
    padding: 40px 0 80px;
}

.recipe-article {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.recipe-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.recipe-category-badge a {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-badge-text);
    background: var(--color-badge-bg);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.recipe-category-badge a:hover {
    background: var(--color-primary);
    color: #fff;
}

.recipe-header h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.recipe-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 32px;
}

.recipe-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.meta-icon {
    color: var(--color-primary);
}

.meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

/* ─── Recipe Content ───────────────────────────────────────────────────────── */
.recipe-section {
    margin-bottom: 48px;
}

.recipe-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border-light);
}

.recipe-section ul {
    list-style: none;
    padding: 0;
}

.recipe-section ul li {
    padding: 10px 0 10px 24px;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.95rem;
}

.recipe-section ul li:last-child {
    border-bottom: none;
}

.recipe-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.4;
}

.recipe-section ol {
    list-style: none;
    counter-reset: step;
    padding: 0;
}

.recipe-section ol li {
    counter-increment: step;
    padding: 16px 0 16px 56px;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.recipe-section ol li:last-child {
    border-bottom: none;
}

.recipe-section ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 36px;
    height: 36px;
    background: var(--color-badge-bg);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.recipe-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Tips section special styling */
.tips-section ul li::before {
    background: var(--color-accent);
    opacity: 0.5;
}

/* Serving section */
.serving-section {
    background: var(--color-badge-bg);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
}

.serving-section h2 {
    border-bottom-color: var(--color-border);
}

/* ─── Difficulty Badges ────────────────────────────────────────────────────── */
.difficulty {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

.difficulty.easy {
    background: #e8f5e9;
    color: #2e7d32;
}

.difficulty.medium {
    background: #fff3e0;
    color: #e65100;
}

.difficulty.hard {
    background: #fce4ec;
    color: #c62828;
}

/* ─── Related Recipes ──────────────────────────────────────────────────────── */
.related-recipes {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.related-recipes h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.related-card {
    display: block;
    padding: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--color-text);
}

.related-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    color: var(--color-text);
}

.related-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.related-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ─── Static Pages ─────────────────────────────────────────────────────────── */
.static-page {
    padding: 48px 0 80px;
}

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

.static-page h1 {
    font-size: 2.2rem;
    margin-bottom: 32px;
}

.static-page h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
}

.static-page p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-hero-bg);
    color: rgba(250, 248, 245, 0.7);
    padding: 0 0 40px;
}

.footer-top {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.08);
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 480px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo img {
    width: auto;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-hero-text);
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-hero-text);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(250, 248, 245, 0.55);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-hero-text);
}

.footer-fact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(250, 248, 245, 0.08);
}

.footer-fact p {
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.4);
    line-height: 1.6;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-bottom-left {
    font-size: 0.82rem;
}

.footer-bottom-left p {
    margin-bottom: 4px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    opacity: 0.5;
}

.footer-bottom-right {
    flex: 1;
    text-align: right;
}

.footer-links {
    font-size: 0.72rem;
    opacity: 0.35;
    line-height: 1.8;
}

.footer-links a {
    color: rgba(250, 248, 245, 0.5);
}

.footer-links a:hover {
    color: rgba(250, 248, 245, 0.8);
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-bottom-right {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        padding: 16px 0;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0 24px;
    }
    
    .main-nav a {
        padding: 12px 0;
    }
    
    .has-dropdown:hover > ul.dropdown {
        display: none;
    }
    
    .has-dropdown.open > ul.dropdown {
        display: flex;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: auto;
    }
    
    .hero {
        padding: 60px 0 70px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat-number {
        font-size: 1.6rem;
    }
    
    .recipe-header h1 {
        font-size: 1.8rem;
    }
    
    .recipe-meta {
        gap: 20px;
    }
    
    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .archive-header h1 {
        font-size: 1.8rem;
    }
    
    .category-card-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-logo {
        height: 120px;
        width: auto;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat-number {
        font-size: 1.3rem;
    }
    
    .recipe-header h1 {
        font-size: 1.5rem;
    }
    
    .recipe-meta {
        gap: 16px;
    }
    
    .meta-item {
        min-width: 70px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-body {
        padding: 24px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .category-card-img {
        height: 140px;
    }
}

/* ─── Print Styles ─────────────────────────────────────────────────────────── */
@media print {
    .site-header,
    .site-footer,
    .breadcrumbs,
    .related-recipes,
    .btn {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .recipe-page {
        padding: 0;
    }
    
    .recipe-section ol li::before {
        background: #eee;
        color: #333;
    }
}
