/* 
==============================================
   Sütlü Sıcak Fırın - Main Stylesheet (V2)
============================================== 
*/

:root {
    /* Color Palette */
    --color-bg: #FBF3E7;
    --color-bg-alt: #F7EFDD;
    --color-text: #211913;
    --color-text-light: #4A3C31;
    --color-accent-gold: #C9A063;
    --color-accent-gold-light: #E3C594;
    --color-accent-fire: #B5482F;
    --color-accent-fire-hover: #9A3C26;
    
    /* Typography */
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing & Layout */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --container-width: 1024px;
    
    /* Other */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    --shadow-sm: 0 2px 10px rgba(33, 25, 19, 0.05);
    --shadow-md: 0 10px 30px rgba(33, 25, 19, 0.08);
}

/* Base Reset & Accessibility */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

*:focus-visible {
    outline: 2px solid var(--color-accent-fire);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

section {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 500;
    color: var(--color-text);
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: clamp(1rem, 3vw, 1.1rem);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.motif-divider {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    min-height: 48px; /* Mobile touch target */
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-accent-fire);
    color: white;
    border-color: var(--color-accent-fire);
}

.btn-primary:hover {
    background-color: var(--color-accent-fire-hover);
    border-color: var(--color-accent-fire-hover);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.btn-outline:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-text);
}

/* Header (Transparent & Centered) */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: background-color var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px; /* Increased for mobile */
}

.header-left {
    width: 60px; /* Balance logo */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-actions {
    width: 60px; /* Balance the left side */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 100%;
}

.logo-img {
    height: 120px; /* Larger on mobile */
    width: auto;
    object-fit: contain;
    transform: translateY(5px); /* Optically center it if the PNG is slightly top-heavy */
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text);
    background-color: transparent;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.whatsapp-icon, .menu-icon {
    background-color: var(--color-accent-fire); /* Turuncu/Terracotta vurgu rengimiz */
    color: var(--color-bg); /* İçindeki ikon rengi krem/beyaz olsun */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Video üzerinde kaybolmaması için hafif gölge */
}

.icon-link:hover, .whatsapp-icon:hover, .menu-icon:hover {
    background-color: var(--color-accent-gold);
    color: white;
    transform: scale(1.05);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 180px; /* Offset for larger fixed header */
    padding-bottom: var(--space-xl);
    overflow: hidden; /* Important for video */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 25, 19, 0.6); /* Darkening overlay using bakery black */
    z-index: 1;
}

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



.hero-content {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    color: var(--color-bg);
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    color: rgba(251, 243, 231, 0.9);
    margin-bottom: var(--space-lg);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-md);
}

/* Number & Date Inputs */
.split-step {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.step-half {
    flex: 1;
}

.number-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 160, 99, 0.3);
    border-radius: 16px;
    overflow: hidden;
    height: 48px; /* Standard mobile touch target */
}

.number-input-group:focus-within,
.date-input-group input:focus,
.input-group textarea:focus,
.input-group input:focus {
    border-color: var(--color-accent);
    outline: none;
}

.num-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--color-text);
    width: 48px;
    height: 100%;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.num-btn:hover {
    background: rgba(0,0,0,0.05);
}

.num-btn:active {
    background: rgba(0,0,0,0.1);
}

#order-size {
    flex: 1;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-text);
    height: 100%;
    width: 100%;
    appearance: none;
    -moz-appearance: textfield;
}

#order-size::-webkit-outer-spin-button,
#order-size::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.date-input-group input, .input-group textarea, .input-group input {
    width: 100%;
    min-height: 48px; /* Standard mobile touch target */
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 160, 99, 0.3);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-text);
    resize: vertical;
    transition: all var(--transition-fast);
}

/* About Section */
.about-section {
    background-color: var(--color-text);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Ctext x='20' y='40' font-size='28' opacity='0.07'%3E%F0%9F%8D%B0%3C/text%3E%3Ctext x='90' y='90' font-size='28' opacity='0.07'%3E%F0%9F%8D%AA%3C/text%3E%3Ctext x='120' y='40' font-size='24' opacity='0.07'%3E%F0%9F%A5%90%3C/text%3E%3Ctext x='40' y='120' font-size='24' opacity='0.07'%3E%F0%9F%A7%81%3C/text%3E%3C/svg%3E");
    background-size: 150px 150px;
    background-position: center;
    color: var(--color-bg);
    text-align: center;
    position: relative;
}

.about-section .section-title {
    color: var(--color-accent-gold);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 1.1rem;
    color: rgba(251, 243, 231, 0.9);
}

/* Order Assistant (Ticket Concept) */
.order-section {
    position: relative;
    background-color: var(--color-bg); /* Fallback */
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

.order-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.order-overlay-warm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 25, 19, 0.5); /* Koyu (dark) filtre, video daha net */
    z-index: 2;
}

.order-container, .order-header {
    position: relative;
    z-index: 3;
}

.order-header .section-title,
.order-header .section-subtitle {
    color: var(--color-bg); /* Koyu zeminde açık renk metin */
}

.order-container {
    padding: 0; /* Full bleed on mobile */
}

.ticket-wrapper {
    max-width: 750px; /* Genişletildi */
    margin: 0 auto;
}

.ticket {
    background-color: #FFFFFF; /* Sıcak, net ve opak beyaz (fırın fişi) */
    color: var(--color-text);
    position: relative;
    padding: var(--space-md);
    
    /* Derin fiziksel gölge */
    box-shadow: 0 20px 40px rgba(33, 25, 19, 0.15), 0 1px 3px rgba(33, 25, 19, 0.05);
}

.ticket-header {
    text-align: center;
    border-bottom: 1px dashed var(--color-accent-gold-light); /* Daha ince çizgi */
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.ticket-logo {
    font-family: var(--font-script);
    font-size: 2rem; /* Biraz küçültüldü */
    color: var(--color-text);
    line-height: 1;
}

.ticket-no {
    font-family: monospace;
    color: var(--color-text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.order-step {
    margin-bottom: var(--space-md); /* Eski haline alıp biraz rahatlatalım */
}

.step-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 6px; /* Biraz boşluk */
    color: var(--color-text-light);
    letter-spacing: 0.5px;
}

/* Chip/Radio Group */
.chip-group {
    display: flex;
    flex-wrap: wrap; /* Mobilde ve dar alanda alta insin, taşmasın */
    gap: 8px;
}

.chip {
    position: relative;
    cursor: pointer;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chip span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.4rem 1.2rem;
    background-color: #FFFFFF;
    border: 1px solid var(--color-accent-gold); /* Fırın konseptine uygun altın border */
    border-radius: 16px; 
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
    user-select: none;
    min-height: 48px;
    white-space: normal; /* Uzun isimler alta insin gerekirse */
}

.chip:hover span {
    background-color: var(--color-bg-alt); /* Hover'da krem */
    color: var(--color-text);
}

.chip input:checked + span {
    background-color: var(--color-accent-fire);
    color: var(--color-bg);
    border-color: var(--color-accent-fire);
    font-weight: 500;
}

/* Input / Textarea */
.input-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-accent-gold-light);
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    resize: vertical;
    min-height: 80px;
}

.input-group textarea:focus {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: -2px;
}

/* Sticky Ticket Footer on Mobile */
.ticket-footer {
    background-color: rgba(255, 255, 255, 0.98);
    padding: var(--space-md);
    border-top: 1px dashed var(--color-accent-gold-light); /* Daha ince çizgi */
    position: sticky;
    bottom: -1.5rem; /* Container padding telafisi */
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    z-index: 10;
}

.live-summary {
    background-color: transparent; /* Kutu görünümünü kaldırdık, metin haline getirdik */
    padding: 0;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    border-left: none; /* Çizgiyi kaldırdık */
    color: var(--color-text-light);
}

.live-summary strong {
    display: inline; /* Alt alta yerine yan yana (daha az yer kaplar) */
    font-family: var(--font-heading);
    margin-right: 4px;
    color: var(--color-text);
}

/* Categories Section */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns mobile */
    gap: 10px;
}

.category-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-accent-gold-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    border-color: var(--color-accent-gold);
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.category-card h3 {
    margin: 0;
    font-size: 1.2rem;
}



/* Contact Section */
.contact-list li {
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
}

.contact-list strong {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
}

.contact-map {
    width: 100%;
    min-height: 250px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-lg);
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: var(--space-lg) 0;
    margin-top: 0; /* Boşluk kaldırıldı */
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md); /* Reduced gap to bring branches closer */
}

/* Redesigned Footer */
.footer-logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0; /* Removed extra margin to bring things closer */
}

.logo-img-footer {
    height: 120px; /* Scaled up 1.5x */
    margin-bottom: var(--space-sm);
}

.footer-subtitle {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.footer-branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 on mobile */
    gap: 16px;
}

.branch-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.branch-card-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square to make images taller and larger */
    object-fit: cover;
    display: block;
    background: #e6e2db;
}

.branch-card-content {
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    text-align: center;
}

.branch-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin: 0;
}

.branch-card-action {
    font-size: 0.7rem;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
}

.branch-card-action:hover {
    text-decoration: underline;
}

.branch-card-phone {
    font-size: 0.7rem;
    color: var(--color-text-light);
    margin-bottom: 2px;
    text-decoration: none;
    display: inline-block;
}

.branch-card-phone:hover {
    color: var(--color-text);
}
.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: var(--color-bg-alt);
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-text);
    color: var(--color-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTopBtn:hover {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

/* Avoid overlapping with sticky ticket footer on mobile */
.order-section.in-view ~ #scrollToTopBtn {
    bottom: 150px; /* Push it up when inside order section */
}


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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive (Desktop) */
@media (min-width: 768px) {
    .header-container {
        height: 200px;
    }
    .logo-img {
        height: 180px;
    }
    .hero {
        padding-top: 240px;
    }
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .order-container {
        padding: 0 var(--space-md);
    }
    .ticket {
        border-radius: var(--radius-md);
        border: 1px solid var(--color-accent-gold-light);
    }

    .ticket-footer {
        position: static;
        box-shadow: none;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .split-step {
        flex-direction: row; /* Masaüstünde yan yana yap */
        align-items: flex-end;
    }
    
    .split-step .step-half {
        flex: 1;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-branches-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 on tablet */
    }
}

/* Desktop for 7 side-by-side */
@media (min-width: 992px) {
    .footer-branches-grid {
        grid-template-columns: repeat(7, 1fr); /* 7 side-by-side */
        gap: 8px; /* Less gap to fit 7 nicely */
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 25, 19, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn var(--transition-normal) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-bg);
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-text);
}

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

.modal-title {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    color: var(--color-text-light);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.modal-product {
    background-color: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    /* Animasyon başlangıcı */
    opacity: 0;
    transform: translateY(20px);
}

.modal-product.animate {
    opacity: 1;
    transform: translateY(0);
}

.modal-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.modal-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.modal-product-info {
    padding: var(--space-md);
    text-align: center;
}

.modal-product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

@media (max-width: 600px) {
    .modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .modal-product img {
        height: 120px;
    }
    
    .modal-product-info {
        padding: var(--space-sm);
    }
    
    .modal-product-name {
        font-size: 0.95rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

/* Hızlı Sipariş Kartları */
.quick-orders-wrapper {
    max-width: 750px;
    margin: 0 auto var(--space-lg);
    padding: 0 var(--space-md);
}

.quick-orders-title {
    font-family: var(--font-heading);
    color: var(--color-bg);
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
    text-align: left;
}

.quick-orders-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quick-order-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform var(--transition-fast);
}

.quick-order-card:hover {
    transform: translateY(-2px);
}

.quick-order-content {
    display: flex;
    flex-direction: column;
}

.quick-order-title {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
}

.quick-order-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.quick-order-icon {
    font-size: 1.2rem;
    color: #25D366; /* WhatsApp Yeşili */
}

.quick-order-card.custom-card {
    background-color: var(--color-accent-gold);
}

.quick-order-card.custom-card .quick-order-title,
.quick-order-card.custom-card .quick-order-desc {
    color: var(--color-text);
}
.quick-order-card.custom-card .quick-order-icon {
    color: var(--color-text);
}

#detailed-form-section {
    scroll-margin-top: 120px;
}

/* Branch List Modal Styles */
.branch-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}
.branch-list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
    gap: 12px;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.branch-list-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    z-index: 1;
    transition: all 0.2s ease;
}
.branch-list-item > * {
    position: relative;
    z-index: 2;
}
.branch-list-item:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}
.branch-list-item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}
.branch-list-item i {
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}
.branch-list-item .fa-whatsapp {
    color: #25D366; /* Keep whatsapp green slightly overriding white, but maybe just let it be green. Actually, white whatsapp icon looks more premium on photos. Let's make it white too. */
}


@media (max-width: 480px) {
    .branch-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .branch-list-item {
        padding: 10px 5px;
        font-size: 0.85rem;
        gap: 8px;
    }
    .branch-list-item i {
        font-size: 1.6rem;
    }
}

/* Minimal Must Try Section */
.minimal-must-try {
    padding: 40px 0;
    background-color: transparent;
}
.must-try-minimal-card {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 100px; /* pill shape */
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.must-try-minimal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.must-try-minimal-card .must-try-video-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-accent-gold);
}
.must-try-minimal-card .must-try-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.must-try-minimal-card .must-try-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-right: 25px;
}
.must-try-badge {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-gold);
    font-weight: 700;
    margin-bottom: 6px;
}
.must-try-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
}
@media (max-width: 768px) {
    .must-try-minimal-card {
        max-width: 90%;
        gap: 15px;
        padding: 12px;
        border-radius: 60px;
    }
    .must-try-minimal-card .must-try-video-wrapper {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    .must-try-title {
        font-size: 1.3rem;
    }
    .must-try-badge {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
}
@media (max-width: 480px) {
    .must-try-minimal-card {
        max-width: 95%;
        border-radius: 50px;
    }
    .must-try-minimal-card .must-try-video-wrapper {
        width: 70px;
        height: 70px;
    }
    .must-try-title {
        font-size: 1.15rem;
    }
}

/* Special Cakes Marquee Section */
.special-cakes-section {
    padding: 30px 0;
    background-color: var(--color-bg);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 15px;
    padding-left: 15px;
    animation: marquee 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

.cake-card {
    flex: 0 0 auto;
    width: 220px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cake-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cake-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .cake-card {
        width: 160px;
        height: 160px;
    }
    .special-cakes-section {
        padding: 20px 0;
    }
}

/* Tray Products Section */
.tray-products-section {
    padding: 60px 0;
    background-color: #fdfaf6;
}

.tray-products-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tray-products-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tray-products-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tray-products-image:hover img {
    transform: scale(1.03);
}

.tray-products-text {
    flex: 1;
}

.tray-products-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.tray-products-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .tray-products-container {
        flex-direction: column;
    }
    .tray-products-text .section-title {
        text-align: center;
    }
    .tray-products-text p {
        text-align: center;
    }
}

/* Tekirdağ Fiyatsız Menü (hide-prices) */
body.hide-prices .menu-item-price {
    display: none !important;
}
