/*! 
 * XXLWaffle & Pizza Styles
 * Version: 20251126k
 * Last Updated: 2025-11-26
 * Cache Buster: v20251126k
 */

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 9999;
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #ff8fab;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, #ff8fab 0%, #ff8c42 100%);
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 143, 171, 0.4);
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* ========== PWA INSTALL PROMPT ========== */
.pwa-install-prompt {
    position: fixed;
    bottom: 100px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9998;
    display: none;
    animation: slideUp 0.5s ease;
}

.pwa-install-prompt.show {
    display: block;
}

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

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-install-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8fab 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.pwa-install-text h4 {
    font-size: 1rem;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.pwa-install-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.pwa-install-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.pwa-install-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pwa-install-yes {
    background: linear-gradient(135deg, #ff8fab 0%, #ff8c42 100%);
    color: white;
}

.pwa-install-no {
    background: #f5f5f5;
    color: #666;
}

.pwa-install-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

/* Reset & Base - Force reset for all browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent browser extension interference */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    /* Colors - Soft pink tones, vibrant orange, wood colors */
    --white: #ffffff;
    --pink-very-light: #fff8f9;
    --pink-light: #ffeef2;
    --pink-soft: #ffd6e0;
    --pink-medium: #ffb3c6;
    --pink-deep: #ff8fab;
    --orange-vibrant: #ff8c42;
    --orange-soft: #ffb366;
    --wood-light: #e8d5c4;
    --wood-medium: #d4a574;
    --wood-dark: #b8956a;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --shadow-soft: 0 4px 20px rgba(255, 179, 198, 0.15);
    --shadow-medium: 0 6px 30px rgba(255, 179, 198, 0.25);
    --shadow-large: 0 10px 50px rgba(255, 140, 66, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Poppins', 'Inter', sans-serif;
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0 !important;
    padding: 0 !important;
}

/* Font loading fallback */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Poppins'), local('Poppins-Regular');
}

/* Ensure fonts load properly */
body.loaded {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.menu-page,
body.about-page,
body.contact-page {
    padding-top: 0;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    position: relative !important;
    display: block !important;
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation - Sticky navbar that follows scroll */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    padding: 1.2rem 0 !important;
    border-bottom: 1px solid rgba(255, 179, 198, 0.2) !important;
    width: 100% !important;
    display: block !important;
}

.nav-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100% !important;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.5px;
    margin: 0 !important;
    line-height: 1 !important;
    display: block !important;
}

.nav-logo {
    height: 80px;
    width: 80px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a.active {
    color: var(--pink-deep);
    font-weight: 600;
}

.nav-menu a:hover {
    color: var(--pink-deep);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-deep), var(--orange-vibrant));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.cart-btn {
    position: relative;
    background: linear-gradient(135deg, var(--pink-medium) 0%, var(--pink-deep) 100%);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.cart-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.cart-btn svg {
    color: var(--white);
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--orange-vibrant);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--white);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cart-badge:empty {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 4rem 0 !important;
    background: linear-gradient(135deg, var(--pink-very-light) 0%, var(--pink-light) 50%, var(--wood-light) 100%) !important;
    width: 100% !important;
    margin-top: -85px; /* Navbar yüksekliği kadar yukarı çek */
    padding-top: calc(4rem + 85px); /* Navbar için ek padding */
}

@media (max-height: 600px) {
    .hero-modern {
        min-height: auto;
        padding: 4rem 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 30s infinite ease-in-out;
}

@media (max-width: 768px) {
    .gradient-orb {
        filter: blur(60px);
        opacity: 0.4;
    }
    
    .orb-1 {
        width: 300px;
        height: 300px;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
    }
    
    .orb-3 {
        width: 200px;
        height: 200px;
    }
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--pink-deep), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-vibrant), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink-medium), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-badge span {
    background: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-medium);
    display: inline-block;
}

.hero-title-modern {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.title-line {
    display: block;
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-rainbow {
    background: linear-gradient(90deg, #e30a17, #ff6b6b, #d0d0d0, #ff6b6b, #e30a17);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: slideInLeft 0.5s ease forwards, pulse-glow 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes pulse-glow {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.15) drop-shadow(0 0 6px rgba(227, 10, 23, 0.3));
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-subtitle-modern {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 0 1rem;
    max-width: 600px;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 500px;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-large);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.5);
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--pink-deep);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--pink-soft);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.btn-secondary-modern:hover {
    background: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.hero-visual {
    display: none;
}

/* Features Section */
.features-section {
    padding: 7rem 0;
    background: var(--white);
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 3rem;
    width: 100% !important;
}

.feature-card {
    background: var(--glass-bg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--pink-medium);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--wood-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--pink-very-light) 0%, var(--pink-light) 50%, var(--wood-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,179,198,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Menu Section Modern */
.menu-section-modern {
    padding: 7rem 0;
    background: var(--pink-very-light);
}

.menu-tabs-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab-modern {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--pink-soft);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-tab-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.menu-tab-modern.active {
    background: linear-gradient(135deg, var(--pink-medium) 0%, var(--pink-deep) 100%);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.tab-icon {
    font-size: 1.5rem;
}

.menu-tab-content-modern {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-tab-content-modern.active {
    display: block;
}

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

.menu-grid-modern {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 1.5rem;
    width: 100% !important;
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink-deep), var(--orange-vibrant));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-large);
    border-color: var(--pink-soft);
}

.menu-item-icon {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    display: block;
}

.menu-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.menu-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    min-height: 35px;
    line-height: 1.5;
    flex-grow: 1;
}

.menu-item-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-vibrant);
    margin-bottom: 1rem;
    display: block;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.btn-add-cart {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--pink-medium) 0%, var(--pink-deep) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange-vibrant) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* About Section Modern */
.about-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--wood-light) 0%, var(--pink-very-light) 100%);
}

.about-content-modern {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5rem;
    align-items: center;
    width: 100% !important;
}

.about-text-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.about-text-modern p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.gluten-free-badge-large {
    display: inline-block;
    margin-bottom: 2rem;
}

.gluten-free-badge-large span {
    background: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: var(--shadow-medium);
    display: inline-block;
}

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

.stat-item-modern {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-vibrant);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-visual-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-large);
}

.card-1 {
    grid-column: 1 / -1;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.visual-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Contact Section Modern */
.contact-section-modern {
    padding: 5rem 0;
    background: var(--pink-light);
}

.contact-wrapper-modern {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 4rem;
    align-items: start;
    width: 100% !important;
}

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

.contact-card-modern {
    background: var(--glass-bg);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-card-modern.highlight {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-soft) 100%);
    border-color: var(--pink-medium);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card-modern h3 {
    color: var(--pink-deep);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.contact-card-modern p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.address-note {
    color: var(--pink-deep);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem !important;
}

.contact-card-modern a {
    color: var(--orange-vibrant);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.contact-card-modern a:hover {
    color: var(--pink-deep);
    text-decoration: underline;
}

.warning-text {
    color: var(--orange-vibrant);
    font-weight: 600;
    margin-top: 0.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    margin-top: 0.75rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    opacity: 0.95;
}

.instagram-btn svg {
    width: 20px;
    height: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-buttons .whatsapp-btn,
.contact-buttons .instagram-btn {
    width: 100%;
    margin-top: 0;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Checkout Section */
.checkout-section {
    padding: 5rem 0;
    background: var(--white);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    overflow: visible;
}

.checkout-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: visible;
}

.checkout-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--pink-soft);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    box-sizing: border-box;
    resize: none !important;
    overflow: hidden !important;
    position: relative;
    max-width: 100%;
    min-width: 100%;
    height: auto;
}

.form-group textarea {
    resize: none !important;
    min-height: 80px;
    max-height: 200px;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto;
}

/* Prevent textarea resize completely */
textarea {
    resize: none !important;
    -webkit-resize: none !important;
    -moz-resize: none !important;
    -ms-resize: none !important;
    -o-resize: none !important;
}

/* Disable resize handle completely */
textarea::-webkit-resizer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

textarea::-moz-resizer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Prevent any resize interaction */
textarea {
    pointer-events: auto;
    user-select: text;
    touch-action: pan-y;
}

textarea::after {
    display: none !important;
}

/* Additional textarea protection */
textarea:active,
textarea:focus {
    resize: none !important;
}

/* Prevent drag resize */
textarea {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}

/* Force fixed dimensions */
.form-group textarea {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-deep);
    box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.1);
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff4444;
}

.form-group {
    position: relative;
    overflow: hidden;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--pink-soft);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--pink-deep);
    background: var(--pink-very-light);
}

.payment-option input[type="radio"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
}

.payment-option span {
    font-weight: 500;
    font-size: 1rem;
}

.btn-submit-order {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-large);
    margin-top: 1rem;
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.5);
}

.btn-submit-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checkout-summary {
    background: var(--pink-very-light);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.checkout-items {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--pink-soft);
}

.checkout-item:last-child {
    border-bottom: none;
}

.btn-edit-cart {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--orange-vibrant) 0%, var(--orange-light) 100%);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.btn-edit-cart:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
}

.checkout-item-icon {
    font-size: 2rem;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.checkout-item-quantity {
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-item-total {
    font-weight: 700;
    color: var(--orange-vibrant);
    font-size: 1.1rem;
}

.checkout-total {
    border-top: 2px solid var(--pink-soft);
    padding-top: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.total-row.final {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--pink-medium);
}

.total-row.final span:last-child {
    color: var(--orange-vibrant);
}

@media (max-width: 968px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink-very-light) 0%, var(--pink-light) 50%, var(--wood-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '+';
    position: absolute;
    font-size: 4rem;
    color: var(--pink-medium);
    opacity: 0.2;
    font-weight: 300;
    line-height: 1;
}

.gallery-placeholder:hover::before {
    opacity: 0.4;
    transform: scale(1.1);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-icon {
        font-size: 3.5rem;
    }
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--pink-very-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--pink-soft);
}

.map-link:hover {
    background: var(--pink-light);
    transform: translateX(5px);
    border-color: var(--pink-medium);
}

.map-link span {
    font-size: 1.2rem;
}

.footer-warning {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.map-container-modern {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    height: 500px;
    min-height: 450px;
    background: var(--white);
    position: relative;
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
    border-radius: 20px;
}

.map-overlay-links {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.map-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-overlay-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.map-overlay-btn span {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .map-overlay-links {
        bottom: 10px;
        right: 10px;
    }
    
    .map-overlay-btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}

/* Footer Modern */
.footer-modern {
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.cart-modal.active {
    display: block;
}

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

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--pink-light);
}

.cart-header h2 {
    color: var(--pink-deep);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-close:hover {
    background: var(--pink-light);
    color: var(--pink-deep);
    transform: rotate(90deg);
}

.cart-items {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 200px;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-cart span {
    font-size: 4rem;
    display: block;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.btn-go-to-menu {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-go-to-menu:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--pink-very-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-icon {
    font-size: 2.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.cart-item-price {
    color: var(--orange-vibrant);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: var(--pink-medium);
    color: var(--white);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quantity-btn:hover {
    background: var(--orange-vibrant);
    transform: scale(1.1);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.remove-item:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    transform: rotate(90deg);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--pink-light);
    background: var(--pink-very-light);
    border-radius: 0 0 25px 25px;
}

.cart-total {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.cart-total span {
    color: var(--orange-vibrant);
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-medium);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255, 140, 66, 0.4);
}

.btn-checkout:active {
    transform: translateY(0);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-large);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    font-weight: 500;
    max-width: 300px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        z-index: 999;
        gap: 1rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .hero-modern {
        min-height: 100vh;
        min-height: 100dvh;
        margin-top: -70px;
        padding-top: calc(3rem + 70px);
    }
    
    .page-header {
        padding: 5rem 0 3rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.75rem;
    }
    
    .cart-btn {
        width: 45px;
        height: 45px;
    }
    
    .cart-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-modern {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-content-modern {
        padding: 0 1rem;
        align-items: center;
    }

    .hero-title-modern {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 0.75rem;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 4rem 0 3rem;
    }

    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .card-1 {
        grid-column: 1;
    }

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

    .menu-tabs-modern {
        gap: 0.5rem;
    }

    .menu-tab-modern {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-item-modern {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container-modern {
        height: 350px;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .map-links {
        margin-top: 0.75rem;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    .cart-content {
        width: 95%;
        max-height: 90vh;
    }

    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }

    /* Hero buttons already handled in 768px */

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .hero-title-modern {
        font-size: 1.6rem;
    }
    
    .hero-subtitle-modern {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }
    
    .hero-buttons {
        max-width: 260px;
        gap: 0.5rem;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .menu-tab-modern {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .menu-item {
        padding: 1.25rem;
    }
    
    .contact-card-modern {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 1.9rem;
        text-align: center;
    }

    .hero-subtitle-modern {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 0.6rem;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .page-subtitle {
        font-size: 1rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .menu-item-icon {
        font-size: 4rem;
    }

    .menu-item h3 {
        font-size: 1.3rem;
    }

    .menu-item-price {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .stats-modern {
        grid-template-columns: 1fr;
    }

    .about-text-modern h2 {
        font-size: 2rem;
    }

    .contact-card-modern {
        padding: 1.5rem;
    }

    .contact-card-modern h3 {
        font-size: 1.1rem;
    }

    .map-container-modern {
        height: 300px;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 3rem;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    .map-links {
        gap: 0.5rem;
    }

    .map-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
    
    .map-overlay-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.75rem;
    }
    
    .address-note {
        font-size: 0.85rem;
    }
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all interactive elements are accessible */
button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent text selection on buttons */
button {
    user-select: none;
    -webkit-user-select: none;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero-modern {
        min-height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}

/* Ensure proper rendering on all devices */
* {
    -webkit-tap-highlight-color: rgba(255, 140, 66, 0.2);
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .hero-title-modern {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .hero-subtitle-modern {
        font-size: 0.9rem;
        text-align: center;
        padding: 0 0.25rem;
    }
    
    .hero-buttons {
        max-width: 250px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
}

/* Fix for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        max-width: 450px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: auto;
        padding: 1rem 2rem;
    }
    
    .menu-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
    .menu-item-icon,
    .feature-icon,
    .card-icon {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Ensure text is always readable */
a {
    color: inherit;
    text-decoration: none;
}

/* Force visibility for all browsers - Critical */
html {
    visibility: visible !important;
    opacity: 1 !important;
}

body {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
}

/* Override any extension styles */
.navbar,
.hero-modern,
.container,
.menu-grid-modern,
.features-grid,
.about-content-modern,
.contact-wrapper-modern {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure sections are visible */
section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* Fix for browser extensions */
* {
    box-sizing: border-box !important;
}

/* Reset any potential overrides */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    overflow-x: hidden !important;
}

/* Prevent FOUC (Flash of Unstyled Content) - Final override */
html {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure all critical elements load properly - Final safety net */
.navbar,
.hero-modern,
section,
footer,
.container,
.menu-section-modern,
.about-section-modern,
.contact-section-modern,
.features-section,
.cta-section,
.page-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.navbar {
    display: block !important;
}

.hero-modern {
    display: flex !important;
}

/* Grid and flex containers - Force display */
.menu-grid-modern,
.features-grid,
.about-content-modern,
.contact-wrapper-modern,
.footer-content,
.stats-modern,
.about-visual-modern,
.contact-info-modern {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.nav-content,
.hero-buttons,
.menu-tabs-modern,
.cart-item-quantity,
.hero-content-modern {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Menu items */
.menu-item {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Cards */
.feature-card,
.contact-card-modern,
.visual-card,
.stat-item-modern {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--orange-vibrant);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Prevent layout shift */
.menu-item,
.feature-card,
.contact-card-modern {
    will-change: transform;
}

/* Smooth font rendering */
body,
button,
input,
textarea,
select {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ensure proper spacing on all devices */
section {
    min-height: auto;
}

/* Fix for overflow issues */
.hero-modern,
.page-header {
    overflow-x: hidden;
}

/* Ensure buttons are always clickable */
button,
.btn-primary-modern,
.btn-secondary-modern,
.btn-add-cart,
.btn-checkout {
    min-height: 44px; /* iOS touch target */
    min-width: 44px;
}

@media (max-width: 480px) {
    button,
    .btn-primary-modern,
    .btn-secondary-modern,
    .btn-add-cart {
        min-height: 48px; /* Larger touch target on mobile */
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-modern {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 3rem 0 2rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cart-modal,
    .toast,
    .hero-visual,
    .gradient-orb {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Critical fixes for all browsers - Highest priority */
html {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

body {
    display: block !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-height: 100vh !important;
}

/* Ensure critical elements are always visible */
.navbar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.hero-modern {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* Force layout for all grid/flex containers */
.menu-grid-modern,
.features-grid,
.about-content-modern,
.contact-wrapper-modern,
.footer-content,
.nav-content {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-content {
    display: flex !important;
}

/* ============================================
   CHECKOUT PAGE RESPONSIVE STYLES
   ============================================ */

/* Checkout wrapper */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkout-summary {
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 2rem 0;
    }
    
    .checkout-form,
    .checkout-summary {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-order {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-edit-cart {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .checkout-item {
        padding: 0.75rem 0;
    }
    
    .checkout-item-icon {
        font-size: 1.5rem;
    }
    
    .checkout-item-name {
        font-size: 0.95rem;
    }
    
    .checkout-item-price {
        font-size: 0.9rem;
    }
    
    .total-row {
        font-size: 1rem;
    }
    
    .total-row.final {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .checkout-section {
        padding: 1.5rem 0;
    }
    
    .checkout-form,
    .checkout-summary {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .btn-submit-order {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .btn-edit-cart {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .checkout-item-icon {
        font-size: 1.25rem;
    }
    
    .checkout-total {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .checkout-form,
    .checkout-summary {
        padding: 1rem;
    }
    
    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .btn-submit-order,
    .btn-edit-cart {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

/* Gallery responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-item {
        height: 150px;
        border-radius: 12px;
    }
    
    .gallery-placeholder::before {
        font-size: 2.5rem;
    }
}

/* Contact map responsive */
@media (max-width: 768px) {
    .map-container-modern {
        height: 350px;
        min-height: 300px;
    }
    
    .map-container-modern iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .map-container-modern {
        height: 280px;
        min-height: 250px;
        border-radius: 16px;
    }
    
    .map-container-modern iframe {
        min-height: 250px;
        border-radius: 16px;
    }
}

/* Safe area for notched devices (iPhone X, etc.) */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1.2rem, env(safe-area-inset-left));
        padding-right: max(1.2rem, env(safe-area-inset-right));
    }
    
    .footer-modern {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
    
    .cart-content {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Keep light theme for brand consistency */
    body {
        background: #fff !important;
        color: #2d2d2d !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary-modern,
    .btn-submit-order,
    .btn-add-cart {
        border: 2px solid currentColor;
    }
    
    .menu-item,
    .feature-card,
    .contact-card-modern {
        border: 2px solid #333;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   ORDER SUCCESS MODAL
   ============================================ */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.order-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.order-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.order-modal-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--pink-very-light) 0%, var(--pink-light) 100%);
    border-radius: 25px 25px 0 0;
}

.order-success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.order-modal-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

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

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

.order-detail-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--pink-soft);
}

.order-detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-detail-section h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.order-label {
    color: var(--text-light);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.order-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

.order-items-list {
    margin-bottom: 1rem;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--pink-soft);
    font-size: 0.95rem;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--pink-very-light);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}


.order-modal-footer {
    padding: 1.5rem 2rem 2rem;
}

.btn-close-modal {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange-vibrant) 0%, var(--orange-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Modal responsive */
@media (max-width: 768px) {
    .order-modal-content {
        width: 95%;
        max-height: 85vh;
        border-radius: 20px;
    }
    
    .order-modal-header {
        padding: 1.5rem 1.5rem 1.25rem;
        border-radius: 20px 20px 0 0;
    }
    
    .order-success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .order-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .order-modal-body {
        padding: 1.25rem 1.5rem;
    }
    
    .order-modal-footer {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .order-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .order-modal-header {
        padding: 1.25rem 1.25rem 1rem;
        border-radius: 16px 16px 0 0;
    }
    
    .order-success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .order-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .order-modal-header p {
        font-size: 0.9rem;
    }
    
    .order-modal-body {
        padding: 1rem 1.25rem;
    }
    
    .order-detail-section h3 {
        font-size: 1rem;
    }
    
    .order-detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .order-value {
        text-align: left;
    }
    
    .order-total-row {
        font-size: 1.1rem;
        padding: 0.85rem;
    }
    
    .order-modal-footer {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .btn-close-modal {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   MÜŞTERİ YORUMLARI SECTION
   ============================================ */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--pink-very-light) 0%, var(--white) 50%, var(--pink-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange-vibrant) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Reviews Stats */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 179, 198, 0.2);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-vibrant);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-box .stat-stars {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 179, 198, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--pink-soft);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--pink-medium);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink-medium) 0%, var(--pink-deep) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--pink-soft);
    font-size: 0.8rem;
}

.review-date {
    color: var(--text-light);
}

.review-product {
    background: var(--pink-very-light);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    color: var(--pink-deep);
    font-weight: 500;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--pink-deep);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--pink-soft);
    box-shadow: var(--shadow-soft);
}

.btn-reviews:hover {
    background: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reviews-stats {
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem 1.5rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .reviews-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 200px;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-badge {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* ========================================
   İLETİŞİM İYİLEŞTİRMELERİ
   ======================================== */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.whatsapp-float-text {
    white-space: nowrap;
}

.whatsapp-float-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(255, 143, 171, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 143, 171, 0.4);
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .whatsapp-float-icon {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 25px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

/* ========================================
   SSS (FAQ) SECTION
   ======================================== */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pink-very-light) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--pink-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--pink-medium);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question:hover {
    background: var(--pink-very-light);
    color: var(--pink-deep);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--pink-deep);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.5rem;
}

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

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

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* ========================================
   GERİ BİLDİRİM (FEEDBACK) SECTION
   ======================================== */
.feedback-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 50%, var(--pink-very-light) 100%);
}

.feedback-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.feedback-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feedback-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.feedback-info > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feedback-contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--pink-very-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feedback-option:hover {
    background: var(--white);
    border-color: var(--pink-medium);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 143, 171, 0.15);
}

.feedback-option-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feedback-option-text {
    display: flex;
    flex-direction: column;
}

.feedback-option-text strong {
    font-weight: 600;
    font-size: 1rem;
}

.feedback-option-text small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.feedback-quick {
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--orange-vibrant) 100%);
    padding: 3rem;
    border-radius: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback-quick h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.feedback-quick > p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.rating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rating-btn span:first-child {
    font-size: 2rem;
}

.rating-excellent {
    background: rgba(255, 255, 255, 0.95);
    color: #10b981;
}

.rating-excellent:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.rating-good {
    background: rgba(255, 255, 255, 0.95);
    color: #3b82f6;
}

.rating-good:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.rating-average {
    background: rgba(255, 255, 255, 0.95);
    color: #f59e0b;
}

.rating-average:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.rating-poor {
    background: rgba(255, 255, 255, 0.95);
    color: #ef4444;
}

.rating-poor:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

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

@media (max-width: 768px) {
    .feedback-section {
        padding: 4rem 0;
    }
    
    .feedback-info,
    .feedback-quick {
        padding: 2rem;
    }
    
    .feedback-info h2 {
        font-size: 1.5rem;
    }
    
    .feedback-quick h3 {
        font-size: 1.3rem;
    }
    
    .rating-buttons {
        gap: 0.75rem;
    }
    
    .rating-btn {
        padding: 1rem;
    }
    
    .rating-btn span:first-child {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .feedback-option {
        padding: 0.875rem 1rem;
    }
    
    .feedback-option-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}
