/* Responsive Styles */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-img {
        max-width: 80%;
    }
    
    .collection-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-section {
        /*padding: 150px 0 80px;*/
    }
    
    .about-section, 
    .collection-section, 
    .contact-section {
        padding: 80px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        margin-left: 15px;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #F5F5F5;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .lang-selector {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .logo-img {
        height: 30px;
        width: auto;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding: 100px 20px 0px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        /*padding: 130px 0 60px;*/
    }
    
    .divider-hero-img {
        width: 0%;
        justify-content: center;
        padding: 100px 20px 0px;
    }
    
    .about-section, 
    .collection-section, 
    .contact-section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-image {
        height: 350px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-link {
        margin: 8px 0;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Phones */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
}