/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        padding: 10px 0;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 10px;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .mascot-img {
        width: 250px;
    }
    
    /* Sections Mobile */
    .products,
    .featured-products,
    .trust-section,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    /* Coming Soon Notice Mobile */
    .coming-soon-notice {
        padding: 30px 20px;
    }
    
    .notice-content i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .notice-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .notice-content p {
        font-size: 1rem;
    }
    
    /* Trust Section Mobile */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-item {
        padding: 30px 15px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 30px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .mascot-img {
        width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-card,
    .product-card {
        margin: 0 5px;
    }
    
    .coming-soon-notice {
        padding: 25px 15px;
    }
    
    .notice-content h3 {
        font-size: 1.3rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .language-switcher {
        gap: 3px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .mascot-img {
        width: 200px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .mascot-img,
    .about-mascot {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-btn,
    .social-links,
    .contact-form {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
        padding: 20px 0;
    }
    
    .hero-title {
        color: black;
        -webkit-text-fill-color: black;
    }
    
    .section-title {
        color: black;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .mascot-container {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* This can be implemented later if needed */
}

/* Focus Styles for Accessibility */
.btn:focus,
.lang-btn:focus,
input:focus,
textarea:focus,
.social-link:focus {
    outline: 2px solid #FF8C00;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

