﻿:root {
    --primary-color: #c19a6b;
    --secondary-color: #2c2c2c;
    --accent-color: #d4af37;
    --light-color: #f8f9fa;
    --dark-color: #0d0d0d;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --success-color: #28a745;
}

/* iPhone Notch/Island Fixes */
@supports (padding: max(0px)) {
    body {
        padding-top: env(safe-area-inset-top);
    }

    .navbar {
        padding-top: calc(15px + env(safe-area-inset-top)) !important;
    }

    .hero-slider {
        margin-top: calc(-70px - env(safe-area-inset-top));
    }

    .floating-cart-btn {
        top: calc(90px + env(safe-area-inset-top));
    }

    .whatsapp-float {
        bottom: calc(30px + env(safe-area-inset-bottom));
    }

    .cookie-consent-banner {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    overflow-x: hidden;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Minimalist Scrollbar */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-color);
    }

/* GÜNCELLENMİŞ LOGO STİLİ - ŞEFFAF VE PADDINGSİZ */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 60px;
}

.logo-wrapper {
    display: block;
    width: 200px;
    height: 60px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 10px;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Navbar scrolled durumu için */
.navbar.scrolled .logo-wrapper {
    width: 160px;
    height: 50px;
    padding: 0;
}

/* Mobil için */
@media (max-width: 991px) {
    .navbar-brand {
        height: 55px;
    }

    .logo-wrapper {
        width: 170px;
        height: 55px;
        padding: 0;
    }

    .navbar.scrolled .logo-wrapper {
        width: 140px;
        height: 45px;
        padding: 0;
    }
}

/* Footer için logo - Daha temiz ve profesyonel */
.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

    .footer-logo .logo-wrapper {
        width: 220px;
        height: 65px;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin: 0 auto;
        display: block;
    }

@media (max-width: 991px) {
    .footer-logo .logo-wrapper {
        width: 180px;
        height: 55px;
        padding: 0;
    }
}

/* COOKIE BANNER */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(25, 25, 25, 0.98) 100%);
    color: white;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    backdrop-filter: blur(15px);
    font-family: 'Poppins', sans-serif;
}

    .cookie-consent-banner.active {
        transform: translateY(0);
    }

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.cookie-text {
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cookie-details {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .cookie-details.active {
        display: block;
    }

.cookie-category {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .cookie-category:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.category-title {
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.category-status {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.category-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

    .toggle-label:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

.toggle-input:checked + .toggle-label {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

    .toggle-input:checked + .toggle-label:before {
        transform: translateX(26px);
    }

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

    .cookie-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .cookie-btn.primary {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        border: none;
        color: white;
    }

    .cookie-btn.secondary {
        background: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

        .cookie-btn.secondary:hover {
            background: var(--primary-color);
            color: white;
        }

@media (max-width: 768px) {
    .cookie-container {
        padding: 20px 16px;
    }

    .cookie-content {
        gap: 12px;
    }

    .cookie-title {
        font-size: 1.2rem;
    }

    .cookie-text {
        font-size: 0.9rem;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px;
    }

    .cookie-details {
        padding: 16px;
    }

    .toggle-switch {
        width: 48px;
        height: 24px;
    }

    .toggle-label:before {
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
    }

    .toggle-input:checked + .toggle-label:before {
        transform: translateX(24px);
    }
}

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 50%, rgba(10, 10, 10, 0.98) 100%);
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(193, 154, 107, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

    .navbar.scrolled {
        background: linear-gradient(135deg, rgba(8, 8, 8, 0.98) 0%, rgba(15, 15, 15, 0.98) 50%, rgba(8, 8, 8, 0.98) 100%);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        padding: 8px 0;
        transform: translateY(-2px);
    }

.navbar-toggler {
    border: 1px solid rgba(193, 154, 107, 0.3);
    padding: 8px 10px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

    .navbar-toggler:hover {
        border-color: var(--primary-color);
        background: rgba(193, 154, 107, 0.1);
        transform: scale(1.05);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(193, 154, 107, 0.25);
        outline: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    width: 22px;
    height: 22px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(25, 25, 25, 0.98) 100%);
        border-radius: 10px;
        margin-top: 15px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(193, 154, 107, 0.1);
        backdrop-filter: blur(20px);
        max-height: 70vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 12px 0;
        margin: 6px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .navbar-nav .nav-link:last-child {
            border-bottom: none;
        }

    .book-btn {
        margin-top: 15px;
        width: 100%;
        padding: 14px;
        min-height: 44px;
    }

    .cart-icon-container {
        display: none !important;
    }
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 15px;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: flex;
    align-items: center;
}

    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transform: translateX(-50%);
        transition: width 0.4s ease;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(193, 154, 107, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: 80%;
    }

    .navbar-nav .nav-link:hover::after {
        transform: translateX(100%);
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 600;
    }

.book-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
    letter-spacing: 0.5px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

    .book-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.7s ease;
        z-index: -1;
    }

    .book-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(193, 154, 107, 0.4);
    }

        .book-btn:hover::before {
            left: 100%;
        }

.cart-icon-container {
    position: relative;
    margin-left: 15px;
    display: none;
}

.cart-icon {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 44px;
    min-width: 44px;
}

    .cart-icon:hover {
        background: rgba(193, 154, 107, 0.2);
        border-color: var(--primary-color);
        transform: rotate(-10deg);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

/* HERO SLİDER */
.hero-slider {
    height: 100vh;
    min-height: 667px;
    max-height: 932px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-slide.active {
        opacity: 1;
        z-index: 1;
    }

.slider-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slider-slide.active .slider-image {
    transform: scale(1);
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 20px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    padding-top: 70px;
    width: 90%;
}

    .slider-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .slider-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

.slider-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    min-width: 150px;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(193, 154, 107, 0.4);
        color: white;
    }

    .btn-primary:active {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(193, 154, 107, 0.3);
    }

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    min-width: 150px;
    min-height: 50px;
    cursor: pointer;
    font-size: 1rem;
}

    .btn-outline:hover {
        background: white;
        color: var(--dark-color);
        transform: translateY(-3px);
    }

    .btn-outline:active {
        transform: translateY(-1px);
    }

@media (max-width: 768px) {
    .slider-content {
        padding-top: 60px;
    }

        .slider-content h1 {
            font-size: 2rem !important;
        }

        .slider-content p {
            font-size: 1rem !important;
        }

    .btn-primary, .btn-outline {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
        min-height: 52px;
    }

    .slider-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    padding: 0 15px;
}

.slider-dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 4px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .slider-dot {
        width: 40px;
    }
}

.slider-dot.active {
    background: var(--primary-color);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .slider-arrows {
        display: none;
    }
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-height: 44px;
    min-width: 44px;
}

    .slider-arrow:hover {
        background: rgba(0,0,0,0.6);
    }

/* SECTIONS */
section {
    padding: 70px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--secondary-color);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
        margin-bottom: 0;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 15px auto 0;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 1.8rem;
        }

        .section-title p {
            font-size: 1rem;
        }
}

/* ABOUT SECTION */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 450px;
    width: 100%;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.about-content {
    padding-left: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .about-image {
        height: 350px;
    }
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

    .about-content h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }

.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #555;
}

/* MENU SECTION */
.menu-section {
    background-color: #f9f9f9;
}

.menu-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 15px;
}

.menu-filter-btn {
    background: white;
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 1;
    max-width: 200px;
}

    .menu-filter-btn.active, .menu-filter-btn:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
    }

    .menu-filter-btn:active {
        transform: translateY(0);
    }

.menu-container {
    padding: 0 15px;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .menu-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

.menu-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .menu-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.menu-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.menu-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-card-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.menu-card-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rating-value {
    font-size: 0.85rem;
    color: #666;
}

/* BASİT SEPETE EKLEME BUTONU */
.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
}

    .add-to-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
    }

    .add-to-cart-btn:active {
        transform: translateY(0);
    }

    .add-to-cart-btn i {
        font-size: 1rem;
    }

@media (max-width: 768px) {
    .menu-card {
        margin-bottom: 25px;
    }

    .menu-card-img {
        height: 180px;
    }

    .menu-card:hover {
        transform: translateY(-5px);
    }
}

/* RESERVATION SECTION */
.reservation-section {
    position: relative;
    color: white;
}

.reservation-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

    .reservation-bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9));
    z-index: -1;
}

.reservation-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
    }

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 8px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    min-height: 36px;
    min-width: 36px;
    font-size: 0.9rem;
}

.step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.step-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.step.active .step-label {
    color: white;
    font-weight: 500;
}

.step-line {
    height: 2px;
    width: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 18px;
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    min-height: 44px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .form-control:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(193, 154, 107, 0.25);
        color: white;
        outline: none;
    }

.form-label {
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 12px;
}

/* Rezervasyon dropdown düzeltmesi */
select.form-control {
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

    select.form-control option {
        background-color: #333;
        color: white;
        padding: 10px;
    }

@media (max-width: 768px) {
    .reservation-form-container {
        padding: 20px;
    }

    .step {
        margin: 0 4px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .step-line {
        width: 15px;
    }

    .form-navigation {
        flex-direction: column;
    }

        .form-navigation button {
            width: 100%;
        }
}

/* GALLERY SECTION */
.gallery-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.9) 100%);
        z-index: 0;
    }

    .gallery-section .container {
        position: relative;
        z-index: 1;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 280px;
}

    .gallery-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .gallery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
        border-radius: 10px;
    }

    .gallery-item:hover::before {
        opacity: 1;
    }

.gallery-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .gallery-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        border-radius: 10px;
    }

.gallery-item:hover .gallery-img-container img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
    border-radius: 0 0 10px 10px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 220px;
    }
}

/* CONTACT SECTION */
.contact-section {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.contact-map {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(31, 38, 135, 0.2);
    }

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.3rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
}

    .contact-form-card h3 {
        color: var(--secondary-color);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }

        .contact-form-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }

.contact-form .form-control {
    background: white;
    border: 1px solid #e0e0e0;
    color: var(--secondary-color);
    padding: 14px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px;
    font-size: 1rem;
    width: 100%;
}

    .contact-form .form-control::placeholder {
        color: #999;
    }

    .contact-form .form-control:focus {
        background: white;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(193, 154, 107, 0.25);
        color: var(--secondary-color);
        outline: none;
    }

@media (max-width: 768px) {
    .contact-map {
        height: 250px;
        margin-bottom: 30px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
        min-height: 160px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .contact-form-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-about {
    margin-bottom: 25px;
    text-align: center;
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

    .footer-links ul li {
        margin-bottom: 8px;
    }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

            .footer-links ul li a:hover {
                color: var(--primary-color);
                padding-left: 5px;
            }

.footer-contact-info {
    margin-top: 15px;
}

    .footer-contact-info p {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer-contact-info i {
        margin-right: 10px;
        color: var(--primary-color);
        width: 20px;
        flex-shrink: 0;
    }

.business-hours-footer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

    .business-hours-footer h5 {
        color: var(--primary-color);
        margin-bottom: 10px;
        text-align: center;
        font-size: 1.1rem;
    }

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

@media (min-width: 992px) {
    .footer-about, .footer-links h4, .footer-links ul {
        text-align: left;
    }

    .footer-contact-info p {
        justify-content: flex-start;
    }

    .business-hours-footer h5 {
        text-align: left;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 10px rgba(193, 154, 107, 0.3);
    min-height: 45px;
    min-width: 45px;
}

    .back-to-top.active {
        opacity: 1;
    }

    .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(193, 154, 107, 0.4);
    }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

        .back-to-top.active {
            opacity: 0.9;
        }
}

/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 997;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    min-height: 55px;
    min-width: 55px;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        left: 15px;
    }
}

/* PAGE LOADER */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .page-loader.fade-out {
        opacity: 0;
        visibility: hidden;
    }

.loader-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* SHOPPING CART */
.cart-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .cart-container.open {
        right: 0;
    }

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .cart-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.cart-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-header h3 {
        margin: 0;
        font-size: 1.3rem;
    }

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .cart-close:hover {
        opacity: 0.8;
    }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

    .cart-empty i {
        font-size: 2.5rem;
        margin-bottom: 12px;
        color: #ddd;
    }

    .cart-empty h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .cart-empty p {
        color: #888;
        font-size: 0.95rem;
    }

.cart-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

    .cart-item-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 30px;
    min-width: 30px;
    font-size: 0.9rem;
    color: #333;
}

    .quantity-btn:hover {
        background: #e9ecef;
        border-color: #ccc;
    }

.cart-item-quantity {
    font-weight: 600;
    min-width: 22px;
    text-align: center;
    font-size: 0.95rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    margin-left: auto;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1rem;
}

    .cart-item-remove:hover {
        color: #c82333;
    }

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-weight: 600;
}

.cart-total-amount {
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-checkout-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    min-height: 50px;
}

    .cart-checkout-btn:hover {
        opacity: 0.9;
    }

    .cart-checkout-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.6;
    }

.cart-continue-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 13px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    min-height: 50px;
}

    .cart-continue-btn:hover {
        background: var(--primary-color);
        color: white;
    }

@media (max-width: 576px) {
    .cart-container {
        max-width: 100%;
    }
}

/* FLOATING CART BUTTON */
.floating-cart-btn {
    position: fixed;
    top: 90px;
    right: 15px;
    z-index: 999;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 15px;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    display: none;
    min-height: 44px;
    font-size: 0.9rem;
    z-index: 996;
}

    .floating-cart-btn:hover {
        opacity: 0.9;
    }

.floating-cart-count {
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.floating-cart-text {
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .floating-cart-btn {
        display: flex;
    }
}

@media (max-width: 576px) {
    .floating-cart-btn {
        top: 85px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .floating-cart-text {
        display: none;
    }
}

/* ORDER FORM */
.order-form-container {
    padding: 20px;
    height: calc(100% - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.form-input-group {
    margin-bottom: 15px;
}

.form-input-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    min-height: 44px;
}

    .form-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(193, 154, 107, 0.15);
        outline: none;
    }

.form-input-help {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 12px;
}

.form-action-btn {
    flex: 1;
    padding: 13px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .form-action-btn.primary {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border: none;
    }

        .form-action-btn.primary:hover {
            opacity: 0.9;
        }

    .form-action-btn.secondary {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

        .form-action-btn.secondary:hover {
            background: var(--primary-color);
            color: white;
        }

@media (max-width: 576px) {
    .form-actions {
        flex-direction: column;
    }

    .form-action-btn {
        width: 100%;
    }
}

/* CUSTOM MODAL */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

    .custom-modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.custom-modal.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.8rem;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.modal-message {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .modal-content {
        padding: 25px 20px;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }
}

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {
    .menu-card:hover,
    .gallery-item:hover,
    .contact-card:hover {
        transform: none;
    }

    .menu-card:active {
        transform: scale(0.98);
    }

    .btn-primary:active,
    .btn-outline:active,
    .add-to-cart-btn:active {
        transform: scale(0.98);
    }
}

/* FOCUS STYLES */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* DESKTOP SPECIFIC */
@media (min-width: 992px) {
    .cart-icon-container {
        display: block !important;
    }

    .floating-cart-btn {
        display: none !important;
    }

    .whatsapp-float {
        bottom: 30px;
        left: 30px;
    }

    .slider-content h1 {
        font-size: 3.5rem;
    }

    .slider-arrows {
        display: flex;
    }

    .navbar-nav .nav-link {
        margin: 0 12px;
    }

    .book-btn {
        width: auto;
        margin-top: 0;
        margin-left: 15px;
    }
}

/* TABLET SPECIFIC */
@media (min-width: 768px) and (max-width: 991px) {
    .slider-content h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .floating-cart-btn {
        display: flex;
        top: 90px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .floating-cart-text {
        display: block;
    }

    .cart-icon-container {
        display: none !important;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1200px) {
    .slider-content h1 {
        font-size: 4rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }
}

/* PREVENT HORIZONTAL SCROLL */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container, .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}

/* BETTER TEXT RENDERING */
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
