/* ===================================
   MAREN TATLI & DONDURMA - RESPONSIVE STYLES
   =================================== */

/* Tablet ve Küçük Ekranlar (968px ve altı) */
@media (max-width: 968px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .container {
        flex-direction: column;
        padding: 24px;
        margin: 20px 16px;
    }
    
    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-card p {
        text-align: center;
    }
    
    .social-list {
        grid-template-columns: 1fr;
    }
    
    .shop-img {
        min-height: 300px;
    }
    
    .left-column,
    .right-column {
        min-width: 100%;
    }
}

/* Mobil Cihazlar (768px ve altı) */
@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    
    .header-logo {
        max-width: 140px;
    }
    
    .container {
        margin: 16px 12px;
        padding: 20px;
    }
    
    .section-title,
    .shop-main-title {
        font-size: 20px;
    }
    
    .about-img {
        width: 140px;
        height: 140px;
    }
    
    .about-card p {
        font-size: 14px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 16px;
    }
    
    .info-card p {
        font-size: 14px;
    }
    
    .quick-btn,
    .btn {
        font-size: 14px;
        padding: 18px 20px;
    }
    
    .google-btn {
        font-size: 15px;
        padding: 20px 28px;
    }
}

/* Küçük Mobil Cihazlar (480px ve altı) */
@media (max-width: 480px) {
    header {
        padding: 16px 0;
    }
    
    .header-logo {
        max-width: 180px;
    }
    
    .container {
        padding: 20px;
        margin: 12px 8px;
        border-radius: 20px;
    }
    
    .section-title,
    .shop-main-title {
        font-size: 18px;
        padding-left: 12px;
    }
    
    .section-title::after {
        display: none;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .about-img {
        width: 120px;
        height: 120px;
    }
    
    .about-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .info-card {
        padding: 18px;
        border-radius: 12px;
    }
    
    .info-card h3 {
        font-size: 15px;
        gap: 10px;
    }
    
    .info-card h3 i {
        font-size: 18px;
    }
    
    .info-card p {
        font-size: 13px;
    }
    
    #ibanNum {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .quick-btn,
    .btn {
        font-size: 13px;
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .google-btn {
        font-size: 14px;
        padding: 18px 24px;
    }
    
    .shop-img {
        min-height: 250px;
        border-radius: 16px;
    }
    
    .footer {
        padding: 32px 16px;
        font-size: 12px;
    }
}

/* Çok Küçük Mobil Cihazlar (360px ve altı) */
@media (max-width: 360px) {
    .container {
        margin: 8px 6px;
        padding: 16px;
    }
    
    .section-title,
    .shop-main-title {
        font-size: 16px;
    }
    
    .about-img {
        width: 100px;
        height: 100px;
    }
    
    .quick-btn i,
    .btn i {
        font-size: 16px;
    }
    
    .google-btn i {
        font-size: 20px;
    }
    
    #ibanNum {
        font-size: 11px;
        word-break: break-all;
    }
}

/* Landscape Orientation (Yatay Görünüm) */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        margin: 12px auto;
    }
    
    .shop-img {
        min-height: 200px;
    }
    
    .about-section {
        flex-direction: row;
    }
    
    .about-img {
        width: 100px;
        height: 100px;
    }
}

/* Print Styles */
@media print {
    header {
        position: static;
    }
    
    .quick-actions,
    .google-btn,
    .social-list,
    .footer::before {
        display: none;
    }
    
    .container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .info-card,
    .about-section {
        page-break-inside: avoid;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-logo,
    .about-img,
    .shop-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Support (Animasyon Hassasiyeti) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Ek Koyu Mod Desteği) */
@media (prefers-color-scheme: dark) {
    /* Zaten koyu tema kullanıldığı için ek ayarlamaya gerek yok */
    /* Gerekirse buraya eklemeler yapılabilir */
}

/* Hover Desteği Olmayan Cihazlar */
@media (hover: none) {
    .quick-btn:hover,
    .btn:hover,
    .info-card:hover,
    .google-btn:hover {
        transform: none;
    }
    
    .quick-btn:active,
    .btn:active,
    .info-card:active,
    .google-btn:active {
        transform: scale(0.98);
    }
}