/* ============================================================
   Self-hosted fonts (subset: latin + latin-ext)
   ============================================================ */
@font-face {
    font-family: 'EB Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/eb-garamond-600.woff2') format('woff2');
}
@font-face {
    font-family: 'EB Garamond';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/eb-garamond-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/open-sans-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/open-sans-700.woff2') format('woff2');
}

:root {
    --primary-color: #f3921c;
    --primary-dark: #d87e14;
    --primary-deep: #a55f08;  /* WCAG AA — açık zemin üzerine metin için (4.5:1+) */
    --secondary-color: #8e5208;
    --secondary-dark: #6e3e04;
    --text-color: #231f20;
    --text-light: #616161;
    --bg-color: #fafafa;
    --bg-white: #ffffff;
    --border-color: #eaeaea;
    --glass-bg: rgba(255, 255, 255, 0.85);

    --font-heading: 'EB Garamond', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 56px;
    --space-10: 80px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 180ms var(--ease);
    --t-base: 250ms var(--ease);
    --t-slow: 400ms var(--ease);
    --transition:
        transform var(--t-base),
        opacity var(--t-base),
        color var(--t-fast),
        background-color var(--t-fast),
        border-color var(--t-fast),
        box-shadow var(--t-base);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-7);
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(243, 146, 28, 0.4);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-deep);
    box-shadow: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: white;
}

/* Header */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 95%;
    z-index: 1000;
    border-bottom: none;
    transition: background-color var(--t-base), box-shadow var(--t-base);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1240px) {
    .site-header {
        margin: 20px;
    }
}

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

.logo img {
    height: 60px;
    width: auto;
}

/* Main Menu */
.main-menu > ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.main-menu > ul > li {
    position: relative;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: transform var(--t-base), opacity var(--t-fast);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .main-menu.active {
        right: 0;
    }

    .main-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-menu > ul > li > a {
        font-size: 1.5rem;
        padding: 15px 30px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        transform: none;
        min-width: 100%;
        padding: 0;
        margin-top: 10px;
        text-align: center;
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }
}

.main-menu > ul > li > a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    position: relative;
    padding: 10px 18px;
    border-radius: 30px;
    transition: var(--transition);
    display: inline-block;
    background-color: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5);
}

.main-menu > ul > li:hover > a {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(243, 146, 28, 0.3);
}

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
    padding: 10px 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    transition: background-color var(--t-fast), color var(--t-fast);
}

.dropdown li a:hover {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
}

/* Hero (homepage) */
.hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    contain: layout paint;
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('/assets/images/hero-bg-mobile.webp') center/cover no-repeat;
    animation: kenBurns 20s infinite alternate;
    z-index: 1;
    will-change: transform;
}

@media (min-width: 768px) {
    .hero::before {
        background-image: url('/assets/images/hero-bg.webp');
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 var(--space-5);
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero h1 {
    color: white;
    font-size: clamp(2.4rem, 5vw + 1rem, 4rem);
    margin-bottom: var(--space-5);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeUp 1s ease forwards;
}

.hero p {
    font-size: clamp(1rem, 0.9vw + 0.85rem, 1.2rem);
    margin-bottom: var(--space-7);
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero .btn {
    animation: fadeUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-actions .btn {
        width: min(280px, 100%);
    }
}

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

/* Sections */
.section {
    padding: var(--space-10) 0;
    contain: layout paint;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-9);
}

.section-title {
    font-size: clamp(1.8rem, 2.4vw + 1rem, 2.5rem);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    color: var(--primary-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
}

/* Cards (shared base for category + product) */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
}

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

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    position: relative;
}

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

.category-img-wrapper {
    height: 200px;
    overflow: hidden;
    background-color: #eee;
}

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

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

.category-content {
    padding: var(--space-5);
    text-align: center;
    position: relative;
    background: var(--bg-white);
    z-index: 2;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.category-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-7);
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1181 / 786;
    background-color: #eee;
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background-color var(--t-base);
}

.product-card:hover .product-img-wrapper::after {
    background: rgba(0,0,0,0.2);
}

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

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

.product-info {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background: var(--bg-white);
}

.product-category {
    font-size: 12px;
    color: var(--primary-deep);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: var(--space-1);
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-3);
    transition: color var(--t-fast);
}

.product-card:hover .product-title {
    color: var(--primary-deep);
}

.product-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.product-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* JS Filter Animations */
.product-card.hide {
    display: none;
}

/* Feature Section */
.feature-section {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--space-10) 0;
    text-align: center;
}

.feature-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-5);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-9);
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: var(--space-4) 0;
}

/* Footer */
.site-footer {
    background: url('/assets/images/footer-bg-2.jpg') center/cover no-repeat;
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-5);
}

.footer-col h3 {
    color: white;
    margin-bottom: var(--space-5);
    font-size: 1.5rem;
}

.contact-info li, .footer-links li {
    margin-bottom: var(--space-3);
    color: #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li svg, .footer-links li svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.contact-info a:hover, .footer-links a:hover {
    color: var(--primary-color);
}

.footer-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-4);
    padding: 10px 18px;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color var(--t-fast), color var(--t-fast);
}

.footer-directions:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-5);
    color: #bbb;
    font-size: 14px;
}

/* Bold all footer links — including copyright/legal/quick-links */
.site-footer a {
    font-weight: 700;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links a {
    margin-left: 15px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform var(--t-slow);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner .btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    white-space: nowrap;
    margin-left: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Sticky Socials (Right edge) */
.sticky-socials {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 99;
}

.sticky-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    transition: width var(--t-base), background-color var(--t-fast);
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px 0 0 8px;
}

.sticky-social:hover {
    width: 55px;
    background: var(--secondary-color);
    color: white;
}

.sticky-social.facebook { background: #3b5998; }
.sticky-social.instagram { background: #e1306c; }
.sticky-social.facebook:hover,
.sticky-social.instagram:hover { background: var(--secondary-color); }


/* ============================================================
   Page Header (inner pages) — soft-blob SVG backgrounds
   ============================================================ */
.page-header {
    background-color: var(--secondary-color);
    background-image: url('/assets/images/heroes/hero-page.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 10vh, 100px);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    contain: layout paint;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    z-index: 0;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.page-header .container {
    width: 100%;
}

/* Page-specific hero SVG variants */
body[data-page="about"] .page-header {
    background-image: url('/assets/images/heroes/hero-about.svg');
}
body[data-page="menu"] .page-header {
    background-image: url('/assets/images/heroes/hero-menu.svg');
}
body[data-page="contact"] .page-header {
    background-image: url('/assets/images/heroes/hero-contact.svg');
}
body[data-page="404"] .page-header {
    background-image: url('/assets/images/heroes/hero-404.svg');
}

/* RTL: flip blob asymmetry so visual weight stays balanced */
body[dir="rtl"] .page-header {
    transform: scaleX(-1);
}
body[dir="rtl"] .page-header > * {
    transform: scaleX(-1);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 15px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        margin: 0;
    }
    .header-inner {
        flex-direction: row;
        height: 72px;
        padding: 0 var(--space-4);
        gap: var(--space-4);
        justify-content: space-between;
    }
    .logo img {
        height: 48px;
    }
    .main-menu > ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    /* Hero: navbar altında kalan başlığı temizle */
    .hero {
        min-height: 620px;
        padding-top: 20px;
    }
}

/* Product Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-md);
    overflow: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
    transform: scale(0.9);
    transition: transform var(--t-slow) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-fast), background-color var(--t-fast);
}

.lightbox-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-img-container {
    width: 100%;
    height: 350px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .lightbox-img-container {
        height: 550px;
    }
}

.lightbox-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-info {
    padding: var(--space-6);
    text-align: center;
}

.lightbox-info h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-3);
}

.lightbox-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.lightbox-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep);
}

/* ============================================================
   Homepage: About-mini section
   ============================================================ */
.about-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-9);
    align-items: center;
}

.about-mini-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    background-color: #eee;
}

.about-mini-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.about-mini-media:hover img {
    transform: scale(1.04);
}

.about-mini-badge {
    position: absolute;
    inset-block-end: var(--space-5);
    inset-inline-start: var(--space-5);
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 120px;
    text-align: center;
}

.about-mini-badge-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    line-height: 1;
}
.about-mini-badge-num sup {
    font-size: 1.4rem;
    vertical-align: super;
    margin-inline-start: 2px;
}
.about-mini-badge-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-top: var(--space-2);
    font-weight: 600;
}

.about-mini-content .section-subtitle {
    display: block;
    margin-bottom: var(--space-3);
}

.about-mini-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: var(--space-7);
    max-width: 56ch;
}

@media (max-width: 768px) {
    .about-mini-grid {
        grid-template-columns: 1fr;
        gap: var(--space-7);
    }
    .about-mini-content h2.section-title {
        text-align: center !important;
    }
    .about-mini-content .section-subtitle {
        text-align: center;
    }
    .about-mini-content > .animate-el:last-child {
        text-align: center;
    }
}

/* ============================================================
   Homepage: CTA banner (between categories & featured)
   ============================================================ */
.home-cta {
    position: relative;
    padding: clamp(70px, 11vh, 110px) 0;
    background:
        linear-gradient(135deg, rgba(142,82,8,0.94) 0%, rgba(110,62,4,0.96) 100%),
        url('/assets/images/heroes/hero-menu.svg') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.home-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(243,146,28,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 15% 85%, rgba(245,230,211,0.12) 0%, transparent 60%);
    z-index: 0;
}

.home-cta .container { position: relative; z-index: 1; }

.home-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.home-cta-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border: 1px solid rgba(243,146,28,0.4);
    border-radius: 50px;
    background: rgba(243,146,28,0.08);
}

.home-cta-title {
    color: white;
    font-size: clamp(1.8rem, 3.5vw + 1rem, 2.8rem);
    margin-bottom: var(--space-5);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.home-cta-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    margin-bottom: var(--space-8);
    max-width: 56ch;
    margin-inline: auto;
}

.home-cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.home-cta-primary {
    background: #25d366;
    border-color: #25d366;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.home-cta-primary:hover {
    background: white;
    color: #25d366;
    border-color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.home-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.55);
    box-shadow: none;
}

.home-cta-secondary:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ============================================================
   Product marquee (auto-scrolling slider)
   ============================================================ */
.product-marquee {
    background: linear-gradient(180deg, #ffffff 0%, #faf3e7 100%);
    padding: var(--space-9) 0 var(--space-10);
    overflow: hidden;
    position: relative;
}

.marquee-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.marquee-header .section-subtitle {
    display: block;
    margin-bottom: var(--space-2);
}

.marquee-title {
    font-size: clamp(1.6rem, 2.4vw + 1rem, 2.2rem);
    margin: 0;
    color: var(--secondary-color);
}

.marquee-viewport {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: var(--space-5);
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
    will-change: transform;
}

.marquee-viewport:hover .marquee-track,
.marquee-track:focus-within {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* RTL: reverse direction */
body[dir="rtl"] .marquee-track {
    animation-name: marquee-scroll-rtl;
}
@keyframes marquee-scroll-rtl {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.marquee-item {
    flex-shrink: 0;
    width: 240px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    background-color: #eee;
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: block;
}

.marquee-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.marquee-item:hover img {
    transform: scale(1.06);
}

.marquee-item-overlay {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    padding: var(--space-5) var(--space-4) var(--space-4);
    background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.marquee-item-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--primary-color);
}

.marquee-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

@media (max-width: 576px) {
    .marquee-item {
        width: 180px;
    }
    .marquee-track {
        animation-duration: 35s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none !important;
    }
    .marquee-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .marquee-item { scroll-snap-align: start; }
}

/* ============================================================
   About page: shop gallery (asymmetric grid)
   ============================================================ */
.about-gallery {
    background: linear-gradient(180deg, #ffffff 0%, #faf3e7 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-5);
    aspect-ratio: 16 / 10;
    max-height: 640px;
}

.gallery-item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: #eee;
    position: relative;
    transition: transform var(--t-base), box-shadow var(--t-base);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
    transition: background var(--t-base);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.3) 100%);
}

.gallery-item-1 {
    grid-row: span 2;
    grid-column: 1;
}
.gallery-item-2 { grid-column: 2; grid-row: 1; }
.gallery-item-3 { grid-column: 2; grid-row: 2; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
        max-height: none;
    }
    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3 {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
}

/* ============================================================
   About page — page-header eyebrow
   ============================================================ */
.page-header .page-eyebrow {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

/* ============================================================
   About page: Intro / lead
   ============================================================ */
.about-intro {
    padding: clamp(60px, 9vh, 100px) 0;
}
.about-intro-grid {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.about-intro-grid .section-subtitle {
    display: block;
    margin-bottom: var(--space-3);
}
.about-intro-headline {
    font-size: clamp(1.6rem, 2.4vw + 1rem, 2.4rem);
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: var(--space-5);
    font-weight: 600;
    letter-spacing: -0.01em;
}
.about-intro-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================================
   About page: Story split
   ============================================================ */
.about-story {
    padding-top: 0;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-10);
    align-items: start;
}

.about-story-media {
    position: sticky;
    top: 130px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 500px;
    background-color: #faf3e7;
}

.about-story-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-story-caption {
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    padding: var(--space-5);
    color: white;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-story-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-color);
}

.about-story-content p {
    margin-bottom: var(--space-5);
}

.about-story-paragraph::first-letter {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    float: inline-start;
    margin-inline-end: var(--space-3);
    margin-block-start: var(--space-1);
    color: var(--primary-deep);
    font-weight: 700;
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-7);
    }
    .about-story-media {
        position: relative;
        top: 0;
        height: 500px;
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

/* ============================================================
   About page: Stats strip
   ============================================================ */
.about-stats {
    background: linear-gradient(180deg, #faf3e7 0%, #f7ead4 100%);
    padding: var(--space-9) 0;
    border-block: 1px solid rgba(142, 82, 8, 0.08);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    inset-inline-end: calc(var(--space-7) * -0.5);
    inset-block: 15%;
    width: 1px;
    background: rgba(142, 82, 8, 0.18);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw + 1rem, 4rem);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-number sup {
    font-size: 1.6rem;
    color: var(--primary-deep);
    vertical-align: super;
    margin-inline-start: 2px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-7);
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

/* ============================================================
   About page: Value cards
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-7);
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform var(--t-slow);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(243, 146, 28, 0.1);
    color: var(--primary-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-4);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
    margin: 0;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ============================================================
   About page: CTA banner
   ============================================================ */
.about-cta {
    background:
        linear-gradient(180deg, rgba(142,82,8,0.92), rgba(110,62,4,0.96)),
        url('/assets/images/heroes/hero-page.svg') center/cover no-repeat;
    color: white;
    padding: clamp(60px, 10vh, 100px) 0;
    text-align: center;
}

.about-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.about-cta h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw + 1rem, 2.4rem);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.about-cta p {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: var(--space-7);
    line-height: 1.6;
}

.about-cta .btn {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.about-cta .btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============================================================
   Legal pages (privacy / KVKK / cookies)
   ============================================================ */
.legal-container {
    max-width: 820px;
}

.legal-content {
    background: var(--bg-white);
    padding: clamp(28px, 4vw, 56px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--text-color);
    line-height: 1.75;
    font-size: 1rem;
}

.legal-content > p:first-child {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-block-end: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.92rem;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-block: var(--space-8) var(--space-4);
    padding-block-start: var(--space-2);
    border-block-start: 2px solid var(--primary-color);
    border-image: linear-gradient(90deg, var(--primary-color), transparent) 1;
    padding-inline-start: 0;
    display: inline-block;
    line-height: 1.3;
    width: 100%;
}

.legal-content h3:first-of-type {
    margin-block-start: var(--space-5);
}

.legal-content p {
    margin-bottom: var(--space-4);
}

.legal-content ul,
.legal-content ol {
    padding-inline-start: 1.4em;
    margin: var(--space-3) 0 var(--space-5);
}

.legal-content ul li,
.legal-content ol li {
    list-style: disc;
    margin-bottom: var(--space-2);
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--primary-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

.legal-content code {
    background: var(--bg-color);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.88em;
    font-family: ui-monospace, "SF Mono", Menlo, Monaco, "Cascadia Mono", monospace;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
}

.legal-content strong {
    color: var(--secondary-color);
}

.legal-content em {
    color: var(--text-color);
    font-style: italic;
}

@media (max-width: 576px) {
    .legal-content {
        padding: 24px 20px;
    }
    .legal-content h3 {
        font-size: 1.1rem;
    }
}

/* Legacy about-card (backwards compat — minimal) */
.about-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
    height: 100%;
}
.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.about-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 146, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-deep);
    flex-shrink: 0;
}

/* RTL adjustments */
.rtl { text-align: right; }
.rtl .main-menu > ul > li > a::after { left: auto; right: 0; }
.rtl .dropdown { left: auto; right: 0; }
.rtl .btn { margin-left: 0; margin-right: 10px; }
.rtl .contact-info li strong { margin-right: 0; margin-left: 5px; }

/* ============================================================
   Reduced motion: kill non-essential animation
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero::before {
        animation: none !important;
    }
}
