@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
    /* Color Palette - Premium Dark Theme */
    --clr-bg: #0c0a09;
    /* Deep matte charcoal */
    --clr-surface: #14120f;
    /* Slightly lighter dark for cards */
    --clr-primary: #F39C12;
    /* Rich warm gold */
    --clr-primary-dark: #D68910;
    --clr-primary-light: #FDEBD0;
    --clr-text: #F5F4F0;
    /* Warm off-white */
    --clr-text-light: #A39F9B;
    /* Muted warm gray */
    --clr-border: #2A2624;
    /* Dark border */

    /* Typography */
    --font-heading: 'Jost', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --font-cursive: 'Caveat', cursive;

    /* Spacing & Layout */
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1 em,
h2 em,
h3 em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-primary);
}

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

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

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--clr-primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text);
    font-weight: 500;
    border-bottom: 2px solid var(--clr-primary);
    padding-bottom: 0.25rem;
}

.btn-secondary:hover {
    color: var(--clr-primary);
}

.btn-white {
    background: #fff;
    color: var(--clr-text);
}

.btn-white:hover {
    background: var(--clr-bg);
    color: var(--clr-primary);
}

.btn-full {
    width: 100%;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--clr-primary);
    margin-top: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-tag::after {
    margin: 0.5rem auto 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.announcement-bar {
    background: var(--clr-text);
    color: #fff;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-bar a {
    color: #fff;
}

.announcement-bar a:hover {
    color: var(--clr-primary);
}

.announcement-bar .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Header & Nav Trendy Redesign */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(12, 10, 9, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .nav-container {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-box {
    background: var(--clr-primary);
    padding: 2px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-box {
    transform: translateY(-1px) rotate(-3deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    display: block;
    filter: brightness(1.05);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .logo-img {
    height: 34px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.5px;
    line-height: 1;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .logo-name {
    font-size: 1.3rem;
}

.logo-tagline {
    font-size: 0.625rem;
    color: var(--clr-text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .logo-tagline {
        display: none;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--clr-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-siparis {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-primary);
    color: #0c0a09 !important;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.25);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-siparis:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.45);
    background: var(--clr-primary-dark);
}

.btn-siparis i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-siparis:hover i {
    transform: scale(1.1);
}

.mobile-only-cta {
    display: none !important;
}

.btn-cart {
    position: relative;
    background: var(--clr-text);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cart:hover {
    transform: translateY(-3px);
    background: var(--clr-primary-dark);
    box-shadow: 0 15px 30px rgba(201, 168, 76, 0.3);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-weight: 800;
}

.bump {
    animation: bump 0.3s ease-out;
}

@keyframes bump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--clr-surface);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-light);
    transition: all 0.3s ease;
    text-align: center;
}

.dropdown-item:hover {
    color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background:
        linear-gradient(to bottom right, rgba(12, 10, 9, 0.70) 0%, rgba(12, 10, 9, 0.98) 60%),
        url('../images/arkaplan1.png?v=1') top left/cover no-repeat;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-col {
    position: relative;
    z-index: 2;
}

.hero-cursive-badge {
    font-family: var(--font-cursive);
    font-size: 2.2rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #FFF;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.btn-hero-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--clr-primary);
    color: #0c0a09 !important;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.45);
    background: var(--clr-primary-dark);
}

.btn-hero-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #FFF !important;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-menu:hover {
    border-color: var(--clr-primary);
    background: rgba(243, 156, 18, 0.05);
    color: var(--clr-primary) !important;
    transform: translateY(-3px);
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero-features-list {
        justify-content: center;
    }
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon-outer {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(243, 156, 18, 0.2);
    background: rgba(243, 156, 18, 0.05);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.feature-item-text {
    display: flex;
    flex-direction: column;
}

.feature-item-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.5px;
}

.feature-item-text span {
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-dish-wrapper {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Food Plate Container */
.hero-dish-plate {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50% 0 50% 50%;
    /* Creates a sharp point at the top-right corner */
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(243, 156, 18, 0.15);
    overflow: hidden;
    animation: floatPlate 6s ease-in-out infinite;
    border: 6px solid #1c1815;
    background: #1c1815;
    z-index: 2;
}

.hero-dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: rotate(45deg) scale(1.67);
}

/* Logo overlay inside teardrop */
.hero-dish-logo-overlay {
    position: absolute;
    bottom: 22%;
    right: 22%;
    transform: rotate(45deg);
    /* counter-rotate back to normal orientation */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 10, 9, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(243, 156, 18, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(243, 156, 18, 0.2);
    z-index: 5;
    transition: all 0.3s ease;
}

.hero-dish-logo-overlay:hover {
    border-color: var(--clr-primary);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(243, 156, 18, 0.4);
}

.hero-dish-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.1);
}

/* Rotating Stamp Badge */
.hero-badge-stamp {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 120px;
    height: 120px;
    background: #14120f;
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.hero-badge-stamp svg {
    animation: rotateStamp 20s linear infinite;
    width: 100%;
    height: 100%;
}

.stamp-center-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--clr-primary);
}

/* Animations */
@keyframes rotateStamp {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatPlate {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    50% {
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

/* ==========================================================================
   HERO RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        padding: 5rem 0;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        margin: 0 auto;
        width: 100%;
    }

    .hero-visual-col {
        order: -1;
        /* Image on top on tablet/mobile */
    }

    .hero-dish-wrapper {
        width: 340px;
        height: 340px;
    }

    .hero-dish-plate {
        width: 290px;
        height: 290px;
    }

    .hero-dish-ring {
        display: none;
        /* Hide background rings to simplify rendering on mobile */
    }

    .card-top {
        right: -10px;
        top: 10px;
    }

    .card-bottom {
        left: -10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta .btn-primary-glowing,
    .hero-cta .btn-outline-gold {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-dish-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-dish-plate {
        width: 230px;
        height: 230px;
    }

    .hero-float-card {
        padding: 0.6rem 1rem;
    }

    .card-top {
        right: -15px;
    }

    .card-bottom {
        left: -15px;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
    padding: 8rem 0;
    background: var(--clr-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--clr-primary);
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--clr-surface);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-accent-box {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: var(--clr-surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-accent-box i {
    color: var(--clr-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-body {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-item i {
    color: var(--clr-primary);
    font-size: 1.5rem;
    background: var(--clr-primary-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.value-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.value-item span {
    color: var(--clr-text-light);
    font-size: 0.875rem;
}

/* ==========================================================================
   FEATURES STRIP
   ========================================================================== */
.features-strip {
    background: var(--clr-primary);
    color: #fff;
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-bg);
}

.feature-card strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.feature-card span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ==========================================================================
   MENU SECTION REDESIGN
   ========================================================================== */
.menu-section {
    padding: 6rem 0;
    background: var(--clr-bg);
}

.kk-products-layout {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 3vw, 2.25rem);
    box-sizing: border-box;
}

.menu-tabs-wrapper {
    position: sticky;
    top: 72px;
    background: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    margin-bottom: 3rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--clr-border);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem;
}

/* ==========================================================================
   ADVANCED MENU FILTERING LAYOUT (Sidebar Redesign)
   ========================================================================== */

/* Layout */
.menu-page-layout {
    display: grid;
    grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
    align-items: start;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.menu-main-content {
    min-width: 0;
}

/* Sidebar styling */
.menu-sidebar {
    position: sticky;
    top: 100px;
    /* spacing from the sticky header */
    background: linear-gradient(180deg, rgba(20, 18, 15, 0.96), rgba(15, 13, 11, 0.92));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(243, 156, 18, 0.12);
    border-radius: 20px;
    padding: 1.35rem 1.15rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    z-index: 10;
}

.sidebar-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.9rem;
}

.sidebar-header-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(243, 156, 18, 0.72);
}

.sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sidebar-close {
    display: none;
    /* hidden on desktop */
    background: none;
    border: none;
    color: var(--clr-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-close:hover {
    color: var(--clr-primary);
}

/* Sidebar Section */
.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.sidebar-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-section-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--clr-primary);
    font-weight: 700;
    margin-bottom: 0.15rem;
}

/* Search Wrapper */
.menu-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-search-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.72rem 0.95rem 0.72rem 2.55rem;
    font-size: 0.9rem;
    color: var(--clr-text);
    transition: var(--transition);
}

.menu-search-wrapper input:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.15);
    outline: none;
}

.menu-search-wrapper .search-icon {
    position: absolute;
    left: 0.95rem;
    color: rgba(243, 156, 18, 0.6);
    font-size: 0.9rem;
    pointer-events: none;
}

.menu-search-wrapper .search-clear-btn {
    position: absolute;
    right: 0.85rem;
    background: none;
    border: none;
    color: var(--clr-text-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-search-wrapper .search-clear-btn:hover {
    color: var(--clr-primary);
}

/* Category Button List */
.menu-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.7rem 0.85rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-light);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    text-align: left;
    white-space: normal;
}

.category-btn:hover {
    background: rgba(253, 235, 208, 0.04);
    color: var(--clr-text);
    border-color: rgba(243, 156, 18, 0.15);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    border-color: var(--clr-primary);
    color: #0c0a09;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.25);
}

.cat-main {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.cat-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    border: 2px solid currentColor;
    background: transparent;
    flex-shrink: 0;
    opacity: 0.72;
}

.category-btn.active .cat-dot {
    background: #0c0a09;
    border-color: #0c0a09;
    opacity: 1;
}

.category-btn.active .cat-count {
    background: rgba(12, 10, 9, 0.1);
    color: #0c0a09;
}

.category-btn.active:hover {
    transform: none;
    color: #0c0a09;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
}

.cat-text {
    min-width: 0;
    line-height: 1.35;
}

.cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.7rem;
    height: 1.7rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Sorting Wrapper */
.menu-sort-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-sort-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.72rem 2.25rem 0.72rem 0.95rem;
    font-size: 0.9rem;
    color: var(--clr-text);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f39c12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 1.1rem;
}

.menu-sort-select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.15);
    outline: none;
}

.menu-sort-select option {
    background: #14120f;
    color: var(--clr-text);
}

/* Reset Button */
.btn-reset-filters {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.01);
    color: var(--clr-text-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.15rem;
}

.btn-reset-filters:hover {
    background: rgba(231, 76, 60, 0.05);
    border-color: rgba(231, 76, 60, 0.3);
    color: #E74C3C;
}

/* Info Bar */
.active-filters-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.active-filters-summary {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-light);
}

.btn-reset-filters-link {
    background: none;
    border: none;
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.btn-reset-filters-link:hover {
    color: var(--clr-primary-dark);
    background: rgba(243, 156, 18, 0.08);
}

/* Mobile trigger bar */
.mobile-filter-trigger-bar {
    display: none;
    /* hidden on desktop */
    justify-content: space-between;
    align-items: center;
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    gap: 1rem;
}

.btn-mobile-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-primary);
    color: #0c0a09;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-mobile-filter:hover {
    background: var(--clr-primary-dark);
}

/* Empty State / No Results */
.menu-no-results {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.no-results-icon {
    font-size: 3.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.menu-no-results h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.menu-no-results p {
    color: var(--clr-text-light);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.btn-primary-reset {
    background: var(--clr-primary);
    border: none;
    border-radius: 12px;
    padding: 0.8rem 2rem;
    color: #0c0a09;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-primary-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.4);
}

/* Animation on menu cards */
@keyframes cardFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.kk-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.menu-grid .menu-card {
    animation: cardFadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.menu-card.hidden {
    display: none !important;
}

/* Specific Menu Badge Colors */
.menu-badge.popüler {
    background: #E74C3C !important;
    color: #fff !important;
}

.menu-badge.fitness {
    background: #2ECC71 !important;
    color: #fff !important;
}

.menu-badge.doyurucu {
    background: #9B59B6 !important;
    color: #fff !important;
}

.menu-badge.fırsat {
    background: #F1C40F !important;
    color: #0c0a09 !important;
}

.menu-badge.taze {
    background: #3498DB !important;
    color: #fff !important;
}

/* Responsive adjustments for menu filtering */
@media (min-width: 992px) and (max-width: 1199px) {
    .kk-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .kk-products-layout {
        padding-inline: clamp(1rem, 4vw, 1.4rem);
    }

    .menu-page-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mobile-filter-trigger-bar {
        display: none;
    }

    .menu-sidebar {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
        z-index: 1;
        border-radius: 18px;
        border-top: 1px solid rgba(243, 156, 18, 0.12);
        transition: none;
        padding: 1.1rem 1rem 1.15rem;
        background: linear-gradient(180deg, rgba(20, 18, 15, 0.96), rgba(15, 13, 11, 0.92));
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
        gap: 0.95rem;
    }

    .menu-sidebar.active {
        bottom: auto;
    }

    .sidebar-close {
        display: none;
    }

    .menu-sidebar-overlay {
        display: none;
    }

    .menu-sidebar-overlay.active {
        display: none;
    }

    .category-btn:hover {
        transform: none;
    }

    .kk-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .kk-products-layout {
        padding-inline: 1rem;
    }

    .kk-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.9rem;
    }

    .menu-grid .menu-card {
        min-height: 0;
        border-radius: 16px;
    }

    .menu-grid .menu-badge {
        top: 0.7rem;
        right: 0.7rem;
        font-size: 0.62rem;
        padding: 0.32rem 0.55rem;
    }

    .menu-grid .menu-card-body {
        padding: 0.95rem 0.9rem 0.85rem;
    }

    .menu-grid .menu-item-name {
        font-size: 1rem;
        margin-bottom: 0.45rem;
    }

    .menu-grid .menu-item-desc {
        font-size: 0.8rem;
        line-height: 1.45;
        -webkit-line-clamp: 3;
    }

    .menu-grid .menu-card-footer {
        padding: 0.2rem 0.9rem 1rem;
    }
}

.menu-card {
    background: var(--clr-surface);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    min-height: 360px;
    /* uniform card height */
    align-self: stretch;
}

.menu-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(243, 156, 18, 0.03);
    border-color: rgba(243, 156, 18, 0.25);
}

.menu-card:focus-visible {
    outline: 2px solid rgba(243, 156, 18, 0.8);
    outline-offset: 4px;
}

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--clr-primary);
    color: #0c0a09;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
    position: relative;
    width: 100%;
    padding-top: 65%;
    /* 16:10 Aspect Ratio approx */
    background: var(--clr-bg);
    overflow: hidden;
}

.menu-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.emoji-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #1d1b18 0%, #14120f 100%);
}

.menu-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    padding: 1.25rem 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-wrap {
    display: flex;
    flex-direction: column;
}

.menu-price {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.menu-price-old {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    margin-top: -2px;
}

.menu-order-btn {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.menu-order-btn:hover {
    background: var(--clr-primary-dark);
    transform: scale(1.05);
}

.menu-order-btn i {
    font-size: 0.8rem;
}

/* Menu Tabs & Navigation - Mobile adjustments */
@media (max-width: 768px) {
    .menu-tabs-wrapper {
        top: 64px;
        margin: 0 -1rem 2rem;
        padding: 1rem;
        overflow-x: auto;
    }

    .menu-tabs {
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .menu-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 8rem 0;
    background: var(--clr-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 42, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: 8rem 0;
    background: var(--clr-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--clr-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.testimonial-stars {
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--clr-primary-light);
    color: var(--clr-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--clr-text-light);
}

/* ==========================================================================
   CTA BANNER & CONTACT
   ========================================================================== */
.cta-banner {
    background: linear-gradient(rgba(42, 42, 42, 0.8), rgba(42, 42, 42, 0.8)), url('../images/interior.png') center/cover;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact {
    padding: 8rem 0;
    background: var(--clr-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(243, 156, 18, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item span,
.contact-item a {
    color: var(--clr-text-light);
    display: block;
}

.contact-item a:hover {
    color: var(--clr-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text);
}

.social-links a:hover {
    background: var(--clr-primary);
    color: #0c0a09;
    border-color: var(--clr-primary);
}

.contact-form-wrap {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    font-size: 1rem;
    color: var(--clr-text);
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F39C12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}

.form-group select option {
    background: var(--clr-surface);
    color: var(--clr-text);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
}

/* Custom Dropdown Styling (Theme Integrated) */
.cs-wrap {
    position: relative;
    width: 100%;
    user-select: none;
    font-family: var(--font-body);
}

.cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text-light);
    /* placeholder styling */
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cs-wrap.has-value .cs-trigger {
    color: var(--clr-text);
}

.cs-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.cs-wrap.open .cs-trigger,
.cs-trigger:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
    color: var(--clr-text);
}

.cs-arrow {
    flex-shrink: 0;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    transition: transform .25s ease, color .2s ease;
}

.cs-wrap.open .cs-arrow {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.cs-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent;
}

.cs-dropdown::-webkit-scrollbar {
    width: 4px;
}

.cs-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.cs-dropdown::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 4px;
}

.cs-wrap.open .cs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-option {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--clr-text-light);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    line-height: 1.4;
}

.cs-option:hover {
    background: rgba(243, 156, 18, 0.08);
    color: var(--clr-text);
}

.cs-option.selected {
    color: var(--clr-primary);
    font-weight: 600;
    background: rgba(243, 156, 18, 0.04);
}

.cs-option.selected::after {
    content: '✓';
    float: right;
    font-size: 12px;
    margin-top: 2px;
    color: var(--clr-primary);
}

.cs-option.cs-placeholder {
    display: none;
}

.form-success {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.2);
    color: #81C784;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #090706;
    color: #fff;
    padding: 6rem 0 0;
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-contact-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-bar-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-bar-item i {
    color: var(--clr-primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-bar-item span {
    display: block;
    color: var(--clr-text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-bar-item p,
.contact-bar-item a {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-bar-item a:hover {
    color: var(--clr-primary);
}

.footer-map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: var(--clr-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #0c0a09;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.footer-brand p {
    color: var(--clr-text-light);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-map h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--clr-primary-light);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(243, 156, 18, 0.4);
}

.footer-contact-list {
    display: grid;
    gap: 1rem;
    font-style: normal;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.875rem;
    align-items: start;
    margin: 0;
    color: var(--clr-text-light);
}

.footer-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.08);
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.footer-contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-text {
    margin: 0;
    line-height: 1.6;
    font-style: normal;
}

.footer-contact a {
    color: var(--clr-text-light);
    overflow-wrap: anywhere;
}

.footer-contact a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-text-light);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    color: var(--clr-text-light);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--clr-primary);
}

.footer-bottom-links .sep {
    color: rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-surface);
        padding: 1.5rem 2rem 2.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--clr-border);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-header {
        padding: 0;
    }

    .nav-container {
        height: 64px;
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 36px;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .hero {
        min-height: calc(100vh - 64px);
    }

    /* Mobile Nav Overlay Active */
    .mobile-nav-active .main-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
        visibility: visible;
    }

    .mobile-nav-active .site-header {
        background: var(--clr-surface);
        box-shadow: none;
    }

    .mobile-nav-active .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .mobile-nav-active .nav-link::after {
        display: none;
    }

    .mobile-nav-active .nav-link.active {
        color: var(--clr-primary);
        font-weight: 700;
    }

    .mobile-only-cta {
        display: flex !important;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .mobile-nav-active .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-nav-active .nav-dropdown .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 1rem 1.5rem;
        background: transparent;
        min-width: 100%;
    }

    .mobile-nav-active .dropdown-item {
        padding: 0.5rem 0;
    }

    .mobile-nav-active .dropdown-item:hover {
        padding-left: 0.5rem;
    }

    .hero {
        text-align: center;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.2;
    }

    .hero-overlay {
        background: linear-gradient(0deg, var(--clr-bg) 0%, transparent 100%);
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-map {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Duplicate logo-img removed to honor dynamic height constraints */

.site-footer .logo-img {
    height: 50px;
    /* margin-bottom: 1rem; */
}

/* ==========================================================================
   PRODUCT MODAL STYLES
   ========================================================================== */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalScaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

@keyframes modalScaleUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-text);
    z-index: 20;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--clr-primary);
    color: #0c0a09;
}

.modal-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
}

.modal-media {
    margin: 0;
}

.modal-img-wrap {
    height: 100%;
    min-height: 420px;
    background: var(--clr-bg);
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.modal-header-block {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.modal-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(243, 156, 18, 0.08);
    color: var(--clr-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 0;
}

.modal-copy {
    flex: 1 1 auto;
}

.modal-desc {
    font-size: 1rem;
    color: var(--clr-text-light);
    line-height: 1.85;
    margin: 0;
}

.modal-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-img-wrap {
        min-height: 280px;
    }

    .modal-body {
        padding: 2rem;
        gap: 1.5rem;
    }

    .modal-container {
        max-width: 500px;
        border-radius: 20px;
        margin: 2rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .product-modal {
        padding: 1rem;
    }

    .modal-container {
        margin: 0;
        border-radius: 15px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.55rem;
    }

    .modal-desc,
    .modal-note {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   DELIVERY PLATFORMS SECTION
   ========================================================================== */
.delivery-platforms {
    padding: 8rem 0;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--clr-surface);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(243, 156, 18, 0.2);
}

.platform-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.platform-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.platform-desc {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.platform-feature {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-platform {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Trendyol Colors */
.platform-card.trendyol {
    border-top: 5px solid #F27A1A;
}

.platform-card.trendyol .platform-logo-wrap {
    background: #FFF0E5;
    color: #F27A1A;
}

.platform-card.trendyol .btn-platform {
    background: #F27A1A;
    color: #fff;
}

.platform-card.trendyol .btn-platform:hover {
    background: #e66b00;
}

/* Yemeksepeti Colors */
.platform-card.yemeksepeti {
    border-top: 5px solid #EA004B;
}

.platform-card.yemeksepeti .platform-logo-wrap {
    background: #FFE5ED;
    color: #EA004B;
}

.platform-card.yemeksepeti .btn-platform {
    background: #EA004B;
    color: #fff;
}

.platform-card.yemeksepeti .btn-platform:hover {
    background: #d10043;
}

/* Getir Colors */
.platform-card.getir {
    border-top: 5px solid #5D3EBD;
}

.platform-card.getir .platform-logo-wrap {
    background: #F0EDFA;
    color: #5D3EBD;
}

.platform-card.getir .btn-platform {
    background: #5D3EBD;
    color: #fff;
}

.platform-card.getir .btn-platform:hover {
    background: #4b30a1;
}

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

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

/* ==========================================================================
   PRODUCT SLIDER
   ========================================================================== */
.product-slider-section {
    padding: 6rem 0 4rem;
    background: #0d0b09;
    width: 100%;
    overflow: hidden;
}

.bp2-wrap {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.bp2-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.bp2-heading {
    flex: 1 1 auto;
    min-width: 0;
}

.bp2-eyebrow {
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bp2-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.bp2-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-primary);
}

.bp2-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    letter-spacing: 1.5px;
}

.bp2-ctrl-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
}

.bp2-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.bp2-nav:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #0d0b09;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.bp2-outer {
    position: relative;
    width: 100%;
}

.bp2-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
}

.bp2-track::-webkit-scrollbar {
    display: none;
}

.bp2-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
    background: #14120f;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bp2-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.03);
}

.bp2-card:focus-visible {
    outline: 2px solid rgba(243, 156, 18, 0.8);
    outline-offset: 4px;
}

.bp2-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    background: #1d1b18;
    margin-bottom: 1.25rem;
}

.bp2-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.bp2-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.bp2-meta {
    align-self: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(243, 156, 18, 0.08);
    color: var(--clr-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bp2-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    background: var(--clr-primary);
    color: #0c0a09;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.38rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.bp2-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.bp2-name em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-primary);
}

.bp2-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp2-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.bp2-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-body);
}

.bp2-price-placeholder {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bp2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: default;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: none;
}

.bp2-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #0d0b09 !important;
}

.bp2-btn i {
    font-size: 0.65rem;
}

.bp2-dots-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.bp2-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.bp2-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.bp2-dot.active {
    background: var(--clr-primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

@media (max-width: 992px) {
    .bp2-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .bp2-header-wrap {
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .bp2-title {
        font-size: 2rem;
    }

    .bp2-card {
        flex: 0 0 85%;
        min-width: 270px;
    }

    /* Progress bar styling removed for dots navigation */
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
    padding: 7rem 0;
    background: var(--clr-surface);
}

.insta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: #E1306C;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.insta-tag i {
    font-size: 1.4rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.insta-item {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.insta-stat {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.8rem;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.insta-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

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

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-stat {
    transform: translateY(0);
}

.insta-cta {
    text-align: center;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #E1306C, #fd7924, #FCAF45);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(225, 48, 108, 0.4);
    color: #fff;
}

.btn-instagram i {
    font-size: 1.3rem;
}

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

@media (max-width: 480px) {
    .insta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.875rem;
    }
}

/* ==========================================================================
   PRODUCT SLIDER OUTER WRAPPER & CHEVRONS
   ========================================================================== */
.bp2-slider-container-outer {
    position: relative;
    width: 100%;
}

/* ==========================================================================
   FEATURES / NEDEN BALPILAV (5 Columns)
   ========================================================================== */
.features-section {
    padding: 6rem 0;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--clr-primary);
}

.features-5col-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.feature-5col-card {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-5col-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 156, 18, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-5col-icon {
    font-size: 2.2rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.05);
    border: 1px solid rgba(243, 156, 18, 0.15);
    transition: var(--transition);
}

.feature-5col-card:hover .feature-5col-icon {
    background: var(--clr-primary);
    color: #0c0a09;
    transform: rotateY(360deg);
}

.feature-5col-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.feature-5col-card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-5col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-5col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-5col-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BRANCHES / EN YAKIN SUBEMIZ
   ========================================================================== */


/* ==========================================================================
   DELIVERY BANNER
   ========================================================================== */
.delivery-banner-section {
    padding: 6rem 0;
    background: var(--clr-bg);
}

.delivery-banner-card {
    background: linear-gradient(135deg, rgba(28, 24, 21, 0.98) 0%, rgba(17, 14, 12, 0.95) 100%), url('../images/arkaplanson.png?v=1') center/cover no-repeat;
    border: 1px solid rgba(243, 156, 18, 0.15);
    border-radius: 30px;
    padding: clamp(1.5rem, 4vw, 4.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.delivery-banner-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    min-width: 0;
}

.delivery-banner-left h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.delivery-banner-left p {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    margin: 0;
    max-width: 34rem;
    line-height: 1.6;
}

.delivery-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin: 0;
    max-width: 100%;
}

.delivery-phone-icon {
    width: 48px;
    height: 48px;
    background: rgba(243, 156, 18, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    animation: pulsePhone 2s infinite;
}

@keyframes pulsePhone {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.delivery-phone-text {
    display: flex;
    flex-direction: column;
}

.delivery-phone-text span {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.delivery-phone-text a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-primary);
    overflow-wrap: anywhere;
}

.delivery-platforms-block {
    width: 100%;
}

.platforms-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 1.2rem;
    letter-spacing: 0.5px;
}

.delivery-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.delivery-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    min-width: 0;
}

.delivery-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: background 0.3s ease;
}

.platform-logo-container {
    width: 100%;
    height: 64px;
    border-radius: 12px;
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.platform-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.platform-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.platform-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Hover Effects */
.delivery-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

/* Brand specific overrides */
.delivery-platform-card.yemeksepeti::before {
    background: #EA004B;
}

.delivery-platform-card.yemeksepeti:hover {
    border-color: rgba(234, 0, 75, 0.3);
}

.delivery-platform-card.yemeksepeti:hover .platform-logo-container {
    /* background: #FFE5ED; */
}

.delivery-platform-card.yemeksepeti:hover .platform-label {
    color: #EA004B;
}

.delivery-platform-card.getir::before {
    background: #5D3EBD;
}

.delivery-platform-card.getir:hover {
    border-color: rgba(93, 62, 189, 0.3);
}

.delivery-platform-card.getir:hover .platform-logo-container {
    /* background: #F0EDFA; */
}

.delivery-platform-card.getir:hover .platform-label {
    color: #7B61FF;
}

.delivery-platform-card.migros::before {
    background: #FF7300;
}

.delivery-platform-card.migros:hover {
    border-color: rgba(255, 115, 0, 0.3);
}

.delivery-platform-card.migros:hover .platform-logo-container {
    /* background: #FFF0E5; */
}

.delivery-platform-card.migros:hover .platform-label {
    color: #FF7300;
}

.delivery-banner-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 0;
}

.delivery-courier-img {
    width: min(100%, 350px);
    height: auto;
    animation: floatScooter 4s ease-in-out infinite;
}

@keyframes floatScooter {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 992px) {
    .delivery-banner-card {
        grid-template-columns: 1fr;
    }

    .delivery-banner-left {
        align-items: center;
        text-align: center;
    }

    .delivery-phone-box {
        width: 100%;
        justify-content: center;
    }

    .delivery-banner-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .delivery-banner-section {
        padding: 4.5rem 0;
    }

    .delivery-banner-left h2 {
        font-size: 1.9rem;
    }

    .delivery-platforms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .delivery-phone-box {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }

    .delivery-phone-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .delivery-phone-text a {
        font-size: 1.05rem;
    }

    .delivery-platforms-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .delivery-platform-card {
        padding: 1rem;
    }

    .platform-logo-container {
        width: 56px;
        height: 56px;
    }

    .platform-label {
        font-size: 1rem;
    }
}

/* Courier scooter logo badge */
.courier-img-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.courier-logo-badge {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(12, 10, 9, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(243, 156, 18, 0.55);
    border-radius: 50px;
    padding: 0.3rem 0.85rem 0.3rem 0.35rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), 0 0 10px rgba(243, 156, 18, 0.15);
    white-space: nowrap;
    z-index: 10;
    animation: floatScooter 4s ease-in-out infinite;
}

.courier-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--clr-primary);
    flex-shrink: 0;
}

.courier-logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .delivery-platform-card {
        flex: 0 0 calc(50% - 0.65rem);
    }
}

@media (max-width: 576px) {
    .delivery-phone-box {
        margin-right: 0;
        width: 100%;
    }

    .delivery-platforms-grid {
        gap: 0.75rem;
    }

    .delivery-platform-card {
        flex: 0 0 calc(50% - 0.375rem);
        padding: 1.25rem 0.5rem;
    }

    .platform-label {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   FRANCHISE PAGE & CTA STYLES
   ========================================================================== */

/* Franchise CTA Button */
.btn-franchise {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%) !important;
    color: #0c0a09 !important;
    padding: 0.6rem 1.4rem !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-franchise:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%) !important;
}

/* Pulse animation on the CTA button */
.btn-franchise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: inherit;
    opacity: 1;
    pointer-events: none;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(243, 156, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.btn-franchise {
    animation: btnPulse 2.5s infinite;
}

/* Avoid displaying active state underline in main-nav on desktop */
.main-nav .btn-franchise::after {
    display: none !important;
}

/* Franchise Hero / Intro Section */
.franchise-hero {
    padding: 6rem 0;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
}

.franchise-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.franchise-hero-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.franchise-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.franchise-hero-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-primary);
}

.franchise-hero-actions {
    margin-top: 2rem;
}

/* Franchise Advantages Section */
.franchise-advantages {
    padding: 8rem 0;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
}

.franchise-hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.franchise-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(243, 156, 18, 0.15);
    transition: all 0.4s ease;
    width: 100%;
}

.franchise-image-container:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(243, 156, 18, 0.25);
}

.franchise-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.franchise-image-container:hover .franchise-main-img {
    transform: scale(1.05);
}

/* Premium Asymmetric Advantages Section */
.franchise-advantages {
    padding: 8rem 0;
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

/* Left Spotlight */
.advantages-spotlight {
    position: sticky;
    top: 120px;
}

.spotlight-sticky {
    position: relative;
    z-index: 2;
}

.spotlight-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
}

.spotlight-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-primary);
}

.spotlight-desc {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.spotlight-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Right Content Grid */
.advantages-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
}

/* Advantage Row Cards - Minimalist and Premium */
.advantage-row-card {
    background: rgba(12, 10, 9, 0.4);
    border-left: 3px solid rgba(243, 156, 18, 0.15);
    padding: 2rem 1.75rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.advantage-row-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(243, 156, 18, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
}

.advantage-row-card:hover {
    border-left-color: var(--clr-primary);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(12, 10, 9, 0.7);
}

.advantage-row-card:hover::before {
    opacity: 1;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(243, 156, 18, 0.4);
    line-height: 1;
    transition: color 0.3s ease;
    letter-spacing: -1px;
}

.advantage-row-card:hover .card-num {
    color: var(--clr-primary);
}

.advantage-row-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.advantage-row-card:hover h3 {
    color: var(--clr-primary);
}

.advantage-row-card p {
    color: var(--clr-text-light);
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

/* Franchise Horizontal Process Steps (Reference Redesign) */
.franchise-process {
    padding: 8rem 0;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
}

.franchise-process .wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Custom Header Styles Removed - Using Site Standard .section-header */

/* ── STEPS ── */
.franchise-process .steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3.75rem;
    border: 1px solid var(--clr-border);
    background: var(--clr-bg);
    animation: fadeUp .7s .2s both;
}

/* ── SINGLE STEP ── */
.franchise-process .step {
    padding: 2.5rem 1.75rem 2.25rem;
    border-right: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
    cursor: default;
    background: var(--clr-bg);
}

.franchise-process .step:last-child {
    border-right: none;
}

.franchise-process .step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.franchise-process .step:hover {
    background: var(--clr-surface);
}

.franchise-process .step:hover::before {
    transform: scaleX(1);
}

/* Big number bg */
.franchise-process .step-bg-num {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--font-heading), sans-serif;
    font-weight: 900;
    font-size: 130px;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: color .3s ease, transform .3s ease;
    user-select: none;
}

.franchise-process .step:hover .step-bg-num {
    color: rgba(243, 156, 18, 0.08);
    transform: scale(1.05);
}

/* Step number */
.franchise-process .step-num {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    width: 100%;
}

.franchise-process .step-num-circle {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-primary);
    flex-shrink: 0;
    transition: background .3s ease, color .3s ease;
}

.franchise-process .step:hover .step-num-circle {
    background: var(--clr-primary);
    color: var(--clr-bg);
}

.franchise-process .step-num-line {
    height: 1px;
    flex: 1;
    max-width: 32px;
    background: var(--clr-border);
    transition: background .3s ease;
}

.franchise-process .step:hover .step-num-line {
    background: var(--clr-primary);
}

/* Step title */
.franchise-process .step-title {
    font-family: var(--font-heading), sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--clr-text);
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Step body */
.franchise-process .step-body {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--clr-text-light);
    line-height: 1.85;
    position: relative;
    z-index: 1;
    transition: color .3s ease;
    font-family: var(--font-body);
}

.franchise-process .step:hover .step-body {
    color: var(--clr-text);
}

/* ── FOOTER ROW ── */
.franchise-process .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    animation: fadeUp .7s .35s both;
}

.franchise-process .footer-row-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.franchise-process .dot-row {
    display: flex;
    gap: 6px;
}

.franchise-process .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-border);
}

.franchise-process .dot.active {
    background: var(--clr-primary);
}

.franchise-process .footer-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    font-family: var(--font-body);
}

.franchise-process .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-primary);
    color: var(--clr-bg);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: background .25s ease;
}

.franchise-process .cta-btn:hover {
    background: var(--clr-primary-light);
    color: var(--clr-bg);
}

.franchise-process .cta-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform .2s ease;
}

.franchise-process .cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .franchise-process .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .franchise-process .step:nth-child(3) {
        border-right: none;
    }

    .franchise-process .step:nth-child(4) {
        border-top: 1px solid var(--clr-border);
    }

    .franchise-process .step:nth-child(5) {
        border-top: 1px solid var(--clr-border);
        border-right: none;
    }
}

@media (max-width: 768px) {
    .franchise-process {
        padding: 4rem 0;
    }

    /* Media queries for .hd-* removed */

    .franchise-process .steps {
        grid-template-columns: 1fr;
        border: none;
        gap: 1px;
        background: var(--clr-border);
    }

    .franchise-process .step {
        border-right: none;
        border: none;
        background: var(--clr-bg);
    }

    .franchise-process .step:nth-child(3),
    .franchise-process .step:nth-child(4),
    .franchise-process .step:nth-child(5) {
        border-top: none;
    }

    .franchise-process .step-bg-num {
        font-size: 90px;
    }

    .franchise-process .footer-row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

/* Franchise Form Section */
.franchise-form-section {
    padding: 8rem 0;
    background:
        linear-gradient(to bottom, rgba(12, 10, 9, 0.85) 0%, rgba(12, 10, 9, 0.95) 100%),
        url('../images/bg-card.png');
    /* center/cover no-repeat; */
    border-bottom: 1px solid var(--clr-border);
    position: relative;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 18, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
    color: #fff;
}

.form-intro p {
    color: var(--clr-text-light);
    margin-top: 1rem;
    font-size: 1.05rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--clr-primary);
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--clr-text-light);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.form-error {
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.2);
    color: #ef5350;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Custom Modern SSS Accordion */
.franchise-faq {
    padding: 8rem 0;
    background: var(--clr-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    cursor: pointer;
    text-align: left;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faq-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-primary);
    opacity: 0.8;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--clr-text);
}

.faq-trigger i {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-trigger:hover .faq-question {
    color: var(--clr-primary);
}

.faq-trigger:hover i {
    color: var(--clr-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1rem 2rem 3.5rem;
}

.faq-answer p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Active State Styles */
.faq-item.active {
    background: rgba(255, 255, 255, 0.01);
}

.faq-item.active .faq-question {
    color: var(--clr-primary);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

/* Responsive media queries for Franchise Page */
@media (max-width: 992px) {
    .process-steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .process-step-card {
        flex: none;
        width: 100%;
        padding: 2rem;
    }

    .step-arrow {
        display: none;
    }

    .form-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {

    .franchise-process,
    .franchise-form-section,
    .franchise-faq {
        padding: 5rem 0;
    }

    .faq-trigger {
        padding: 1.5rem 0.5rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 0 0.5rem 1.5rem 2.5rem;
    }

    /* Mobil hamburger list styling for CTA */
    .mobile-nav-active .btn-franchise {
        display: block !important;
        text-align: center;
        margin-top: 1rem;
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        animation: none !important;
        box-shadow: none !important;
        background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%) !important;
        border-radius: var(--radius-md) !important;
    }
}

@media (max-width: 576px) {
    .form-wrapper {
        padding: 2.5rem 1.25rem;
    }
}

/* === TOAST MESSAGES === */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--clr-surface);
    color: var(--clr-text);
    border-left: 4px solid var(--clr-primary);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 300px;
    max-width: 90vw;
    font-weight: 500;
    font-size: 0.95rem;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #2ecc71;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #2ecc71;
}

.toast.error i {
    color: #e74c3c;
}

/* === HONEYPOT === */
.hp-field {
    display: none !important;
    position: absolute;
    left: -9999px;
}

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

@media (max-width: 768px) {
    .footer-contact-bar {
        grid-template-columns: 1fr;
    }
}