/* ============================================
   INDEX.CSS – All page styles (no CSS in HTML)
   Structure: RESET/BASE → LAYOUT → COMPONENTS
   → SECTIONS → ANIMATIONS → RESPONSIVE
   ============================================ */

/* RESET / BASE */
/* ============================================
   GLOBAL STYLE
   ============================================ */
:root {
    --home-menu-h: 12rem;
    --hero-sheet-max-width: 720px;
    --hero-sheet-radius: 24px;
    --section-max-width: 1040px;
}   

body {
    background-color: var(--bg-secondary) !important;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

.category-selection-title,
.category-card-name,
.home-menu-h3,
.home-menu-h4 {
    font-family: "Kanit", sans-serif !important;
}

/* ============================================
   HERO SECTION - STATIC BACKGROUND
   ============================================ */

div#home-menu {
    width: 100%;
    height: calc(var(--app-vh, 100vh) - var(--main-header-h, 0px));
    height: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    max-height: calc(var(--app-vh, 100vh) - var(--main-header-h, 0px));
    max-height: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    min-height: calc(100dvh - var(--main-header-h, 0px));
    position: relative;
    top: 0;
    left: 0;
    margin-top: var(--main-header-h, 0px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    box-sizing: border-box;
}

div#home-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: inherit;
}

div#home-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75));
    z-index: 2;
    pointer-events: none;
}

div#home-menu img.home-background-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /* Hafif bulanıklık: karmaşayı azaltır, öndeki metinleri öne çıkarır (içerik yüksek z-index ile etkilenmez) */
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.home-menu-title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    z-index: 3;
    /* Overlay (z-index: 2) ve blur sadece arka planı etkiler; içerik bu katmanda net kalır */
    text-align: center;
    width: 100%;
    max-width: 90%;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hero-brand-lockup {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand-logo {
    max-width: min(85vw, 420px);
    width: auto;
    height: auto;
    max-height: min(38vh, 300px);
    object-fit: contain;
    object-position: center center;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
}

.hero-brand-logo[hidden] {
    display: none !important;
}

/* ============================================
   HERO CTA BUTTON - Premium Glassmorphism
   ============================================ */

.hero-cta-button {
    margin-top: 0rem;
    padding: 1.5rem 3rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 1rem, 1.125rem);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 4;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    will-change: transform, opacity;
}

.hero-cta-button:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.hero-cta-button:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.hero-cta-button.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Breathing animation - subtle and premium */
@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.hero-cta-button:not(.hidden) {
    animation: breathing 4s ease-in-out infinite;
}



.fa-angle-down{
    margin-left: 0.5rem;
    margin-right: -0.5rem;
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    opacity: 0.85;
    z-index: 4;
    pointer-events: auto;
    transition: opacity 0.35s ease;
}

.scroll-text {
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    font-family: "Montserrat", "Cabin", sans-serif;
    font-weight: 500;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(-45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(8px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-arrow {
        animation: none;
    }
}

/* ============================================
   CATEGORY SELECTION PAGE
   ============================================ */

#category-selection-page {
    background-color: rgb(10, 18, 16);
    padding: 0;
    position: relative;
    z-index: 2;
    /* Üst köşeler: .category-card-image-wrapper ile aynı (kart görseli ile hizalı) */
    border-radius: 1.375rem 1.375rem 0 0;
    margin-top: calc(var(--app-vh, 100vh) - var(--main-header-h, 0px));
    margin-top: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
    overscroll-behavior: contain;
    will-change: transform;
    isolation: isolate;
    -webkit-isolation: isolate;
    contain: layout style paint;
}

[data-theme="dark"] #category-selection-page {
    box-shadow: 0 -1px 3px rgba(40, 40, 45, 0.06), 0 -4px 12px rgba(40, 40, 45, 0.04);
}

/* ============================================
   SECTION TITLE - Premium Typography Hierarchy
   ============================================ */

.category-title-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: calc(2rem * var(--mobile-scale));
    box-sizing: border-box;
}

/* DEFAULT (DARK THEME) */
.category-title-wrapper::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.35); /* premium white */
    border-radius: 2px;
    opacity: 1;
}

/* LIGHT THEME OVERRIDE */
html[data-theme="light"] .category-title-wrapper::before,
body[data-theme="light"] .category-title-wrapper::before {
    background-color: rgba(54, 80, 48, 0.35);
}


.category-title-wrapper::after {
    content: none;
}

.category-selection-title {
    flex: 1;
    text-align: center;
    font-size: calc(clamp(1.35rem, 2.1rem, 2.5rem) * var(--mobile-scale-typography));
    font-weight: 500;
    font-family: "Kanit", sans-serif;
    color: var(--text-primary);
    letter-spacing: 1.2px;
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: break-word;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[data-theme="dark"] .category-selection-title {
    color: var(--text-primary);
}

/* ============================================
   CATEGORY GRID
   ============================================ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    /* Prevent grid items from expanding beyond their column width */
    min-width: 0;
}

#category-grid {
    background-color: var(--bg-body);
}

/* ============================================
   CATEGORY CARD
   ============================================ */

.category-card {
    position: relative;
    border-radius: 1.375rem;
    overflow: visible;
    transition: 
        transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    box-sizing: border-box;
}

.category-card:hover {
    transform: translateY(-3px) scale(1.015);
}

.category-card:active {
    transform: translateY(-1px) scale(0.998);
    transition-duration: 100ms;
}

.category-card-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 2.8;   
    border-radius: 1.375rem;
    overflow: hidden;
    background-color: var(--bg-tertiary);
    margin-bottom: 1.125rem;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.03); 
    position: relative;
}

.category-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.02) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.category-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.category-card:hover .category-card-image {
    transform: scale(1.025);
}

.category-card-name {
    color: var(--text-primary);
    font-size: calc(2.25rem * var(--mobile-scale-typography));
    font-weight: 400;
    font-family: "Kanit", sans-serif;

    text-align: center;
    padding: 0 0.875rem;
    margin: 5px 0 0 0;

    line-height: 1.2;
    min-height: calc(1.25em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Force text to wrap and prevent grid column expansion */
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    box-sizing: border-box;
}


[data-theme="dark"] .category-card-name {
    color: var(--text-primary);
}

/* ============================================
   DARK MODE
   ============================================ */






[data-theme="dark"] .category-card-image-wrapper::after {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    div#home-menu {
        height: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
        max-height: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    }

    div#home-menu::before {
        height: 60px;
    }

    .hero-brand-logo {
        max-width: min(88vw, 360px);
        max-height: min(32vh, 240px);
    }

    #category-selection-page {
        padding: 0;
        border-radius: 1.125rem 1.125rem 0 0;
        margin-top: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    }

    .category-title-wrapper {
        margin-bottom: calc(1.75rem * var(--mobile-scale));
    }

    .category-title-wrapper::before {
        top: -1.25rem;
        width: 36px;
        height: 3.5px;
    }

    .category-grid {
        gap: 1.7rem 1rem;
    }

    .category-card {
        border-radius: 1.125rem;
    }

    .category-card-image-wrapper {
        border-radius: 1.125rem;
        margin-bottom: 1rem;
    }

    .category-card-name {
        font-size: calc(1.7rem * var(--mobile-scale-typography));
        padding: 0 0.625rem;
        min-height: 2.25rem;
        margin-top: 0;
    }
}

@media (max-width: 500px) {
    #lang-fab {
        bottom: calc(2.25rem + env(safe-area-inset-bottom, 0px)) !important;
    }
    div#home-menu {
        height: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
        max-height: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    }

    div#home-menu::before {
        height: 50px;
    }

    .hero-brand-logo {
        max-width: min(90vw, 300px);
        max-height: min(28vh, 200px);
    }

    #category-selection-page {
        padding: 0;
        border-radius: 1rem 1rem 0 0;
        margin-top: calc(var(--app-vh, 100dvh) - var(--main-header-h, 0px));
    }

    .category-title-wrapper {
        margin-bottom: calc(1.60rem * var(--mobile-scale));
    }

    .category-title-wrapper::before {
        top: -1rem;
        width: 32px;
        height: 3px;
    }

    .category-grid {
        gap: 1.7rem 1.5rem;
    }

    .category-card {
        border-radius: 1rem;
    }

    .category-card-image-wrapper {
        border-radius: 1rem;
        margin-bottom: 0.875rem;
    }

    .category-card-name {
        font-size: calc(1.4rem * var(--mobile-scale-typography));
        padding: 0 0.5rem;
        min-height: 2rem;
        margin-top: 0;
    }

    .hero-cta-button {
        margin-top: 0rem;
        padding: 1rem 2.4rem;
        font-size: clamp(0.75rem, 0.9rem, 1rem);
    }
}

/* ============================================
    LOADING & EMPTY STATE
   ============================================ */

.category-grid.loading {
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.category-grid.empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-secondary);
    font-size: calc(1.125rem * var(--mobile-scale-typography));
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ============================================
   ATMOSPHERE SECTION - Premium Hero Card
   ============================================ */

#atmosphere {
    position: relative;
    z-index: 1;
}

.atmosphere-shell {
    position: relative;
    max-width: 1120px;
    margin: 1.75rem auto 0;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(216, 194, 122, 0.1) 0, transparent 55%),
        linear-gradient(135deg, #152219 0%, #121c17 45%, #0f1a14 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    isolation: isolate;
    transform: translateZ(0);
    transition:
        transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1),
        background 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .atmosphere-shell {
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    box-shadow: var(--shadow-soft);
    border-radius: 1.5rem;
    border: 1px solid var(--border-soft);
}

[data-theme="light"] .atmosphere-shell:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .atmosphere-shell {
    box-shadow:
        0 1px 3px rgba(40, 40, 45, 0.06),
        0 4px 12px rgba(40, 40, 45, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.atmosphere-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 12, 14, 0.2) 0%,
        rgba(12, 12, 14, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.atmosphere-shell:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .atmosphere-shell:hover {
    box-shadow:
        0 2px 4px rgba(40, 40, 45, 0.06),
        0 6px 16px rgba(40, 40, 45, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .atmosphere-shell::before {
    background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, transparent 50%, transparent 100%);
}

[data-theme="light"] .atmosphere-heading {
    color: var(--text-primary);
}

[data-theme="light"] .atmosphere-text {
    color: var(--text-secondary);
}

.atmosphere-copy {
    position: relative;
    z-index: 2;
    padding: 2.4rem 2.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.atmosphere-copy > div:first-child {
    max-width: 620px;
}

.atmosphere-heading {
    font-family: "Kanit", sans-serif;
    font-size: clamp(2.1rem, 2.5rem, 2.9rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.atmosphere-text {
    font-family: "Cabin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(0.98rem, 1.05rem, 1.12rem);
    line-height: 1.7;
    color: rgba(240, 237, 230, 0.86);
    max-width: 640px;
}

.atmosphere-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.atmosphere-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background:
        radial-gradient(circle at top left, var(--primary-soft) 0%, transparent 55%),
        rgba(19, 24, 19, 0.88);
    color: rgba(252, 249, 243, 0.9);
    font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    cursor: default;
    transform: translateY(0);
    transition:
        transform 230ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 230ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 230ms cubic-bezier(0.16, 1, 0.3, 1),
        background 230ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atmosphere-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    margin-right: 0.45rem;
    background: var(--accent-gold, var(--color-accent-gold));
    box-shadow: 0 0 8px rgba(216, 194, 122, 0.45);
}

.atmosphere-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 229, 163, 0.35);
    background:
        radial-gradient(circle at top left, var(--primary-soft) 0%, transparent 55%),
        rgba(26, 42, 34, 0.92);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(168, 229, 163, 0.2);
}

.atmosphere-tag:active {
    transform: translateY(0);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(168, 229, 163, 0.28);
}

.atmosphere-media {
    position: relative;
    z-index: 1;
    height: 230px;
    margin: 0 1.5rem 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background: #050506;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.85),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    isolation: isolate;
}

[data-theme="dark"] .atmosphere-media {
    box-shadow:
        0 1px 3px rgba(40, 40, 45, 0.06),
        0 4px 12px rgba(40, 40, 45, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .atmosphere-media::after {
    box-shadow: inset 0 16px 52px rgba(0, 0, 0, 0.72);
}

.atmosphere-photo {
    position: absolute;
    inset: 0;
    background-image: url('../IMAGES/atmospher.webp');
    background-size: cover;
    background-position: center 70% !important;
    filter: blur(2px) brightness(0.6) saturate(1.2);
    transition: filter 320ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.atmosphere-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 184, 125, 0.32), transparent 60%),
        radial-gradient(circle at bottom right, rgba(250, 110, 80, 0.35), transparent 65%),
        linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.1) 100%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 1;
}

.atmosphere-media::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 20px 58px rgba(0, 0, 0, 0.93);
    pointer-events: none;
    z-index: 2;
}

.atmosphere-shell:hover .atmosphere-photo {
    filter: blur(1.5px) brightness(0.72) saturate(1.28);
}

.atmosphere-overlay-copy {
    position: absolute;
    right: 1.5rem;
    bottom: 1.15rem;
    z-index: 3;
    font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 245, 230, 0.76);
    text-shadow:
        0 0 18px rgba(0, 0, 0, 0.95),
        0 0 4px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

@media (max-width: 960px) {
    .atmosphere-shell {
        margin-top: 1.5rem;
    }

    .atmosphere-copy {
        padding: 2rem 1.75rem 1.35rem;
    }

    .atmosphere-media {
        margin: 0 1.25rem 1.25rem;
        height: 210px;
    }
}

@media (max-width: 640px) {
    .atmosphere-shell {
        margin-top: 1.25rem;
        border-radius: 20px;
    }

    .atmosphere-copy {
        padding: 1.75rem 1.4rem 1.25rem;
        gap: 1.3rem;
    }

    .atmosphere-heading {
        font-size: clamp(1.7rem, 1.9rem, 2.1rem);
        letter-spacing: 0.14em;
    }

    .atmosphere-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .atmosphere-media {
        margin: 0 1.1rem 1.15rem;
        height: 190px;
        border-radius: 18px;
    }

    .atmosphere-overlay-copy {
        right: 1.25rem;
        bottom: 0.95rem;
        font-size: 0.62rem;
        letter-spacing: 0.19em;
    }
}

@media (max-width: 420px) {
    .atmosphere-copy {
        padding: 1.6rem 1.1rem 1.1rem;
    }

    .atmosphere-media {
        margin: 0 1rem 1.05rem;
        height: 180px;
    }
}

/* ============================
   FEATURED DRINK – PREMIUM CARD
   Vertical: image top → badge → title → description
   ============================ */

#featured-drinks .cards-row.lineup-scroller {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

#featured-drinks .feature-card.lineup-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 0;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%),
        linear-gradient(165deg, #171a1c 0%, #0e1012 100%);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(0);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card {
    background: var(--card-bg-light);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08),
        0 0 0 1px var(--border-light);
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
}

#featured-drinks .feature-card.lineup-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card::before {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 100%);
}

#featured-drinks .feature-card.lineup-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card:hover {
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

#featured-drinks .feature-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 0;
}

#featured-drinks .feature-card-media {
    width: 100%;
    flex: none;
}

#featured-drinks .feature-card-media-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: #0a0808;
    isolation: isolate;
}

#featured-drinks .feature-card-media-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.2s ease;
}

#featured-drinks .feature-card.lineup-card:hover .feature-card-media-inner img {
    transform: scale(1.02);
}

#featured-drinks .feature-card-media-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 65%,
        rgba(0, 0, 0, 0.75) 100%
    );
    pointer-events: none;
    z-index: 1;
}

#featured-drinks .feature-card-media-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    z-index: 2;
}

[data-theme="dark"] #featured-drinks .feature-card-media-inner::after {
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
}

#featured-drinks .feature-card-content {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 24px 32px;
    min-width: 0;
}

#featured-drinks .feature-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 0;
    padding: 5px 11px;
    border-radius: 10px;
    background: rgba(216, 194, 122, 0.10);
    border: 1px solid rgba(216, 194, 122, 0.22);
    box-shadow: none;
    color: var(--color-accent-gold);
    font-family: "Kanit", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-top: -4px;
    margin-bottom: 9px;
    -webkit-font-smoothing: antialiased;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#featured-drinks .feature-card-tag i {
    flex-shrink: 0;
    font-size: 0.8em;
    opacity: 0.95;
    color: var(--color-accent-gold);
    line-height: 1;
    transition: opacity 0.2s ease, color 0.2s ease;
}

#featured-drinks .feature-card.lineup-card:hover .feature-card-tag {
    background: rgba(216, 194, 122, 0.14);
    border-color: rgba(216, 194, 122, 0.28);
    color: var(--color-accent-gold);
}

#featured-drinks .feature-card.lineup-card:hover .feature-card-tag i {
    opacity: 1;
    color: var(--color-accent-gold);
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card:hover .feature-card-tag {
    background: rgba(216, 194, 122, 0.16);
    border-color: rgba(216, 194, 122, 0.30);
    color: var(--color-accent-gold);
    box-shadow: none;
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card:hover .feature-card-tag i {
    color: var(--color-accent-gold);
}

#featured-drinks .feature-title {
    margin: 0 0 14px;
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.7rem, 0.35vw + 1.55rem, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.96);
    text-transform: uppercase;
}

#featured-drinks .feature-desc {
    margin: 0;
    font-family: "Cabin", sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(229, 238, 226, 0.74);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card .feature-title {
    color: var(--text-primary);
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card .feature-desc {
    color: var(--text-secondary);
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card .feature-card-tag {
    background: rgba(54, 80, 48, 0.06);
    border-color: rgba(54, 80, 48, 0.1);
    color: rgba(54, 80, 48, 0.88);
    font-weight: 500;
    box-shadow: none;
}

[data-theme="light"] #featured-drinks .feature-card.lineup-card .feature-card-tag i {
    color: rgba(54, 80, 48, 0.5);
    opacity: 0.9;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 960px) {
    #featured-drinks .feature-card.lineup-card {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    #featured-drinks .feature-card.lineup-card {
        max-width: 100%;
        border-radius: 18px;
    }

    #featured-drinks .feature-card-media-inner {
        border-radius: 18px 18px 0 0;
    }

    #featured-drinks .feature-card-content {
        padding: 24px 24px 32px;
    }

    #featured-drinks .feature-title {
        font-size: clamp(1.5rem, 0.4vw + 1.25rem, 1.95rem);
    }
}

@media (max-width: 480px) {
    #featured-drinks .feature-card.lineup-card {
        border-radius: 16px;
    }

    #featured-drinks .feature-card-media-inner {
        aspect-ratio: 4 / 3;
        border-radius: 16px 16px 0 0;
    }

    #featured-drinks .feature-card-content {
        padding: 16px 16px 24px;
    }

    #featured-drinks .feature-card-tag {
        font-size: 0.8125rem;
        padding: 5px 10px;
        gap: 6px;
        border-radius: 9px;
        letter-spacing: 0.035em;
        margin-top: -4px;
        margin-bottom: 9px;
    }

    #featured-drinks .feature-title {
        font-size: clamp(1.35rem, 0.5vw + 1.2rem, 1.65rem);
    }

    #featured-drinks .feature-desc {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}


/* ============================================
   PAGE LAYOUT & SECTIONS (from index.html)
   ============================================ */

/* Sayfa iskeleti: body flex column, main flex-grow ile boşluğu doldurur (body sızıntısı önlenir) */
body[data-page="home"] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Main content below hero – margin çökmesini engellemek için overflow:hidden, flex-grow ile arka plan en alta kadar uzanır */
.page-content {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-secondary);
    padding-bottom: 3rem;
}

[data-theme="dark"] .page-content {
    background: var(--bg-secondary);
}

.home-section {
    padding: 3.25rem 1.75rem 3.75rem;
    max-width: var(--section-max-width);
    margin: 0 auto;
    box-sizing: border-box;
}

.home-section.compact {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
}

.section-label {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.78;
    margin-bottom: 0.9rem;
}

[data-theme="dark"] .section-label {
    color: var(--text-secondary);
}

.section-heading {
    font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(calc(2rem - 4px), calc(2.3rem - 4px), calc(2.6rem - 4px));
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.85rem 0;
    color: var(--text-primary);
}

.brand-section {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 6rem clamp(20px, 5vw, 40px);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f1a14;
}

/* Sadece yazı arkasında belli belirsiz loş amber ışık (opacity 0.05–0.1) */
.brand-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(216, 194, 122, 0.1) 0%, rgba(216, 194, 122, 0.04) 50%, transparent 75%);
}

.brand-section::after {
    content: none;
}

.brand-section-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.brand-section.section-in-view .brand-section-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Üst başlık: küçük, gri, geniş harf aralığı */
.brand-section .section-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(229, 238, 226, 0.55);
    margin: 0;
}

/* Ana slogan – theme-adaptive: light = dark readable, dark = light readable */
.brand-heading {
    font-family: "Anton", "Oswald", sans-serif;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1.1;
    letter-spacing: 0.08em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-main);
    margin: 0;
    text-shadow: none;
}

[data-theme="dark"] .brand-heading {
    color: var(--text-primary);
}

[data-theme="light"] .brand-heading {
    color: var(--text-primary);
    text-shadow: none;
}

/* Alt slogan: tek satır, küçük, açık tracking, soluk gri */
.brand-tagline {
    font-family: "Share Tech Mono", "Consolas", monospace;
    font-size: clamp(10px, 1.4vw, 12px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(229, 238, 226, 0.55);
    margin: 0;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .brand-tagline {
        white-space: normal;
        font-size: 10px;
        letter-spacing: 0.18em;
    }
}

[data-theme="light"] .brand-tagline {
    color: var(--text-secondary);
}

/* Ghost buton: ince altın kenarlık, yuvarlatılmış; hover’da amber dolgu */
.brand-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary-light);
    background: transparent;
    border: 1px solid var(--primary-light);
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-cta:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
}

[data-theme="light"] .brand-cta {
    color: var(--primary);
    border-color: var(--primary);
}

[data-theme="light"] .brand-cta:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

[data-theme="dark"] .brand-cta {
    color: var(--primary);
    border-color: var(--primary);
}

[data-theme="dark"] .brand-cta:hover {
    background: var(--primary);
    color: var(--btn-primary-text);
    border-color: var(--primary);
}

[data-theme="light"] .brand-section {
    background: var(--bg-secondary);
}

[data-theme="light"] .brand-section::before {
    background: radial-gradient(
        ellipse 82% 72% at 50% 48%,
        rgba(118, 92, 48, 0.28) 0%,
        rgba(98, 78, 44, 0.16) 42%,
        rgba(82, 68, 42, 0.07) 62%,
        transparent 78%
    );
}

/* Light: brand block — stronger contrast (text-secondary alone reads too faint on white) */
[data-theme="light"] .brand-section .section-label {
    color: rgba(36, 56, 34, 0.82);
}

[data-theme="light"] .brand-section .brand-heading {
    color: #1e2f1c;
}

[data-theme="light"] .brand-section .brand-tagline {
    color: rgba(36, 56, 34, 0.78);
}

[data-theme="light"] .brand-section .brand-cta {
    color: #1e2f1c;
    border-color: #213322;
}

[data-theme="light"] .brand-section .brand-cta:hover {
    color: #f7faf6;
    background: #213322;
    border-color: #213322;
}

.brand-section + section {
    margin-top: 0;
}

.section-eyebrow {
    font-size: 0.98rem;
    color: var(--text-secondary);
    max-width: 40rem;
    line-height: 1.7;
    margin-bottom: 2.4rem;
}

[data-theme="dark"] .section-eyebrow {
    color: var(--text-secondary);
}

/* About section layout */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr);
    gap: 2.75rem;
    align-items: flex-start;
}

.about-copy {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-copy p + p {
    margin-top: 1.25rem;
}

[data-theme="dark"] .about-copy {
    color: rgba(229, 231, 235, 0.9);
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2.75rem;
    margin-top: 2.1rem;
}

.about-card {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-card-title {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.about-card-value {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] .about-card-title {
    color: rgba(156, 163, 175, 0.9);
}

[data-theme="dark"] .about-card-value {
    color: rgba(249, 250, 251, 0.95);
}

/* Location section */
.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.map-shell {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 28px 55px rgba(54, 80, 48, 0.18);
    background: var(--bg-tertiary);
}

[data-theme="dark"] .map-shell {
    background: #121c17;
    box-shadow:
        0 1px 3px rgba(40, 40, 45, 0.06),
        0 4px 12px rgba(40, 40, 45, 0.04),
        0 12px 24px rgba(40, 40, 45, 0.03);
}

.map-frame-wrap {
    position: relative;
    padding-top: 62%;
    border-radius: inherit;
    overflow: hidden;
}

/* Map iframe: class on iframe for theme-based filters (no API) */
iframe.map-frame {
    position: absolute;
    inset: 0;
    border: 0;
    width: 100%;
    height: 100%;
    filter: saturate(1.08) contrast(1.04);
    transition: filter 0.35s ease;
}

[data-theme="dark"] iframe.map-frame {
    /* invert + hue-rotate restores readable palette after inversion; tune for dark map look */
    filter: invert(1) hue-rotate(180deg) brightness(0.88) contrast(1.08) saturate(0.92);
}

.location-meta {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.location-meta-row {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    font-size: 0.96rem;
    color: var(--text-secondary);
}

.location-meta-row i {
    margin-top: 0.15rem;
    font-size: 1rem;
}

/* Konum ikonunu mavi yap (saat altın kalsın) */
i.fa-solid.fa-location-dot {
    color: #3b82f6;
}

/* Sadece location-meta-row içindeki konum ikonunu eski altın tona geri al */
.location-meta-row i.fa-solid.fa-location-dot {
    color: var(--accent-gold, var(--color-accent-gold)) !important;
}

i.fa-solid.fa-clock {
    color: var(--accent-gold, var(--color-accent-gold));
}

[data-theme="dark"] .location-meta-row {
    color: rgba(229, 231, 235, 0.88);
}

/* Atmosphere section */
.atmosphere-shell {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0, rgba(216, 194, 122, 0.09) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(168, 229, 163, 0.06), transparent 55%),
        #121c17;
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
}

[data-theme="light"] .atmosphere-copy {
    color: var(--text-primary);
}

[data-theme="light"] .atmosphere-tag {
    border: 1px solid var(--border-light);
    background: var(--card-bg-light);
    color: var(--text-primary);
    text-shadow: none;
    box-shadow: var(--card-shadow-light);
}

[data-theme="light"] .atmosphere-tag:hover {
    border-color: var(--primary);
    background: var(--card-bg-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .atmosphere-tag:active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .atmosphere-tag::before {
    background: var(--accent-gold, var(--color-accent-gold));
    box-shadow: 0 0 6px rgba(216, 194, 122, 0.4);
}

[data-theme="light"] .atmosphere-overlay-copy {
    color: var(--text-secondary);
}

.atmosphere-copy {
    padding: 2.4rem 2.4rem 2.5rem;
    color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.75rem;
}

.atmosphere-heading {
    font-family: "Kanit", sans-serif;
    font-size: clamp(1.7rem, 1.9rem, 2.1rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.atmosphere-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.96);
    max-width: 24rem;
}

.atmosphere-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.atmosphere-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.92);
}

.atmosphere-media {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.atmosphere-photo {
    position: absolute;
    inset: 0;
    background-image: url('../IMAGES/atmospher.webp');
    background-size: cover;
    background-position: center 76%;
    filter: saturate(1.15) contrast(1.05);
}

.atmosphere-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left, rgba(15, 23, 42, 0.96), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(248, 250, 252, 0.15), transparent 55%);
}

.atmosphere-overlay-copy {
    position: absolute;
    right: 1.9rem;
    bottom: 1.9rem;
    color: #e5e7eb;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Featured drinks */
.cards-row {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.feature-card {
    position: relative;
    padding: 0.1rem 0 1.2rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.65rem;
}

.feature-card:last-of-type {
    border-bottom: none;
}

[data-theme="dark"] .feature-card {
    border-bottom-color: rgba(55, 65, 81, 0.9);
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
}

.feature-chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary-green), var(--primary-dark));
}

.feature-title {
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

.feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
}

.feature-price {
    font-weight: 500;
    color: var(--text-primary);
}

.feature-badge {
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

[data-theme="dark"] .feature-title {
    color: rgba(248, 250, 252, 0.98);
}

[data-theme="dark"] .feature-desc {
    color: rgba(148, 163, 184, 0.95);
}

[data-theme="dark"] .feature-price {
    color: rgba(248, 250, 252, 0.98);
}

[data-theme="dark"] .feature-badge {
    background: var(--primary-soft);
    color: rgba(200, 230, 200, 0.95);
}

/* Gallery – horizontal slider, Instagram vibe */
.gallery-section#gallery,
#gallery.gallery-section {
    /* Flex context’te içerik uzunluğuna göre shrink olmasın */
    width: 100%;
}

.gallery-section#gallery .gallery-slider,
#gallery.gallery-section .gallery-slider {
    /* Slider’ın kendi bölüm genişliğini doldurmasını sağla */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.gallery-section {
    overflow-x: visible;
    overflow-y: visible;
}

.gallery-section .section-label {
    letter-spacing: 0.28em;
}

.gallery-section .section-heading {
    margin-bottom: 1rem;
}

.gallery-section .section-eyebrow {
    max-width: 520px;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    padding: 0 2.5rem;
    box-sizing: border-box;
}

/* Kaydırma maskesi; kart gölgesi (!important shadow) ve görseller bu kutu dışında kesilmez */
.gallery-slider-viewport {
    overflow: hidden;
    width: calc(100% + 72px);
    margin: -48px -36px;
    padding: 48px 36px;
    box-sizing: border-box;
    min-width: 0;
}

@supports (overflow: clip) {
    .gallery-slider-viewport {
        overflow: clip;
    }
}

@supports (overflow-clip-margin: 1px) {
    .gallery-slider-viewport {
        overflow-clip-margin: 48px 36px;
    }
}

@media (max-width: 640px) {
    .gallery-slider {
        padding: 0 0.5rem;
    }

    .gallery-slider-viewport {
        width: calc(100% + 48px);
        margin: -36px -24px;
        padding: 36px 24px;
    }

    @supports (overflow-clip-margin: 1px) {
        .gallery-slider-viewport {
            overflow-clip-margin: 36px 24px;
        }
    }
}

@media (max-width: 1024px) {
    .gallery-section .gallery-slider {
        max-width: none;
    }
    .gallery-section .gallery-slider-track {
        width: 100%;
    }
    .gallery-section .gallery-slide {
        flex: 0 0 90%;
        max-width: none;
    }
}

.gallery-slider-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 85%;
    max-width: 440px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

[data-theme="dark"] .gallery-slide {
    box-shadow: 0 1px 3px rgba(40, 40, 45, 0.06), 0 4px 12px rgba(40, 40, 45, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.gallery-slide.is-active {
    opacity: 1;
    z-index: 1;
}

@media (hover: hover) {
    .gallery-slider:hover .gallery-slide {
        cursor: grab;
    }
}

.gallery-slide-inner {
    position: relative;
    width: 100%;
    padding-top: 126%;
    overflow: hidden;
    border-radius: inherit;
}

.gallery-slide-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-slide-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

.gallery-slide-label {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, border-color 0.2s ease;
}

[data-theme="light"] .gallery-arrow {
    color: #374151;
}

[data-theme="dark"] .gallery-arrow {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.gallery-arrow:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.18);
}

[data-theme="dark"] .gallery-arrow:hover {
    background: rgba(51, 65, 85, 0.95);
}

.gallery-arrow--prev {
    left: 0.25rem;
}

.gallery-arrow--next {
    right: 0.25rem;
}

@media (min-width: 641px) {
    .gallery-arrow {
        display: flex;
    }
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-bottom: 0.25rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(216, 194, 122, 0.38);
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

[data-theme="dark"] .gallery-dot {
    background: rgba(216, 194, 122, 0.22);
}

.gallery-dot:hover {
    background: rgba(216, 194, 122, 0.58);
}

[data-theme="dark"] .gallery-dot:hover {
    background: rgba(216, 194, 122, 0.42);
}

.gallery-dot.is-active {
    width: 24px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-gold, var(--color-accent-gold));
}

[data-theme="dark"] .gallery-dot.is-active {
    background: var(--accent-gold, var(--color-accent-gold));
}

/* Legacy gallery grid – hidden (replaced by slider) */
.gallery-grid {
    display: none;
}

.gallery-column,
.gallery-item,
.gallery-item--tall,
.gallery-overlay-label {
    display: none;
}

/* Social proof – testimonial card + rating üstte */
/* Ana container: gölgeler kesilmesin; yatay sayfa taşması body ile sınırlanır */
.social-proof-section {
    overflow-x: visible;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.social-proof-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 36rem;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding-top: 0.5rem;
    overflow-x: visible;
    box-sizing: border-box;
}

/* Slider: gölgeler kesilmesin; kaydırma maskesi .review-slider-viewport üzerinde */
.review-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    box-sizing: border-box;
}

/* Dış sarmalayıcı kırpmaz; gölgeler burada kesilmez */
.review-slider-viewport {
    overflow: visible;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* Kaydırma maskesi: hover’da 40px blur + offset için yeterli iç boşluk (light tema) */
.review-slider-track-clip {
    overflow: hidden;
    width: calc(100% + 72px);
    max-width: none;
    margin: -52px -36px;
    padding: 52px 36px;
    box-sizing: border-box;
    min-width: 0;
}

@supports (overflow: clip) {
    .review-slider-track-clip {
        overflow: clip;
    }
}

@supports (overflow-clip-margin: 1px) {
    .review-slider-track-clip {
        overflow-clip-margin: 52px 36px;
    }
}

.social-rating-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.rating-badge-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

[data-theme="dark"] .rating-score {
    color: var(--text-primary);
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    color: var(--color-accent-gold);
    font-size: 1.35rem;
    line-height: 1;
}

[data-theme="dark"] .rating-stars {
    color: var(--color-accent-gold);
}

.rating-source {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
}

[data-theme="dark"] .rating-source {
    color: rgba(255, 255, 255, 0.65);
}

.rating-google,
.rating-text {
    display: none;
}

.review-slider-track {
    display: flex;
    width: 300%;
    min-width: 0;
    align-self: stretch;
    flex-shrink: 0;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    box-sizing: border-box;
}

.review-slide {
    flex: 0 0 33.333%;
    min-width: 0;
    width: 33.333%;
    padding: 0 0.5rem;
    display: flex;
    box-sizing: border-box;
    overflow: visible;
}

/* Yorum kartı – iki temada aynı yapı (cam, radius, padding, hover); sadece renkler değişir */
.review-slide-inner {
    position: relative;
    isolation: isolate;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    padding: 22px 24px !important;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border-radius: 18px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

[data-theme="light"] .review-slide-inner {
    background: rgba(255, 255, 255, 0.52);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .review-slide-inner:hover {
    transform: scale(1.02);
    border-color: rgba(54, 80, 48, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    background-color: rgba(255, 255, 255, 0.72);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58));
}

[data-theme="light"] .review-slide-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .review-slide-inner {
    background: rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .review-slide-inner:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.07);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

[data-theme="dark"] .review-slide-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
}

.review-slide-inner::before {
    display: none;
}

.review-quote-decor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: calc(1.15rem + 5px);
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

[data-theme="light"] .review-quote-decor {
    color: rgba(54, 80, 48, 0.32);
    filter: drop-shadow(0 1px 1px rgba(54, 80, 48, 0.12));
}

[data-theme="dark"] .review-quote-decor {
    color: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

/* Yorum metni – okunaklı, sınırlı satır genişliği, yumuşak renk; küçük ekranda taşma yok */
.review-slide .review-text {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    font-size: 1.2rem;
    line-height: 1.62;
    font-weight: 500;
    color: #374151;
    margin: 0;
    padding-top: 0.25rem;
    text-align: left;
    position: relative;
    z-index: 1;
    font-style: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

[data-theme="light"] .review-slide .review-text {
    color: var(--text-primary);
}

[data-theme="dark"] .review-slide .review-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Kullanıcı satırı – üstte; flex, avatar + metin hizalı; alttaki yorumla arası boşluk; küçük ekranda taşma yok */
.review-slide .review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 18px;
    padding-top: 0;
    border-top: none;
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
}

/* İsim + yıldız yan yana; rol altta; küçük ekranda taşma yok */
.review-name-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    min-width: 0;
}

.review-name-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    min-width: 0;
}

.review-slide .review-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

[data-theme="dark"] .review-slide .review-name {
    color: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .review-slide .review-name {
    color: var(--text-primary);
}

.review-slide .review-subtitle {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.35;
    opacity: 0.85;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

[data-theme="dark"] .review-slide .review-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

[data-theme="light"] .review-slide .review-subtitle {
    color: var(--text-secondary);
    opacity: 0.85;
}

/* Yıldızlar – ismin yanında, küçük, accent gold */
.review-slide .review-stars {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    letter-spacing: 0.04em;
    filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.38));
}

/* Avatar – 42px, yuvarlak, ince border/glow */
.review-slide .review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #4b5563;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .review-slide .review-avatar {
    background: rgba(54, 80, 48, 0.1);
    border: 2px solid rgba(54, 80, 48, 0.15);
    color: var(--text-primary);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.65),
        0 4px 14px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .review-slide .review-avatar {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.12),
        0 4px 14px rgba(0, 0, 0, 0.25);
}

/* Sayfalama – kart ile buton arası ferah (mt-6) */
.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-bottom: 0.25rem;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(216, 194, 122, 0.4);
    opacity: 0.4;
    transition: background 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.review-dot:not(.is-active):hover {
    background: rgba(216, 194, 122, 0.58);
    opacity: 0.72;
}

.review-dot.is-active {
    width: 28px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent-gold, var(--color-accent-gold));
    opacity: 1;
    transform: scale(1.02);
}

[data-theme="light"] .review-dot:not(.is-active) {
    background: rgba(216, 194, 122, 0.45);
}

[data-theme="dark"] .review-dot:not(.is-active) {
    background: rgba(216, 194, 122, 0.32);
    opacity: 0.32;
}

[data-theme="dark"] .review-dot:not(.is-active):hover {
    opacity: 0.55;
}

[data-theme="dark"] .review-dot.is-active {
    box-shadow: none;
}

/* CTA – içeriği kadar genişlik, ortada, outline stil, hover dolgu */
.review-slider > .review-cta {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    align-self: center;
}

.review-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--link-color);
    background: transparent;
    border: 1px solid var(--link-color);
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.review-cta i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.review-cta:hover {
    color: var(--link-hover);
    border-color: var(--link-hover);
    background: rgba(168, 229, 163, 0.12);
    transform: translateY(-1px);
}

.review-cta:hover i {
    transform: translateX(3px);
}

[data-theme="dark"] .review-cta {
    color: var(--accent-primary);
    border-color: rgba(168, 229, 163, 0.55);
    background: transparent;
}

[data-theme="dark"] .review-cta:hover {
    color: var(--button-primary-text);
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    box-shadow: 0 8px 28px rgba(168, 229, 163, 0.22);
}

[data-theme="light"] .review-cta {
    color: var(--accent-primary);
    border-color: rgba(168, 229, 163, 0.55);
    background: transparent;
}

[data-theme="light"] .review-cta:hover {
    color: var(--button-primary-text);
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    box-shadow: 0 8px 28px rgba(168, 229, 163, 0.22);
}

.review-list {
    display: none;
}

/* Küçük ekran (iPhone SE 320px vb.) – container taşmasın, tam görünsün */
@media (max-width: 480px) {
    .social-proof-section.home-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .social-proof-layout {
        padding-left: 0;
        padding-right: 0;
    }
    .review-slider-track-clip {
        width: calc(100% + 56px);
        margin: -44px -28px;
        padding: 44px 28px;
    }
    @supports (overflow-clip-margin: 1px) {
        .review-slider-track-clip {
            overflow-clip-margin: 44px 28px;
        }
    }
    .review-slide {
        padding: 0 0.25rem;
    }
    .review-slide-inner {
        padding: 20px 18px !important;
    }
    .review-quote-decor {
        top: 0.75rem;
        right: 0.75rem;
        font-size: calc(1rem + 5px);
    }
}
@media (max-width: 360px) {
    .social-proof-section.home-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .review-slide-inner {
        padding: 18px 16px !important;
    }
}

.review-card {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

[data-theme="dark"] .review-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-slide .review-card-header {
    justify-content: flex-start;
}

.review-name-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
}

.review-meta {
    display: none;
}

/* Featured drinks – single card, full width, centered */
#featured-drinks .cards-row {
    display: flex;
    gap: 1.3rem;
}

#featured-drinks .cards-row.lineup-scroller {
    overflow: visible;
    padding-bottom: 0;
    justify-content: center;
    align-items: stretch;
}

.lineup-scroller .feature-card {
    pointer-events: none;
    cursor: default;
}

#featured-drinks .feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.28);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
        transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] #featured-drinks .feature-card {
    background: var(--card-bg-light);
    box-shadow: var(--card-shadow-light);
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
}

#featured-drinks .feature-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

#featured-drinks .feature-card:active {
    transform: translateY(1px) scale(0.99);
    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.6);
}

[data-theme="dark"] #featured-drinks .feature-card {
    background: #050608;
    box-shadow:
        0 1px 3px rgba(40, 40, 45, 0.06),
        0 4px 12px rgba(40, 40, 45, 0.04),
        0 12px 24px rgba(40, 40, 45, 0.03);
}

[data-theme="dark"] #featured-drinks .feature-card:active {
    box-shadow: 0 1px 3px rgba(40, 40, 45, 0.06), 0 3px 8px rgba(40, 40, 45, 0.04);
}

[data-theme="light"] #featured-drinks .feature-card:active {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Single featured card: full width of section, centered */
#featured-drinks .feature-card.lineup-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

#featured-drinks .feature-image-wrapper {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

#featured-drinks .feature-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

#featured-drinks .feature-card:hover .feature-image-wrapper img {
    transform: scale(1.06);
}

#featured-drinks .feature-body {
    padding: 1.2rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#featured-drinks .feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

#featured-drinks .feature-chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
}

#featured-drinks .feature-card:not(.lineup-card) .feature-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] #featured-drinks .feature-card:not(.lineup-card) .feature-title {
    color: rgba(249, 250, 251, 0.98);
}

#featured-drinks .feature-card:not(.lineup-card) .feature-desc {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.7;
}

[data-theme="dark"] #featured-drinks .feature-card:not(.lineup-card) .feature-desc {
    color: rgba(156, 163, 175, 0.96);
}

#featured-drinks .feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    margin-top: 0.35rem;
}

#featured-drinks .feature-price {
    font-weight: 500;
    color: #0f172a;
}

[data-theme="dark"] #featured-drinks .feature-price {
    color: rgba(249, 250, 251, 0.9);
}

#featured-drinks .feature-badge {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

[data-theme="dark"] #featured-drinks .feature-badge {
    background: var(--primary-soft);
    color: rgba(220, 240, 220, 0.95);
}

/* Favorite drink modal overlay */
.favorite-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 260ms var(--ease-in-out-smooth, cubic-bezier(0.4, 0, 0.2, 1));
}

.favorite-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.favorite-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.85);
}

.favorite-modal-panel {
    position: relative;
    width: 100%;
    max-width: 540px;
    border-radius: 26px 26px 0 0;
    background: var(--bg-primary);
    box-shadow:
        0 -24px 70px rgba(0, 0, 0, 0.95);
    transform: translateY(100%);
    transition: transform 320ms var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

[data-theme="dark"] .favorite-modal-panel {
    background: #050608;
    box-shadow:
        0 -1px 3px rgba(40, 40, 45, 0.06),
        0 -4px 12px rgba(40, 40, 45, 0.04),
        0 -12px 24px rgba(40, 40, 45, 0.03);
}

.favorite-modal-overlay.is-open .favorite-modal-panel {
    transform: translateY(0);
}

.favorite-modal-handle {
    padding-top: 0.7rem;
    padding-bottom: 0.4rem;
    display: flex;
    justify-content: center;
}

.favorite-modal-handle-bar {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.9);
}

.favorite-modal-image-wrapper {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.favorite-modal-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-modal-body {
    padding: 1.4rem 1.5rem calc(1.4rem + env(safe-area-inset-bottom, 18px));
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.favorite-modal-tag {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

[data-theme="dark"] .favorite-modal-tag {
    color: rgba(156, 163, 175, 0.95);
}

.favorite-modal-title {
    font-family: "Kanit", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.favorite-modal-description {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

[data-theme="dark"] .favorite-modal-description {
    color: rgba(209, 213, 219, 0.96);
}

.favorite-modal-ingredients {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #6b7280;
    margin-top: 0.4rem;
}

[data-theme="dark"] .favorite-modal-ingredients {
    color: rgba(156, 163, 175, 0.96);
}

.favorite-modal-ingredients strong {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    display: block;
    margin-bottom: 0.2rem;
}

.favorite-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
        background-color 150ms ease,
        transform 150ms ease,
        box-shadow 150ms ease;
}

.favorite-modal-close i {
    font-size: 1rem;
}

.favorite-modal-close:active {
    transform: scale(0.95);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .favorite-modal-close:active {
    box-shadow: 0 1px 3px rgba(40, 40, 45, 0.06), 0 4px 12px rgba(40, 40, 45, 0.04);
}

[data-theme="light"] .favorite-modal-close {
    background: rgba(17, 24, 39, 0.96);
    color: #fefce8;
}

html.favorites-open,
body.favorites-open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
    overscroll-behavior: none;
}

/* Hero menu – Instagram tarzı bottom sheet (blur overlay, %45 yükseklik, sabit header) */
.hero-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.hero-menu-overlay.is-open {
    pointer-events: auto;
    opacity: 1;
}

.hero-menu-overlay.is-open .hero-menu-sheet {
    transform: translateY(0);
}

.hero-menu-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45vh;
    max-height: 50vh;
    z-index: 10000;
    background-color: var(--bg-body);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    will-change: transform;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-menu-sheet-header {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    background-color: var(--bg-body);
}

.hero-menu-sheet-handle {
    width: 2.5rem;
    height: 6px;
    border-radius: 999px;
    background: rgba(54, 80, 48, 0.2);
    margin: 0 auto 0.75rem;
}

[data-theme="dark"] .hero-menu-sheet-handle {
    background: rgba(168, 229, 163, 0.25);
}

.hero-menu-sheet-title {
    text-align: center;
    font-size: 1.80rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.hero-menu-sheet-close {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgba(54, 80, 48, 0.06);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hero-menu-sheet-close i {
    font-size: 1.15rem;
}

[data-theme="dark"] .hero-menu-sheet-close {
    background: rgba(168, 229, 163, 0.1);
    border-color: rgba(168, 229, 163, 0.15);
    color: var(--text-primary);
}

.hero-menu-sheet-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    background-color: var(--bg-body);
}

.hero-menu-sheet-body::-webkit-scrollbar {
    display: none;
}

.hero-menu-sheet-body {
    scrollbar-width: none;
}

.hero-menu-sheet-body #category-selection-page {
    margin: 0;
}

.hero-menu-sheet-title-hidden {
    display: none;
}

.hero-menu-sheet-body .category-card-name {
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 1.35rem;
}

body.hero-menu-open .floating-btn {
    pointer-events: none;
    opacity: 0 !important;
}

/* Floating action buttons */
.floating-btn {
    position: fixed;
    z-index: 8800;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.75);
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 14px 38px rgba(15, 23, 42, 0.3),
        0 0 0 1px rgba(148, 163, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px) scale(0.9);
    pointer-events: none;
    transition:
        opacity 220ms var(--ease-out-quart, cubic-bezier(0.25, 1, 0.5, 1)),
        transform 220ms var(--ease-out-quart, cubic-bezier(0.25, 1, 0.5, 1)),
        background-color 150ms ease,
        box-shadow 150ms ease,
        border-color 150ms ease;
    -webkit-tap-highlight-color: transparent;
}

.floating-btn i {
    font-size: 1.1rem;
}

.floating-btn.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-btn--top {
    right: calc(2.15rem + env(safe-area-inset-right, 0px));
    bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
}

.floating-btn--feedback {
    left: calc(1.4rem + env(safe-area-inset-left, 0px));
    bottom: calc(2.25rem + env(safe-area-inset-bottom, 0px));
    width: 4.5625rem;
    height: 4.5625rem;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    background: var(--btn-primary-bg);
    border-color: var(--primary-dark);
    color: var(--btn-primary-text);
    box-shadow:
        0 18px 40px rgba(54, 80, 48, 0.35),
        0 0 0 1px rgba(54, 80, 48, 0.25);
}

.floating-btn--feedback i {
    font-size: 1.35rem;
}

.floating-btn--feedback:hover {
    background: var(--btn-primary-hover);
    box-shadow:
        0 20px 48px rgba(54, 80, 48, 0.4),
        0 0 0 1px rgba(54, 80, 48, 0.3);
}

.floating-btn:active {
    transform: translateY(2px) scale(0.96);
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.3),
        0 0 0 1px rgba(148, 163, 184, 0.3);
}

[data-theme="dark"] .floating-btn:not(.floating-btn--feedback) {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(148, 163, 184, 0.85);
    color: rgba(248, 250, 251, 0.98);
    box-shadow:
        0 1px 3px rgba(40, 40, 45, 0.06),
        0 4px 12px rgba(40, 40, 45, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .floating-btn--feedback {
    background: var(--btn-primary-bg);
    border-color: rgba(168, 229, 163, 0.35);
    color: var(--btn-primary-text);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(168, 229, 163, 0.25);
}

[data-theme="light"] .floating-btn:not(.floating-btn--feedback) {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .floating-btn--feedback {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(54, 80, 48, 0.12),
        0 18px 40px rgba(54, 80, 48, 0.3);
}

[data-theme="light"] .floating-btn--feedback:hover {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(54, 80, 48, 0.2),
        0 20px 48px rgba(54, 80, 48, 0.38);
}

body.hero-menu-open .floating-btn {
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 900px) {
    .about-layout,
    .location-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.25rem;
    }

    .atmosphere-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .atmosphere-media {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .home-section {
        padding: 2.5rem 1.4rem 3rem;
    }

    .about-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .cards-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .floating-btn--top {
        right: calc(2rem + env(safe-area-inset-right, 0px));
        bottom: calc(7.4rem + env(safe-area-inset-bottom, 0px));
    }

    .floating-btn--feedback {
        left: calc(1.25rem + env(safe-area-inset-left, 0px));
        bottom: calc(2.25rem + env(safe-area-inset-bottom, 0px));
        width: 4.5625rem;
        height: 4.5625rem;
    }

    .floating-btn--feedback i {
        font-size: 1.25rem;
    }
}

@media (max-width: 500px) {
    .floating-btn--top {
        right: calc(1.86rem + env(safe-area-inset-right, 0px));
    }

    .floating-btn--feedback {
        width: 4.3125rem;
        height: 4.3125rem;
    }
}

.hero-cta-button {
    margin-top: 1.5rem;
    padding: 1.2rem 2.75rem;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1rem, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

[data-theme="dark"] .hero-cta-button {
    box-shadow: 0 1px 3px rgba(40, 40, 45, 0.06), 0 4px 12px rgba(40, 40, 45, 0.04);
}

@keyframes hero-cta-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-cta-button .cta-text {
    letter-spacing: 0.18em;
}

.hero-cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    animation: none;
    filter: brightness(1.05);
}

[data-theme="dark"] .hero-cta-button:hover {
    box-shadow: 0 2px 4px rgba(40, 40, 45, 0.06), 0 6px 16px rgba(40, 40, 45, 0.04);
    filter: brightness(1.05);
}

.hero-cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-cta-button:active {
    box-shadow: 0 1px 3px rgba(40, 40, 45, 0.06), 0 3px 8px rgba(40, 40, 45, 0.04);
}

.hero-cta-button.hidden {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.hero-cta-button:not(.hidden) {
    animation: hero-cta-pulse 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero-cta-button,
    .hero-cta-button:not(.hidden) {
        animation: none;
    }
}

/* =========================================================
   Premium Cafe & Pub Footer – grid, left-aligned, bottom bar
   (Homepage only – floating FABs are NOT in this block)
============================================================ */
.site-footer {
    margin-top: 0;
    flex-shrink: 0;
    background: linear-gradient(180deg, #0f1a14 0%, #0a1210 50%, #060a08 100%);
    color: rgba(229, 238, 226, 0.92);
    border-top: 1px solid rgba(229, 238, 226, 0.08);
}

/* Light theme: footer matches dark footer (same surface + text; no separate pale palette) */
[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, #0f1a14 0%, #0a1210 50%, #060a08 100%);
    color: rgba(229, 238, 226, 0.92);
    border-top: 1px solid rgba(229, 238, 226, 0.08);
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-col {
    text-align: left;
}

.footer-brand-logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand-slogan {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(229, 238, 226, 0.65);
    margin: 0 0 1rem;
    max-width: 22rem;
}

.footer-hours {
    font-size: 0.85rem;
    color: #a3a3a3;
    margin: 0;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(229, 238, 226, 0.95);
    margin: 0 0 1rem;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    display: inline-block;
    color: rgba(229, 238, 226, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.25s ease, transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--color-primary-green);
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}

.footer-contact-icon {
    color: var(--accent-gold, var(--color-accent-gold));
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-contact-link {
    color: rgba(229, 238, 226, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.footer-contact-link:hover {
    color: var(--color-primary-green);
}

.footer-bottom-bar {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 238, 226, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer-social-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, filter 0.2s ease;
}

.footer-social-btn i {
    font-size: 1rem;
}

/* Instagram – marka gradyanı */
.footer-social-btn--instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-social-btn--instagram {
    border-color: rgba(225, 48, 108, 0.35);
}

.footer-social-btn--instagram:hover,
.footer-social-btn--instagram:focus-visible {
    border-color: rgba(225, 48, 108, 0.55);
    box-shadow: 0 0 18px rgba(220, 39, 67, 0.25);
    transform: translateY(-1px);
}

.footer-social-btn--instagram:hover i,
.footer-social-btn--instagram:focus-visible i {
    filter: brightness(1.05);
}

/* WhatsApp */
.footer-social-btn--whatsapp i {
    color: #25d366;
}

.footer-social-btn--whatsapp {
    border-color: rgba(37, 211, 102, 0.4);
}

.footer-social-btn--whatsapp:hover,
.footer-social-btn--whatsapp:focus-visible {
    border-color: rgba(37, 211, 102, 0.65);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.28);
    transform: translateY(-1px);
}

/* Konum / Google Haritalar mavisi */
.footer-social-btn--maps i {
    color: #4285f4;
}

.footer-social-btn--maps {
    border-color: rgba(66, 133, 244, 0.4);
}

.footer-social-btn--maps:hover,
.footer-social-btn--maps:focus-visible {
    border-color: rgba(66, 133, 244, 0.65);
    box-shadow: 0 0 18px rgba(66, 133, 244, 0.28);
    transform: translateY(-1px);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.footer-copyright {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: rgba(229, 238, 226, 0.55);
    margin: 0;
}

.footer-powered {
    font-size: 0.7rem;
    color: rgba(229, 238, 226, 0.45);
    margin: 0;
}

.footer-powered-brand {
    font-weight: 700;
    color: var(--color-primary-green);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-powered-brand:hover {
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-social-wrap {
        justify-content: flex-start;
    }

    .footer-legal {
        align-items: flex-end;
    }

    .footer-legal p {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 4rem 2rem 1rem;
    }

    .footer-grid {
        gap: 3rem;
    }

    .footer-bottom-bar {
        margin-top: 3rem;
        padding-top: 1.75rem;
    }
}

/* ============================================
   FEEDBACK MODAL (Öneri & Şikayet)
   Reusable component – open/close only, no submit
   ============================================ */

body.feedback-modal-open {
    overflow: hidden;
    touch-action: none;
}

.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease-in-out-smooth, cubic-bezier(0.4, 0, 0.2, 1)),
                visibility 0.28s step-end;
}

.feedback-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s var(--ease-in-out-smooth, cubic-bezier(0.4, 0, 0.2, 1)),
                visibility 0s step-start;
}

.feedback-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.feedback-modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.28s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
                opacity 0.28s var(--ease-in-out-smooth, cubic-bezier(0.4, 0, 0.2, 1)),
                box-shadow 0.3s ease;
}

[data-theme="dark"] .feedback-modal-box {
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.42),
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.055),
        0 0 64px rgba(168, 229, 163, 0.07);
}

/* Home: layered separation (no !important — see index.php feedback-modal-box split) */
html[data-theme="dark"] body[data-page="home"] .feedback-modal-box {
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 80px rgba(168, 229, 163, 0.09);
}

html[data-theme="light"] body[data-page="home"] .feedback-modal-box {
    box-shadow:
        0 28px 52px rgba(0, 0, 0, 0.14),
        0 10px 22px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(54, 80, 48, 0.08),
        0 0 56px rgba(54, 80, 48, 0.07);
}

.feedback-modal.is-open .feedback-modal-box {
    transform: scale(1);
    opacity: 1;
}

.feedback-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
    z-index: 2;
}

.feedback-modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .feedback-modal-close {
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(30, 40, 35, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .feedback-modal-close:hover {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(20, 30, 25, 0.9);
}

[data-theme="dark"] .feedback-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .feedback-modal-close:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 4px 18px rgba(0, 0, 0, 0.28);
}

.feedback-modal-close i {
    font-size: 1.45rem;
}

.feedback-modal-title {
    font-family: "Kanit", system-ui, sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.375rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.feedback-modal-desc {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #9ca3af;
    text-align: center;
    margin: 0 0 1.75rem;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.015em;
}

[data-theme="dark"] .feedback-modal-desc {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.feedback-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-modal-textarea {
    width: 100%;
    height: 10rem;
    min-height: 10rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-sizing: border-box;
}

.feedback-modal-textarea::placeholder {
    color: #6b7280;
}

[data-theme="light"] .feedback-modal-textarea {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        inset 0 -1px 0 rgba(54, 80, 48, 0.04),
        0 0 0 1px rgba(54, 80, 48, 0.04),
        0 2px 12px rgba(54, 80, 48, 0.05);
}

[data-theme="light"] .feedback-modal-textarea:focus {
    border-color: rgba(54, 80, 48, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(168, 229, 163, 0.55),
        0 0 0 3px rgba(168, 229, 163, 0.15),
        0 4px 20px rgba(54, 80, 48, 0.08);
}

[data-theme="dark"] .feedback-modal-textarea {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 2px 16px rgba(0, 0, 0, 0.14),
        0 0 24px rgba(168, 229, 163, 0.04);
}

[data-theme="dark"] .feedback-modal-textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.feedback-modal-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

[data-theme="dark"] .feedback-modal-textarea:focus {
    border-color: rgba(168, 229, 163, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(168, 229, 163, 0.08),
        0 0 0 1px rgba(168, 229, 163, 0.5),
        0 0 0 3px rgba(168, 229, 163, 0.12),
        0 0 36px rgba(168, 229, 163, 0.16);
}

.feedback-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-family: "Kanit", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--btn-primary-text);
    background: var(--btn-primary-bg);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1), filter 0.25s ease;
}

.feedback-modal-submit:hover {
    background: var(--btn-primary-hover);
}

.feedback-modal-submit:active {
    background: var(--btn-primary-hover);
}

[data-theme="dark"] .feedback-modal-submit:hover {
    filter: brightness(1.05);
    box-shadow:
        0 6px 26px rgba(168, 229, 163, 0.32),
        0 3px 12px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

[data-theme="dark"] .feedback-modal-submit:active {
    transform: translateY(0) scale(0.98);
    filter: brightness(1.02);
    box-shadow:
        0 2px 10px rgba(168, 229, 163, 0.2),
        0 1px 4px rgba(0, 0, 0, 0.22);
    transition-duration: 0.18s;
}

[data-theme="light"] .feedback-modal-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(54, 80, 48, 0.12);
}

[data-theme="light"] .feedback-modal-submit:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(54, 80, 48, 0.08);
    transition-duration: 0.18s;
}

.feedback-modal-submit i {
    font-size: 0.9em;
}

@media (max-width: 480px) {
    .feedback-modal {
        padding: 0.75rem;
    }
    .feedback-modal-box {
        padding: 2.2rem 2rem;
        border-radius: 20px;
    }
    .feedback-modal-title {
        font-size: 1.4rem;
    }
    .feedback-modal-desc {
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
    }
    .feedback-modal-textarea {
        height: 8rem;
        min-height: 8rem;
        padding: 0.875rem 1rem;
        border-radius: 14px;
    }
    .feedback-modal-submit {
        border-radius: 14px;
    }
}