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

:root {
    --primary: #FF8000;
    --primary-dark: #E67300;
    --primary-light: #FF9933;
    --secondary: #764ba2;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-focus: #FF8000;
    --bg: #f9fafb;
    --bg-white: #ffffff;
    --error: #ef4444;
    --error-bg: #fee2e2;
    --success: #10b981;
    --success-bg: #d1fae5;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --vh: 1vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.fill-1 {
    font-variation-settings: 'FILL' 1;
}

/* Hero Section - Full Width (ordersweb gibi efektli) */
.hero-section-full {
    width: 100%;
    min-height: auto;
    background: linear-gradient(135deg, #FF8000 0%, #FF6B00 25%, #FFA500 50%, #FFD700 75%, #FF8000 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 40px 30px 40px;
    padding-top: max(30px, env(safe-area-inset-top));
    position: relative;
    overflow: hidden;
    flex: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section-full::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.hero-section-full::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
}

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

.hero-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo .material-symbols-outlined {
    font-size: 64px;
    color: white;
    font-variation-settings: 'FILL' 1;
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.4));
        text-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 255, 255, 0.6);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Desktop ve Mobil görünüm kontrolü */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: flex !important;
}

@media (min-width: 481px) {
    .desktop-only {
        display: flex !important;
    }
    
    .desktop-only.hero-content-sections {
        display: grid !important;
    }
    
    .mobile-only {
        display: none !important;
    }

    .hero-buttons {
        display: none !important;
    }

    .mobile-only .hero-buttons,
    .mobile-only.hero-buttons {
        display: none !important;
    }

    .btn-about,
    .btn-delivery {
        display: none !important;
    }

    #aboutBtn,
    #deliveryBtn {
        display: none !important;
    }

    .hero-mobile-map-container {
        display: none !important;
    }
}

.hero-buttons {
    display: none; /* Default gizli */
    gap: 12px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0 auto;
}

.mobile-only .hero-buttons,
.mobile-only.hero-buttons {
    display: flex !important;
}

/* Desktop görünümde içerik bölümleri */
.hero-content-sections {
    margin-top: 24px;
    margin-bottom: 0;
    display: none; /* Mobilde gizli */
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content-sections {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
}

.hero-about-section,
.hero-delivery-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.hero-about-content p,
.hero-delivery-content p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.hero-about-contact {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--border);
}

.hero-about-contact p {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.hero-about-contact a {
    color: var(--primary);
    text-decoration: none;
}

.hero-about-contact a:hover {
    text-decoration: underline;
}

.hero-map-container {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    margin-top: 12px;
    overflow: hidden;
}

/* Mobil harita container */
.hero-mobile-map-container {
    display: none; /* Default gizli */
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
}

.hero-mobile-map {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-login-button {
    margin-top: 40px;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
    display: none; /* Mobilde gizli, desktop-only ile kontrol */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.desktop-only.hero-login-button {
    display: flex;
}

.hero-login-button .btn-login {
    padding: 16px 56px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 0.6s both;
    min-width: 200px;
    justify-content: center;
}

.hero-login-button .btn-login .material-symbols-outlined {
    font-size: 24px;
}



.btn-about,
.btn-delivery,
.btn-aktionen,
.btn-login {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-about:hover,
.btn-delivery:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), #ff9500);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 12px rgba(255, 128, 0, 0.3);
    border-radius: 10px;
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--primary-dark), #e67300);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(255, 128, 0, 0.4);
}

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

.btn-aktionen {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
}

.btn-aktionen:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-aktionen-desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 56px;
    font-size: 17px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.7s both;
    min-width: 200px;
}

.btn-aktionen-desktop .material-symbols-outlined:first-child {
    font-size: 24px;
}

.btn-aktionen-desktop .material-symbols-outlined:last-child {
    font-size: 20px;
    opacity: 0.8;
}

.btn-aktionen-desktop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-aktionen-desktop:active {
    transform: translateY(-1px);
}


/* Partners Section */
.partners-section {
    width: 100%;
    background: #f1f5f9;
    padding: 20px 20px;
    border-top: 2px solid #e2e8f0;
    margin-top: auto;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    text-align: center;
    margin-bottom: 16px;
}

.brands-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-brands 40s linear infinite;
    width: fit-content;
    will-change: transform;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    min-width: 100px;
}

.brand-placeholder {
    background: white;
    padding: 10px 16px;
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 80px;
}

.brand-item img {
    max-width: 100px;
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
    opacity: 1;
}

.brand-item:hover .brand-placeholder {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

/* About Modal */
.about-modal,
.delivery-modal,
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.about-modal.show,
.delivery-modal.show,
.login-modal.show {
    display: flex;
}

.about-modal-content,
.delivery-modal-content,
.login-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease-out;
}

.delivery-modal-content {
    max-width: 1000px;
}

.login-modal-content {
    max-width: 480px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.about-modal-close,
.delivery-modal-close,
.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001;
}

.about-modal-close:hover,
.delivery-modal-close:hover,
.login-modal-close:hover {
    background: var(--bg);
    color: var(--text-dark);
}

.about-modal-content h2,
.delivery-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Login Modal Styles */
.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.login-modal-logo .material-symbols-outlined {
    font-size: 40px;
    color: var(--primary);
}

.login-modal-logo h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.login-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-gray);
    margin: 0;
}

.login-form-modal {
    width: 100%;
}

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

.form-group-modal label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group-modal input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    min-height: 44px;
}

.form-group-modal input:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(255, 128, 0, 0.1);
}

.password-wrapper-modal {
    position: relative;
}

.password-wrapper-modal input {
    padding-right: 50px;
}

.toggle-password-modal {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.toggle-password-modal:hover {
    color: var(--primary);
}

.form-options-modal {
    margin-bottom: 20px;
}

.remember-me-modal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

.remember-me-modal input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.login-error-message {
    display: none;
    background: var(--error-bg);
    color: var(--error);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.login-error-message.show {
    display: block;
}

.login-button-modal {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: white;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: var(--shadow);
}

.login-button-modal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.login-button-modal:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-footer-modal {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}

.login-info-box {
    background: var(--bg);
    border-radius: 10px;
    padding: 16px;
}

.login-info-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.login-info-text {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.login-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 0;
    min-height: 32px;
    -webkit-tap-highlight-color: transparent;
}

.login-contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.login-contact-link .material-symbols-outlined {
    font-size: 18px;
}

.about-content {
    color: var(--text-gray);
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 15px;
}

.about-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}

.about-contact p {
    margin-bottom: 12px;
    font-size: 14px;
}

.about-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.about-contact a:hover {
    text-decoration: underline;
}

/* Delivery Modal Description */
.delivery-description {
    margin-bottom: 20px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.delivery-description p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Map Styles */
#map,
#hero-map {
    z-index: 1;
}

#hero-map {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    margin-top: 12px;
}

.custom-zone-icon {
    background: transparent !important;
    border: none !important;
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-family: 'Inter', sans-serif;
}

.leaflet-container {
    font-family: 'Inter', sans-serif;
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) {
    .hero-login-button {
        flex-direction: row;
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section-full {
        padding: 30px 40px 50px 40px;
        padding-top: max(30px, env(safe-area-inset-top));
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-logo .material-symbols-outlined {
        font-size: 56px;
    }
    
    .hero-content-sections {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    
    .hero-map-container {
        height: 350px;
    }
}

/* Küçük Tablet ve Büyük Mobil (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-section-full {
        min-height: auto;
        padding: 30px 30px 50px 30px;
        padding-top: max(30px, env(safe-area-inset-top));
    }

    .hero-title {
        font-size: 42px;
    }
}

/* Mobil (320px - 480px) */
@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .hero-section-full {
        min-height: auto;
        padding: 30px 20px 40px 20px;
        padding-top: max(30px, env(safe-area-inset-top));
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }

    .hero-logo {
        margin-bottom: 0;
        display: inline-flex;
        margin-right: 14px;
        vertical-align: middle;
    }

    .hero-logo .material-symbols-outlined {
        font-size: 44px;
        animation: float 3s ease-in-out infinite;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 0;
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
        margin-top: 12px;
        clear: both;
        display: block;
    }

    .hero-description {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-mobile-map-container {
        display: block !important;
        margin-top: 18px;
        margin-bottom: 16px;
        padding: 0 20px;
    }

    .hero-mobile-map {
        height: 240px;
        border-radius: 14px;
    }

    .mobile-only .hero-buttons,
    .mobile-only.hero-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-top: 24px;
        justify-content: center;
        padding: 0 20px;
    }
    
    .hero-content-sections {
        display: none !important;
    }
    
    .desktop-only.hero-buttons,
    .desktop-only.hero-login-button {
        display: none !important;
    }
    

    .btn-about,
    .btn-delivery,
    .btn-aktionen,
    .btn-login,
    .btn-login-mobile {
        width: 100%;
        padding: 10px 12px;
        font-size: 12.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-height: 44px;
        height: 44px;
        border-radius: 10px;
        font-weight: 600;
    }

    .btn-about .material-symbols-outlined,
    .btn-delivery .material-symbols-outlined,
    .btn-aktionen .material-symbols-outlined,
    .btn-login .material-symbols-outlined {
        font-size: 18px;
    }
    
    .btn-about span:not(.material-symbols-outlined),
    .btn-delivery span:not(.material-symbols-outlined),
    .btn-aktionen span:not(.material-symbols-outlined),
    .btn-login span:not(.material-symbols-outlined) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-about {
        order: 1 !important;
    }

    .btn-delivery {
        order: 2 !important;
    }

    .btn-login,
    .btn-login-mobile {
        order: 3 !important;
    }
    
    .btn-aktionen {
        order: 4 !important;
    }

    .login-modal-content {
        padding: 16px 14px;
        max-width: 100%;
        margin: 6px;
        max-height: 97vh;
        overflow-y: auto;
    }

    .login-modal-header {
        margin-bottom: 16px;
    }

    .login-modal-logo {
        margin-bottom: 10px;
        gap: 8px;
    }

    .login-modal-logo .material-symbols-outlined {
        font-size: 30px;
    }

    .login-modal-logo h2 {
        font-size: 20px;
    }

    .login-modal-header h3 {
        font-size: 15px;
    }

    .form-group-modal {
        margin-bottom: 12px;
    }

    .form-group-modal label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .form-group-modal input {
        font-size: 16px; /* iOS zoom önleme */
        padding: 9px 12px;
        min-height: 40px;
        border-radius: 8px;
    }

    .password-wrapper-modal input {
        padding-right: 45px;
    }

    .login-button-modal {
        padding: 11px;
        font-size: 14px;
        min-height: 42px;
        border-radius: 8px;
    }

    .login-footer-modal {
        margin-top: 14px;
        padding-top: 14px;
    }

    .login-info-box {
        padding: 10px;
        border-radius: 8px;
    }

    .login-info-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .login-info-text {
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .login-contact-links {
        gap: 6px;
        flex-direction: column;
    }

    .login-contact-link {
        padding: 7px 10px;
        font-size: 11px;
    }

    .language-selector {
        margin-top: 14px;
        padding-top: 14px;
    }

    .language-selector-label {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .language-selector-dropdown {
        padding: 9px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .login-modal-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 26px;
    }

    .login-error-message {
        padding: 9px 10px;
        font-size: 12px;
        margin-bottom: 14px;
        border-radius: 8px;
    }

    .toggle-password-modal {
        min-width: 38px;
        min-height: 38px;
        right: 10px;
    }

    .toggle-password-modal .material-symbols-outlined {
        font-size: 19px;
    }

    .form-options-modal {
        margin-bottom: 14px;
    }

    .remember-me-modal {
        font-size: 12px;
    }

    .remember-me-modal input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .about-modal-content,
    .delivery-modal-content {
        padding: 24px 20px;
        max-width: 100%;
        margin: 10px;
        max-height: 95vh;
    }

    .about-modal-content h2,
    .delivery-modal-content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .about-content p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .about-contact {
        margin-top: 20px;
        padding-top: 16px;
    }

    .about-contact p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .delivery-description {
        margin-bottom: 16px;
        padding: 12px;
    }

    .delivery-description p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-modal-close,
    .delivery-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    #map {
        height: 400px !important;
        margin-top: 12px;
    }

    .partners-section {
        padding: 16px 12px;
    }

    .partners-title {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .brand-item {
        min-width: 80px;
        padding: 0 0.5rem;
    }

    .brand-placeholder {
        padding: 8px 12px;
        font-size: 10px;
        min-width: 70px;
    }

    .brand-item img {
        max-width: 70px;
        height: 30px;
    }

    .about-modal-content {
        padding: 20px 16px;
        margin: 10px;
        max-height: 95vh;
    }

    .about-modal-content h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .about-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .about-contact {
        margin-top: 16px;
        padding-top: 14px;
    }

    .about-contact p {
        font-size: 12px;
    }
}

/* Çok küçük ekranlar (320px - 360px) */
@media (max-width: 360px) {
    .hero-section-full {
        padding: 25px 16px 32px 16px;
        padding-top: max(25px, env(safe-area-inset-top));
    }

    .hero-logo {
        margin-bottom: 0;
        display: inline-flex;
        margin-right: 12px;
        vertical-align: middle;
    }

    .hero-logo .material-symbols-outlined {
        font-size: 38px;
        animation: float 3s ease-in-out infinite;
    }

    .hero-title {
        font-size: 32px;
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
        line-height: 1;
    }

    .hero-subtitle {
        clear: both;
        display: block;
        margin-top: 10px;
    }

    .hero-mobile-map-container {
        padding: 0 16px;
        margin-top: 16px;
        margin-bottom: 14px;
    }

    .hero-mobile-map {
        height: 220px;
        border-radius: 12px;
    }

    .mobile-only .hero-buttons,
    .mobile-only.hero-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 20px;
        padding: 0 16px;
    }

    .btn-about,
    .btn-delivery,
    .btn-aktionen,
    .btn-login,
    .btn-login-mobile {
        width: 100%;
        padding: 9px 10px;
        font-size: 11.5px;
        gap: 4px;
        min-height: 42px;
        height: 42px;
        border-radius: 9px;
        font-weight: 600;
    }

    .btn-about .material-symbols-outlined,
    .btn-delivery .material-symbols-outlined,
    .btn-aktionen .material-symbols-outlined,
    .btn-login .material-symbols-outlined {
        font-size: 16px;
    }
    
    .btn-about span:not(.material-symbols-outlined),
    .btn-delivery span:not(.material-symbols-outlined),
    .btn-aktionen span:not(.material-symbols-outlined),
    .btn-login span:not(.material-symbols-outlined) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-login,
    .btn-login-mobile {
        order: 3 !important;
    }
    
    .btn-aktionen {
        order: 4 !important;
    }

    .about-modal-content,
    .delivery-modal-content {
        padding: 16px 14px;
        margin: 8px;
        max-height: 96vh;
    }

    .about-modal-content h2,
    .delivery-modal-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .about-contact {
        margin-top: 14px;
        padding-top: 12px;
    }

    .about-contact p {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .delivery-description {
        margin-bottom: 12px;
        padding: 10px;
    }

    .delivery-description p {
        font-size: 12px;
        line-height: 1.5;
    }

    .about-modal-close,
    .delivery-modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 24px;
    }

    #map {
        height: 350px !important;
    }

    .login-modal-content {
        padding: 12px 10px;
        margin: 5px;
        max-height: 98vh;
        overflow-y: auto;
    }

    .login-modal-header {
        margin-bottom: 12px;
    }

    .login-modal-logo {
        margin-bottom: 8px;
        gap: 6px;
    }

    .login-modal-logo .material-symbols-outlined {
        font-size: 26px;
    }

    .login-modal-logo h2 {
        font-size: 18px;
    }

    .login-modal-header h3 {
        font-size: 13px;
    }

    .form-group-modal {
        margin-bottom: 10px;
    }

    .form-group-modal label {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .form-group-modal input {
        font-size: 16px;
        padding: 8px 10px;
        min-height: 38px;
        border-radius: 7px;
    }

    .password-wrapper-modal input {
        padding-right: 42px;
    }

    .login-button-modal {
        padding: 10px;
        font-size: 13px;
        min-height: 40px;
        border-radius: 7px;
    }

    .login-footer-modal {
        margin-top: 12px;
        padding-top: 12px;
    }

    .login-info-box {
        padding: 8px;
        border-radius: 7px;
    }

    .login-info-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .login-info-text {
        font-size: 10px;
        margin-bottom: 7px;
        line-height: 1.3;
    }

    .login-contact-links {
        gap: 5px;
        flex-direction: column;
    }

    .login-contact-link {
        padding: 6px 8px;
        font-size: 10px;
    }

    .language-selector {
        margin-top: 12px;
        padding-top: 12px;
    }

    .language-selector-label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .language-selector-dropdown {
        padding: 8px 10px;
        font-size: 12px;
        padding-right: 32px;
        border-radius: 7px;
    }

    .remember-me-modal {
        font-size: 11px;
    }

    .remember-me-modal input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .login-modal-close {
        top: 7px;
        right: 7px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .login-error-message {
        padding: 7px 9px;
        font-size: 11px;
        margin-bottom: 12px;
        border-radius: 7px;
    }

    .toggle-password-modal {
        min-width: 36px;
        min-height: 36px;
        right: 7px;
    }

    .toggle-password-modal .material-symbols-outlined {
        font-size: 17px;
    }

    .form-options-modal {
        margin-bottom: 12px;
    }
}

/* Yatay mod optimizasyonu */
@media (max-height: 700px) and (orientation: landscape) {
    .hero-section-full {
        min-height: auto;
        padding: 20px 20px 30px 20px;
        padding-top: max(20px, env(safe-area-inset-top));
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-logo .material-symbols-outlined {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
    }
}

/* ============================================
   AKTİONEN PUBLIC BUTTON
   ============================================ */

.aktionen-public-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    margin-top: 16px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.aktionen-public-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 128, 0, 0.15);
}

.aktionen-public-btn .material-symbols-outlined:first-child {
    font-size: 24px;
    font-variation-settings: 'FILL' 1;
}

@media (max-width: 480px) {
    .aktionen-public-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .aktionen-public-btn .material-symbols-outlined:first-child {
        font-size: 22px;
    }
}

/* ============================================
   DİL SEÇİCİ STİLLERİ - DROPDOWN
   ============================================ */

.language-selector {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 128, 0, 0.2);
}

.language-selector-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-selector-dropdown {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.language-selector-dropdown:hover {
    border-color: var(--primary);
    background-color: #f9fafb;
}

.language-selector-dropdown:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.1);
}

.language-selector-dropdown option {
    padding: 12px;
    font-size: 15px;
}

@media (max-width: 480px) {
    .language-selector-dropdown {
        padding: 10px 14px;
        font-size: 14px;
        background-size: 18px;
        padding-right: 36px;
    }
}
