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

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc;
    color: #2d3748;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Görsel Menü Butonu */
.visual-menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: #141f33;
}

.visual-menu-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.menu-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    gap: 3px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.menu-text span {
    font-size: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.menu-text i {
    font-size: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.visual-menu-button:hover .menu-overlay {
    background: transparent;
}

.visual-menu-button:hover .menu-text {
    background: transparent;
    transform: scale(1.05);
}

/* Açılır Menü */
.dropdown-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #141f33;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.dropdown-menu.active {
    right: 0;
}

.menu-header {
    background: #141f33;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items li {
    border-bottom: 1px solid #2a3f5f;
}

.menu-items a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-items a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.menu-items i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Ana İçerik */
.main-content {
    margin-top: 0;
    padding: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Hero Bölümü - Soft Renkler */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background: #48bb78;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

/* Bölüm Stilleri */
.section {
    margin-bottom: 50px;
    padding: 30px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2d3748;
    font-size: 2rem;
}

/* Ürün Grid - Soft Renkler */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 10px;
    color: #2d3748;
}

.product-card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #48bb78;
    margin-bottom: 15px;
}

.order-button {
    background: #4299e1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-button:hover {
    background: #3182ce;
}

/* Video Grid - Soft Renkler */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

.video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Ünlüler Grid - Soft Renkler */
.celebrities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.celebrity-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

.celebrity-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.celebrity-card h3 {
    margin-bottom: 10px;
    color: #2d3748;
}

.celebrity-card p {
    color: #718096;
    font-style: italic;
}

/* İletişim Bilgileri - Soft Renkler */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Footer - Soft Renkler */
.footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #667eea;
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-links a {
    color: #e2e8f0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    opacity: 0.8;
}

/* Responsive Tasarım - Mobil Beyaz Tema */
@media (max-width: 768px) {
    body {
        background-color: #ffffff;
        color: #2d3748;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .visual-menu-button {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    }
    
    .menu-overlay i {
        font-size: 16px;
    }
    
    .dropdown-menu {
        width: 280px;
    }
    
    .menu-header {
        padding: 15px;
    }
    
    .menu-header h3 {
        font-size: 1.1rem;
    }
    
    .menu-items a {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 0;
        background: #ffffff;
        margin-top: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .header-container {
        padding: 0 15px;
        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .fixed-header {
        background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/minyaturhane_01.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #2d3748;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #f1f5f9;
        padding: 8px 0;
    }
    
    .site-title h1 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #374151;
        letter-spacing: -0.2px;
    }
    
    .logo img {
        height: 26px;
        border-radius: 5px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }
    
    .menu-icon {
        font-size: 18px;
        padding: 6px;
        border-radius: 6px;
        background: #f8fafc;
        color: #6b7280;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        width: 32px;
        height: 32px;
        border: 1px solid #e5e7eb;
    }
    
    .hero-section {
        background: #f8fafc;
        color: #2d3748;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        margin: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        color: #2d3748;
    }
    
    .hero-content p {
        font-size: 1rem;
        color: #4a5568;
    }
    
    .cta-button {
        background: #48bb78;
        color: white;
    }
    
    .section {
        background: #ffffff;
        border-radius: 15px;
        margin-bottom: 30px;
        padding: 20px 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        border: 1px solid #f1f5f9;
    }
    
    .section h2 {
        color: #2d3748;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #f1f5f9;
    }
    
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .product-card h3 {
        color: #2d3748;
        font-size: 1.1rem;
    }
    
    .product-card p {
        color: #48bb78;
    }
    
    .order-button {
        background: #4299e1;
        color: white;
        border-radius: 15px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-card {
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #f1f5f9;
    }
    
    .video-placeholder {
        background: #f8fafc;
        color: #4a5568;
        border-radius: 15px;
    }
    
    .video-placeholder i {
        color: #48bb78;
    }
    
    .celebrities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .celebrity-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #f1f5f9;
    }
    
    .celebrity-card h3 {
        color: #2d3748;
        font-size: 1rem;
    }
    
    .celebrity-card p {
        color: #718096;
        font-size: 0.9rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        background: #ffffff;
        border-radius: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border: 1px solid #f1f5f9;
    }
    
    .contact-item i {
        color: #48bb78;
    }
    
    .contact-item p {
        color: #4a5568;
    }
    
    .whatsapp-container {
        right: 12px;
        bottom: 18px;
        gap: 4px;
    }
    
    .whatsapp-fab {
        width: 52px;
        height: 52px;
        background: #48bb78;
        box-shadow: 0 4px 15px rgba(72, 187, 120, 0.2);
    }
    
    .whatsapp-label {
        font-size: 0.85rem;
        padding: 3px 10px;
        margin-top: 4px;
        background: #ffffff;
        color: #48bb78;
        border: 1px solid #e2e8f0;
    }
    
    .footer {
        background: #f8fafc;
        color: #4a5568;
        border-top: 1px solid #e2e8f0;
    }
    
    .footer-section h3 {
        color: #2d3748;
    }
    
    .footer-section p {
        color: #718096;
    }
    
    .social-links a {
        color: #4a5568;
    }
    
    .social-links a:hover {
        color: #48bb78;
    }
    
    .footer-bottom {
        border-top: 1px solid #e2e8f0;
        color: #718096;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .full-width-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0;
        padding: 0;
        object-fit: contain;
        display: block;
    }
    
    .full-width-section {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .product-card, .video-card, .celebrity-card {
        margin-bottom: 20px;
    }
}

/* Sıfırdan Modern WhatsApp Butonu - Soft Renkler */
.whatsapp-container {
    position: fixed;
    right: 0;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-fab {
    width: 50px;
    height: 120px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 15px 0 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(72, 187, 120, 0.25);
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    position: relative;
    gap: 8px;
}

.whatsapp-fab:hover, .whatsapp-fab:focus {
    transform: translateX(-5px);
    box-shadow: 0 12px 36px rgba(56, 161, 105, 0.30);
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
}

.whatsapp-fab i {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.whatsapp-fab span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.whatsapp-fab:active {
    transform: translateX(-2px);
}

.whatsapp-label {
    margin-right: 8px;
    background: rgba(255,255,255,0.95);
    color: #38a169;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 2px 8px rgba(56, 161, 105, 0.08);
    letter-spacing: 0.2px;
    border: 1px solid #e2e8f0;
    text-align: center;
    user-select: none;
}

/* One-Page Görsel Galerisi */
.full-width-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.full-width-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
    object-fit: contain;
    display: block;
}

/* Geri Sayım Bölümü */
.countdown-section {
    background: #141f33;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
    animation: sparkle 4s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(360deg); }
}

.countdown-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.countdown-header h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
    font-weight: 700;
}

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

.discount-text {
    color: #e2e8f0;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    min-width: 90px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.countdown-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

.countdown-label {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-top: 8px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: blink 1.5s ease-in-out infinite;
    margin-top: -10px;
}

@keyframes blink {
    0%, 60% { opacity: 1; transform: scale(1); }
    61%, 100% { opacity: 0.7; transform: scale(0.95); }
}

.countdown-cta {
    margin-top: 20px;
}

.countdown-button {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.countdown-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.countdown-button i {
    font-size: 1.2rem;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .countdown-section {
        padding: 40px 15px;
    }
    
    .countdown-header h2 {
        font-size: 2.2rem;
    }
    
    .discount-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 2.5rem;
    }
}

/* Sipariş Formu */
.order-form-section {
    background: #f8fafc;
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.order-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 500;
}

.order-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Ürün Seçimi */
.product-selection h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-item {
    background: white;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background: #f8fafc;
    margin: 0;
    padding: 0;
}

.product-info {
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.product-info h4 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.quantity-selector label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 40px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.quantity-btn {
    background: #141f34;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #1a2a4a;
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    background: white;
    padding: 0;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
}

/* Müşteri Bilgileri */
.customer-info h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

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

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

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Ödeme Seçenekleri */
.payment-section h3 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

/* Toplam Fiyat */
.total-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #e2e8f0;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.total-price span:first-child {
    color: #4a5568;
}

.total-amount {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Sipariş Butonu */
.submit-section {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: #141f34;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(20, 31, 52, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 31, 52, 0.4);
    background: #0f1628;
}

.submit-button:disabled {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    transform: none;
    box-shadow: 0 8px 25px rgba(20, 31, 52, 0.3);
}

.submit-button i {
    font-size: 1.3rem;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .order-form-section {
        padding: 40px 15px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-header p {
        font-size: 1.1rem;
    }
    
    .order-form {
        padding: 25px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-selection h3,
    .customer-info h3,
    .payment-section h3 {
        font-size: 1.5rem;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .total-price {
        font-size: 1.1rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
}

/* YouTube Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 800px;
    height: 80%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    border-radius: 15px;
}

/* Video trigger için hover efekti */
.video-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Video trigger için play ikonu - daha uyumlu yöntem */
.product-item {
    position: relative;
}

.product-item .video-trigger {
    position: relative;
}

.product-item .video-trigger::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.product-item .video-trigger:hover::after {
    opacity: 1;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        height: 70%;
        margin: 5% auto;
    }
    
    .video-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .product-item .video-trigger::after {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .product-item .video-trigger:hover {
        transform: none;
    }
    
    .product-item .video-trigger::after {
        opacity: 0.8;
    }
}

/* Video Sayfası Stilleri */
.video-gallery-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.video-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 500;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f8fafc;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-overlay i {
    color: white;
    font-size: 3rem;
    background: rgba(255, 0, 0, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-card:hover .video-overlay i {
    transform: scale(1.1);
    background: rgba(255, 0, 0, 1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-info p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-duration {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Video Player Bölümü */
.video-player-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-player-container {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    height: 80%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #1a202c;
    border-bottom: 1px solid #2d3748;
}

.video-player-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.close-video {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-video:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-player-content {
    height: calc(100% - 80px);
    position: relative;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .video-gallery-section {
        padding: 40px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-overlay i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-player-section {
        padding: 10px;
    }
    
    .video-player-container {
        height: 90%;
    }
    
    .video-player-header {
        padding: 15px 20px;
    }
    
    .video-player-header h3 {
        font-size: 1.1rem;
    }
    
    .close-video {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 60px 20px;
    background: #f8fafc;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-form-section {
    padding: 60px 20px;
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
    font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.contact-form .submit-button i {
    font-size: 1.2rem;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-section {
        padding: 40px 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-form .submit-button {
        width: 100%;
        justify-content: center;
    }
}

/* Sipariş Onay Sayfası */
.order-confirmation-section {
    background: #f8fafc;
    padding: 60px 20px;
    min-height: 100vh;
}

.order-confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.confirmation-header {
    text-align: center;
    margin-bottom: 40px;
}

.confirmation-header h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.confirmation-header p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.6;
}

.order-details {
    margin-bottom: 40px;
}

.order-summary {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #e2e8f0;
}

.order-summary h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.products-list {
    margin-bottom: 20px;
}

.product-item-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.product-name {
    color: #2d3748;
    font-weight: 500;
    flex: 2;
}

.product-quantity {
    color: #4a5568;
    flex: 1;
    text-align: center;
}

.product-price {
    color: #667eea;
    font-weight: 600;
    flex: 1;
    text-align: right;
}

.total-summary {
    text-align: right;
    padding-top: 15px;
    border-top: 2px solid #e2e8f0;
    font-size: 1.3rem;
    color: #667eea;
}

.customer-details {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.customer-details h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.customer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item label {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-item span {
    color: #2d3748;
    font-size: 1rem;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-confirm-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.back-home-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.error-message {
    text-align: center;
    padding: 40px 20px;
}

.error-message h3 {
    color: #e53e3e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.error-message p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.back-to-form-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .order-confirmation-container {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .confirmation-header h2 {
        font-size: 2rem;
    }
    
    .confirmation-header p {
        font-size: 1.1rem;
    }
    
    .customer-info-grid {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-confirm-btn,
    .back-home-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .product-item-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .product-name,
    .product-quantity,
    .product-price {
        flex: none;
        text-align: left;
    }
}

.full-width-image.video-trigger {
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.full-width-image.video-trigger:hover {
    transform: scale(1.02);
}

.full-width-image.video-trigger::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.full-width-image.video-trigger:hover::after {
    opacity: 1;
}

/* Masaüstü için ürün görsellerini küçült */
@media (min-width: 1024px) {
    .product-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-card {
        background: white;
        border-radius: 20px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        border: 1px solid #f1f5f9;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Ana hattı oluşturan görselleri küçült */
    .full-width-image {
        width: 100%;
        max-width: 600px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto 30px auto;
    }
    
    .full-width-section {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 30px auto;
        overflow: hidden;
    }
}

/* Arama Yapılabilir İl Seçimi */
.city-select-container {
    position: relative;
    width: 100%;
}

.city-select-wrapper {
    position: relative;
    width: 100%;
}

.city-display-input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #2d3748;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-display-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.city-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.city-select-container.active .city-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
    display: none;
}

.city-select-container.active .city-dropdown {
    display: block;
}

.city-search-wrapper {
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
    background: #f7fafc;
}

.city-search-input {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    color: #2d3748;
    transition: all 0.3s ease;
}

.city-search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.city-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: none;
}

.city-search-clear:hover {
    color: #666;
}

.city-options {
    max-height: 250px;
    overflow-y: auto;
}

.city-option {
    padding: 10px 15px;
    font-size: 14px;
    color: #2d3748;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.city-option:hover {
    background: #f7fafc;
}

.city-option.selected {
    background: #667eea;
    color: white;
}

.city-option.hidden {
    display: none;
}

/* Mobil için arama alanı düzenlemeleri */
@media (max-width: 768px) {
    .city-display-input {
        padding: 10px 12px;
        padding-right: 35px;
        font-size: 14px;
    }
    
    .city-select-arrow {
        right: 12px;
        font-size: 14px;
    }
    
    .city-dropdown {
        max-height: 250px;
    }
    
    .city-search-wrapper {
        padding: 8px;
    }
    
    .city-search-input {
        padding: 6px 30px 6px 10px;
        font-size: 13px;
    }
    
    .city-search-clear {
        right: 12px;
        font-size: 14px;
    }
    
    .city-option {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .city-options {
        max-height: 200px;
    }
}

.order-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.order-status {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.order-status h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-info p {
    margin: 8px 0;
    color: #4a5568;
    font-size: 14px;
}

.status-pending {
    color: #d69e2e;
    font-weight: 600;
    background: #fef5e7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-confirmed {
    color: #38a169;
    font-weight: 600;
    background: #f0fff4;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-processing {
    color: #3182ce;
    font-weight: 600;
    background: #ebf8ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-shipped {
    color: #805ad5;
    font-weight: 600;
    background: #faf5ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-delivered {
    color: #38a169;
    font-weight: 600;
    background: #f0fff4;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.status-cancelled {
    color: #e53e3e;
    font-weight: 600;
    background: #fed7d7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
} 