/**
 * KONYALI HACI USTA - ANA STIL DOSYASI
 * UI/UX Pro Max Skill ile yenilenmiş premium tasarım sistemi
 */
@import url('//db.onlinewebfonts.com/c/a20da803a27914b2774532877e961745?family=TangoW01-Regular');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==================== PREMIUM DESIGN TOKENS ==================== */
:root {
    /* === Renk Paleti — Warm Elevated Classic === */
    --primary-color: #C84B11;      /* Deep Amber Red — premium marka rengi */
    --primary-dark: #A33A0A;       /* Koyu hover tonu */
    --primary-light: #F5E8DF;      /* Açık arka plan tonu */
    --secondary-color: #D4AF37;    /* Antik Altın — korunuyor */
    --secondary-light: #FBF3D5;    /* Altın açık ton */
    --accent-color: #1A3C2A;       /* Forest Green — fırın/doğal */
    --accent-mid: #2A6041;         /* Orta yeşil */
    --danger-color: #C0392B;       /* Kırmızı */
    --dark-color: #1C1008;         /* Deep Espresso */
    --text-primary: #1C1008;       /* Ana metin */
    --text-secondary: #4A3728;     /* İkincil metin */
    --text-muted: #7A6A5A;         /* Soluk metin */
    --surface: #FFFFFF;            /* Kart yüzeyi */
    --bg-cream: #FBF7F0;           /* Warm Cream zemin */
    --bg-warm: #F5EDE3;            /* Hafif sıcak zemin */
    --light-color: #F5EDE3;        /* Geriye uyumluluk */
    --gray-color: #7A6A5A;         /* Geriye uyumluluk */
    --light-gray: #F5F0EB;

    /* === Spacing & Geometry === */
    --border-radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* === Shadows — yumuşak katmanlı gölgeler === */
    --shadow-xs: 0 1px 3px rgba(28,16,8,0.06), 0 1px 2px rgba(28,16,8,0.04);
    --shadow-sm: 0 2px 8px rgba(28,16,8,0.08), 0 1px 3px rgba(28,16,8,0.05);
    --box-shadow: 0 4px 16px rgba(28,16,8,0.08), 0 1px 4px rgba(28,16,8,0.04);
    --shadow-md: 0 8px 24px rgba(28,16,8,0.10), 0 2px 8px rgba(28,16,8,0.06);
    --shadow-lg: 0 16px 40px rgba(28,16,8,0.12), 0 4px 12px rgba(28,16,8,0.06);
    --shadow-hover: 0 20px 48px rgba(200,75,17,0.16), 0 4px 16px rgba(28,16,8,0.08);

    /* === Transitions — smooth & purposeful === */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* === Focus visible === */
:focus-visible {
    outline: 2.5px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.main-header {
    background: var(--primary-color);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(200,75,17,0.25), 0 1px 4px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 20px rgba(255,255,255,0.15);
    letter-spacing: 0.3px;
    transition: opacity 0.2s ease;
}

.logo h1:hover {
    opacity: 0.92;
}

.logo .tagline {
    font-size: 0.82rem;
    opacity: 0.85;
    display: block;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.2px;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.18);
    color: white;
}

.main-nav a.active {
    background: rgba(255,255,255,0.25);
    color: white;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-phone,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-phone {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-phone svg,
.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-phone:hover,
.btn-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.btn-phone:active,
.btn-whatsapp:active {
    transform: scale(0.95);
}

/* ==================== TELEFON / WA POPUP ==================== */
.phone-popup {
    position: absolute;
    top: calc(100% + 12px);
    right: -10px;
    min-width: 330px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.phone-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.phone-popup::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
    border-radius: 2px;
    z-index: -1;
}

.phone-popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18), 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}

.phone-popup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.phone-popup-icon.phone-icon-call {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
}

.phone-popup-icon.phone-icon-wa {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #128C7E;
}

.phone-popup-info {
    flex: 1;
    min-width: 0;
}

.phone-popup-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 2px;
}

.phone-popup-number {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.phone-popup-number:hover {
    color: var(--primary-color);
}

.phone-popup-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.phone-popup-action.phone-action-call {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.phone-popup-action.phone-action-call:hover {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(46,125,50,0.3);
}

.phone-popup-action.phone-action-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.phone-popup-action.phone-action-wa:hover {
    background: linear-gradient(135deg, #20C05C 0%, #0E7A6F 100%);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.phone-popup-action svg {
    width: 16px;
    height: 16px;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .phone-popup {
        right: -20px;
        min-width: 260px;
    }
    .phone-popup::before {
        right: 28px;
    }
    .phone-popup-content {
        padding: 12px 14px;
        gap: 10px;
    }
    .phone-popup-number {
        font-size: 0.95rem;
    }
}


/* ==================== BUTONLAR ==================== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #6B0000;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.95rem;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

/* ==================== HERO SECTION ==================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}


/* ==================== URUN KARTLARI ==================== */
.section {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 44px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid rgba(28,16,8,0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200,75,17,0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.product-image .badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-image .badges .badge {
    position: static;
    display: inline-block;
}

.badge.kampanya {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.badge.indirim {
    background: var(--danger-color);
    color: white;
}

.product-info {
    padding: 20px 20px 22px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0.75;
}

.new-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--danger-color);
    letter-spacing: -0.3px;
}

.btn-add-cart {
    width: 100%;
    padding: 11px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(200,75,17,0.25);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #7A2A06 100%);
    box-shadow: 0 4px 14px rgba(200,75,17,0.38);
    transform: translateY(-1px);
}

.btn-add-cart:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(200,75,17,0.2);
}

/* ==================== OZELLIKLER ==================== */
.features {
    background: var(--bg-warm);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 36px 28px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(28,16,8,0.05);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200,75,17,0.12);
}

.feature-item:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: var(--primary-light);
    border-radius: 16px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.08);
}

.feature-item h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: linear-gradient(160deg, #1C1008 0%, #2C1A0E 100%);
    color: rgba(255,255,255,0.88);
    padding: 56px 0 24px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    opacity: 0.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 44px;
    margin-bottom: 36px;
}

.footer-col h4.dynamic-brand-text {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-family: 'TangoW01-Regular', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    opacity: 1;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.9;
}

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

.footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    line-height: 2.1;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom .dynamic-brand-text {
    color: var(--secondary-color);
    font-family: 'TangoW01-Regular', sans-serif;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ==================== SEPET (SABIT) ==================== */
.cart-floating {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(200,75,17,0.35), 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.cart-floating:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 32px rgba(200,75,17,0.45), 0 4px 12px rgba(0,0,0,0.2);
}

.cart-floating:active {
    transform: translateY(-1px) scale(1.01);
}

.cart-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.cart-count {
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.cart-total {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

/* ==================== SIPARIS SAYFASI ==================== */
.siparis-page {
    padding: 40px 0;
}

.siparis-layout {
    display: grid;
    grid-template-columns: 1fr; /* Cart is now off-canvas */
    gap: 40px;
}

.page-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.page-desc {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quantity-selector button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
}

.quantity-selector span {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* Sağdan Açılan Sepet (Slide-out Cart) Yan Panel */
.siparis-cart {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 10000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.siparis-cart.open {
    right: 0;
}

/* Sepet Arkaplan Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-overlay.open {
    display: block;
    opacity: 1;
}

/* Sepeti Kapatma Butonu */
.close-cart-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10001;
}

.cart-sticky {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
}

.cart-sticky h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--gray-color);
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.8rem;
}

.cart-summary {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    padding-top: 10px;
    margin-top: 10px;
}

.indirim-kodu {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.indirim-kodu input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.siparis-notu textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    resize: vertical;
    min-height: 80px;
    margin-bottom: 20px;
}

.odeme-secimi,
.adres-secimi {
    margin-bottom: 20px;
}

.odeme-secimi h3,
.adres-secimi h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.adres-radio {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.adres-card {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.adres-radio input:checked + .adres-card {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.adres-varsayilan-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 5px;
}

.misafir-adres {
    margin-top: 20px;
}

.misafir-adres input,
.misafir-adres select,
.misafir-adres textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.uyelik-bilgi {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.uyelik-bilgi ul {
    margin: 10px 0;
    padding-left: 20px;
}

.uyelik-bilgi li {
    margin-bottom: 5px;
}

.btn-siparis-ver {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-siparis-ver:hover {
    background: #1b5e20;
}

/* ==================== MENU SAYFASI ==================== */
.menu-page {
    padding: 40px 0;
}

.menu-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.menu-list {
    max-width: 800px;
    margin: 0 auto;
}

.menu-category-section {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    align-items: center;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

.menu-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.menu-item-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.item-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 5px;
}

.menu-item-price {
    text-align: right;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.menu-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* ==================== ILETISIM SAYFASI ==================== */
.contact-page {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.subeler-section h2,
.contact-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.sube-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.sube-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.sube-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sube-adres,
.sube-phone {
    color: var(--gray-color);
    margin-bottom: 5px;
}

.min-siparis {
    color: var(--danger-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 10px 0;
}

.btn-harita {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: var(--light-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.teslimat-btn {
    float: right;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.btn-call,
.btn-whatsapp-lg {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
}

.btn-call {
    background: var(--accent-color);
    color: white;
}

.btn-whatsapp-lg {
    background: #25D366;
    color: white;
}

/* Teslimat Modal */
.teslimat-ilce {
    margin-bottom: 20px;
}

.teslimat-ilce h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.semt-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.semt-tag {
    background: var(--light-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.semt-tag small {
    color: var(--danger-color);
    display: block;
    font-size: 0.75rem;
}

/* ==================== UYE GIRISI ==================== */
.auth-page {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    min-height: calc(100vh - 200px);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.auth-box h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-group.checkbox a {
    color: var(--primary-color);
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-color);
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
}

.auth-message.success {
    background: #e8f5e9;
    color: var(--accent-color);
}

.auth-message.error {
    background: #ffebee;
    color: var(--danger-color);
}

/* ==================== UYE PANELI ==================== */
.uye-panel {
    padding: 40px 0;
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.panel-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.panel-sidebar {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.user-info {
    background: var(--primary-color);
    color: white;
    padding: 25px;
}

.user-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.user-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.panel-nav {
    padding: 15px 0;
}

.panel-nav a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.panel-nav a:hover,
.panel-nav a.active {
    background: var(--light-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.panel-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.panel-section {
    display: none;
}

.panel-section.active {
    display: block;
}

.panel-section h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.siparis-card {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.siparis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.siparis-tarih {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-left: 15px;
}

.durum-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.durum-yeni { background: #e3f2fd; color: #1976d2; }
.durum-onaylandi { background: #e8f5e9; color: #388e3c; }
.durum-hazirlaniyor { background: #fff3e0; color: #f57c00; }
.durum-yolda { background: #fce4ec; color: #c2185b; }
.durum-teslim_edildi { background: #e8f5e9; color: #2e7d32; }
.durum-iptal { background: #ffebee; color: #c62828; }

.siparis-detay {
    margin-bottom: 15px;
}

.siparis-detay p {
    margin-bottom: 5px;
    color: var(--gray-color);
}

.siparis-actions {
    display: flex;
    gap: 10px;
}

.adres-form-panel {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.adres-form-panel h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.adres-card-panel {
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.adres-card-panel.varsayilan {
    border-color: var(--accent-color);
    background: #f1f8e9;
}

.adres-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.adres-baslik .badge {
    position: static;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
}

.adres-actions {
    margin-top: 15px;
}

.panel-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.panel-message.success {
    background: #e8f5e9;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.panel-message.error {
    background: #ffebee;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

/* ==================== MODAL ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content.modal-large {
    max-width: 700px;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-close {
    margin-top: 20px;
    padding: 10px 30px;
    background: var(--gray-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.sube-option {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.sube-option:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

/* ==================== YARDIMCI SINIFLAR ==================== */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--gray-color);
}

.no-data {
    text-align: center;
    padding: 40px;
    color: var(--gray-color);
    font-style: italic;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .siparis-layout {
        grid-template-columns: 1fr;
    }

    .cart-sticky {
        position: relative;
        top: 0;
    }

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

    .panel-layout {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-header .container {
        flex-wrap: nowrap;
    }

    .logo h1 {
        font-size: 1.4rem;
        color: #FFFFFF !important;
        text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 16px rgba(255,255,255,0.12) !important;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-price {
        text-align: center;
    }

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

    .cart-floating {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .cart-total {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

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

    .auth-box {
        padding: 25px;
    }

    .category-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
}

/* ==================== İLETİŞİM - ŞUBE KARTLARI ==================== */
.subeler-section h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

.sube-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.sube-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left-color: var(--primary-color);
}

.sube-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.sube-adres, .sube-phone {
    color: var(--gray-color);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.sube-saat {
    background: #f0f9f0;
    color: #2d6a2d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin: 8px 0;
}

.sube-saat.kapali {
    background: #fff0f0;
    color: #c0392b;
}

.sube-saatler-detay {
    margin-top: 10px;
}

.sube-saatler-detay summary {
    cursor: pointer;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 600;
    user-select: none;
    padding: 4px 0;
}

.saat-tablo {
    margin-top: 8px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.saat-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 12px;
    font-size: 0.88rem;
    border-bottom: 1px solid #f5f5f5;
    background: white;
}

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

.saat-row.kapali {
    background: #fff8f8;
    color: #c0392b;
}

.min-siparis {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 4px;
}

.btn-harita {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 8px;
}

.btn-harita:hover {
    background: var(--secondary-color);
    color: white;
}

.teslimat-btn {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

/* ==================== ÜYE PANELİ - İYİLEŞTİRİLMİŞ ==================== */
.adres-form-panel {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.adres-form-panel h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.adres-form-panel input,
.adres-form-panel select,
.adres-form-panel textarea {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: white;
}

.adres-form-panel input:focus,
.adres-form-panel select:focus,
.adres-form-panel textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

.adres-card-panel {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 18px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.adres-card-panel.varsayilan {
    border-color: var(--secondary-color);
    background: #fffdf0;
}

.adres-card-panel:hover {
    box-shadow: var(--box-shadow);
}

.adres-baslik {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.adres-baslik strong {
    font-size: 1rem;
    color: var(--dark-color);
}

.badge {
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.adres-actions {
    margin-top: 10px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.panel-section h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* ==================== ANA SAYFA FEATURED SLIDER ==================== */
.featured-slider-section {
    background: var(--bg-cream);
    padding: 36px 0 28px;
    position: relative;
    overflow: hidden;
}

.fslider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Kaydırma Görünümü */
.fslider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
    background: #f0ebe3;
}

/* Slide Track: Tüm slides yan yana */
.fslider-track {
    display: flex;
    position: relative;
    width: 100%;
}

/* Her bir Slide */
.fslider-slide {
    min-width: 100%;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.98);
}

.fslider-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.fslider-link {
    display: block;
    position: relative;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    line-height: 0;
}

.fslider-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.fslider-slide.active img:hover {
    transform: scale(1.015);
}

/* Başlık Overlay (Caption) */
.fslider-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    border-radius: 0 0 14px 14px;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Ok Butonları */
.fslider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.6);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    user-select: none;
}

.fslider-arrow:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 24px rgba(200,75,17,0.35);
    transform: translateY(-50%) scale(1.08);
    border-color: transparent;
}

.fslider-prev {
    left: 8px;
}

.fslider-next {
    right: 8px;
}

/* Nokta Göstergeler */
.fslider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    padding: 0 60px;
}

.fslider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28,16,8,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.fslider-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 4px;
}

.fslider-dot:hover {
    background: rgba(200,75,17,0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .fslider-wrapper {
        padding: 0 44px;
    }
    .fslider-slide img {
        height: 280px;
    }
    .fslider-caption {
        font-size: 1rem;
        padding: 16px 20px;
    }
    .fslider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }
    .fslider-prev { left: 4px; }
    .fslider-next { right: 4px; }
}

@media (max-width: 600px) {
    .fslider-wrapper {
        padding: 0 36px;
    }
    .fslider-slide img {
        height: 200px;
    }
    .fslider-caption {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
    .fslider-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    .fslider-dots {
        padding: 0 36px;
    }
}

/* ==================== HIZLI EYLEM BUTONLARI (SLIDER ALTI) ==================== */
.featured-slider-section {
    padding-bottom: 0;
    margin-bottom: 0;
}

.action-buttons-section {
    background: var(--bg-cream);
    padding: 44px 0;
}

.action-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--dark-color);
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.action-btn:hover::before {
    transform: scaleX(1);
}

.action-btn .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    flex-shrink: 0;
    background: rgba(255, 94, 0, 0.1);
    border-radius: 12px;
}

.action-btn .icon svg {
    width: 28px;
    height: 28px;
    display: block;
    stroke: currentColor;
}

.action-btn:hover .icon {
    transform: scale(1.1) translateY(-2px);
    background: var(--primary-color);
    color: white;
}

.action-btn .text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.action-btn .text strong {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 2px;
    font-weight: 800;
    line-height: 1.2;
}

.action-btn .text span {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.2;
}

.action-btn .arrow {
    font-size: 1.5rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.action-btn:hover .arrow {
    transform: translateX(5px);
    color: var(--primary-color);
}

.action-btn.action-btn-primary .text strong {
    color: var(--primary-color);
}

/* ==================== PREMIUM ABOUT SECTION ==================== */
.premium-about-section {
    padding: 24px 20px 88px;
    background: var(--bg-cream);
    position: relative;
}

.premium-content {
    max-width: 820px;
    margin: 0 auto;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--secondary-light);
    color: #8B6914;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    border: 1px solid rgba(212,175,55,0.3);
}

.premium-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.premium-title {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.premium-title .highlight {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.premium-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(200,75,17,0.12);
    z-index: -1;
    border-radius: 4px;
}

.premium-desc {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.premium-desc strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .slider-overlap-buttons {
        flex-direction: column;
        top: 30px;
        margin-top: -30px;
        gap: 16px;
    }
    .overlap-btn {
        max-width: 100%;
        padding: 16px 20px;
    }
    .premium-title {
        font-size: 2.2rem;
    }
    .premium-desc {
        font-size: 1.1rem;
    }
    .featured-slider-section {
        margin-bottom: 120px; /* Butonların yüksekliğine göre ekstra boşluk */
    }
}

/* ==================== MODAL ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalSlideIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

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

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 1;
}

.modal-close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

/* ==================== ŞUBE BİLGİ MODALI ==================== */
.modal-sube-info {
    max-width: 540px;
    padding: 0;
    overflow-y: auto;
}

.sube-modal-header {
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-bottom: 1px solid rgba(255,152,0,0.15);
}

.sube-modal-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1;
}

.sube-modal-header h2 {
    font-size: 1.35rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.sube-modal-adres-bilgi {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.5;
}

.sube-modal-adres-bilgi strong {
    color: var(--primary-color);
}

.sube-modal-body {
    padding: 20px 28px 28px;
}

.sube-modal-bilgi-mesaj {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.92rem;
    color: #1565C0;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.5;
    border-left: 4px solid #1976D2;
}

.sube-modal-alt-baslik {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.sube-modal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sube-info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    background: #FAFAFA;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.2s;
}

.sube-info-card:hover {
    background: #FFF8E1;
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(255,94,0,0.1);
}

.sube-info-left {
    flex: 1;
    min-width: 0;
}

.sube-info-ad {
    display: block;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.sube-info-adres {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

.sube-info-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.sube-info-tel-btn,
.sube-info-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.sube-info-tel-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.sube-info-tel-btn:hover {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(46,125,50,0.3);
}

.sube-info-wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.sube-info-wa-btn:hover {
    background: linear-gradient(135deg, #20C05C 0%, #0E7A6F 100%);
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.sube-info-tel-btn svg,
.sube-info-wa-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Modal Mobil Uyumluluk */
@media (max-width: 600px) {
    .modal {
        padding: 10px;
    }
    .modal-sube-info {
        max-width: 100%;
    }
    .sube-modal-header {
        padding: 24px 20px 16px;
    }
    .sube-modal-body {
        padding: 16px 18px 22px;
    }
    .sube-info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sube-info-right {
        flex-direction: row;
        width: 100%;
    }
    .sube-info-tel-btn,
    .sube-info-wa-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ==================== KONYALI HACI USTA MARKA TYPOGRAPHY ==================== */
.logo h1, 
.footer-col:first-child h4,
.brand-text {
    font-family: 'TangoW01-Regular', sans-serif !important;
    letter-spacing: 0.3px;
}

.logo h1 {
    font-size: 2rem !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 20px rgba(255,255,255,0.15) !important;
}

.footer-col:first-child h4 {
    font-size: 1.5rem !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    color: var(--secondary-color) !important;
}

/* ==================== PREMIUM KAMPANYA/SECTION ZEMIN RENKLERİ ==================== */
.kampanyalar {
    background: var(--bg-cream);
}

.one-cikanlar {
    background: var(--surface);
}

.indirimler {
    background: var(--bg-cream);
}

/* Section aralarına hafif ayraç çizgisi */
.section + .section {
    border-top: 1px solid rgba(28,16,8,0.05);
}

/* Badge güncellemeleri */
.badge.kampanya {
    background: linear-gradient(135deg, var(--secondary-color), #C49B2A);
    color: #1C1008;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 4px 10px;
}

.badge.indirim {
    background: linear-gradient(135deg, var(--danger-color), #A0231A);
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 4px 10px;
}

/* Genel buton iyileştirmeleri */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 3px 10px rgba(200,75,17,0.3);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #7A2A06 100%);
    box-shadow: 0 5px 18px rgba(200,75,17,0.4);
    transform: translateY(-2px);
    color: white;
}

/* Form inputs iyileştirme */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(200,75,17,0.12);
}

/* Auth page arkaplan */
.auth-page {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

/* Uye panel arkaplan */
.uye-panel {
    background: var(--bg-cream);
}

/* Loading animasyonu */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

