/* Mobil Responsive CSS - Victoria's Secret */

@media (max-width: 768px) {
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        color: #000;
        z-index: 10000;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Side Menu */
    .mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #000;
    }
    
    .mobile-menu-content {
        padding: 0;
    }
    
    .mobile-menu-item {
        border-bottom: 1px solid #e5e5e5;
    }
    
    .mobile-menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        text-decoration: none;
        color: #000;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-menu-link:hover {
        background: #f5f5f5;
    }
    
    /* Top Banner */
    .top-banner {
        font-size: 11px;
        padding: 8px 15px;
        flex-direction: row;
        gap: 8px;
    }
    
    .top-banner-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
    
    /* Header */
    .header-top {
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    
    .brand-logos {
        gap: 15px;
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .brand-logo {
        font-size: 14px;
    }
    
    .header-icons {
        gap: 15px;
        margin-left: auto;
    }
    
    /* Logo */
    .logo-area {
        padding: 15px 0;
    }
    
    .main-logo h1 {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .search-box {
        padding: 0 15px;
        margin-top: 10px;
    }
    
    /* Hide desktop navigation on mobile */
    .main-nav {
        display: none !important;
    }
    
    /* Hero Slider - Full Width */
    .hero-section {
        height: auto !important;
        width: 100% !important;
    }
    
    .hero-slide {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .hero-content h2 {
        font-size: 28px !important;
    }
    
    .hero-content p {
        font-size: 14px !important;
    }
    
    .hero-btn {
        padding: 10px 25px !important;
        font-size: 12px !important;
    }
    
    /* Products Grid */
    .products-section {
        padding: 20px 10px 40px !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .product-card {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .product-image {
        aspect-ratio: 3/4 !important;
        height: auto !important;
        width: 100% !important;
    }
    
    .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .product-info {
        padding: 10px 3px !important;
    }
    
    .product-brand {
        font-size: 10px !important;
    }
    
    .product-name {
        font-size: 12px !important;
        min-height: 32px !important;
    }
    
    .product-price {
        font-size: 13px !important;
    }
    
    .product-promo {
        font-size: 9px !important;
    }
    
    .product-actions {
        gap: 8px !important;
    }
    
    .btn {
        font-size: 11px !important;
        padding: 8px 12px !important;
    }
    
    /* Swiper */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
    
    /* Collections Grid */
    .collections-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 15px !important;
    }
    
    .collection-item {
        height: 200px !important;
    }
    
    .collection-title {
        font-size: 16px !important;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 30px 15px !important;
    }
    
    .footer-column {
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px 15px !important;
        text-align: center !important;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 24px !important;
        padding: 0 15px !important;
    }
    
    /* Container */
    .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .main-logo h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .products-grid {
        gap: 8px !important;
    }
    
    .product-info {
        padding: 8px 2px !important;
    }
    
    .product-brand {
        font-size: 9px !important;
    }
    
    .product-name {
        font-size: 11px !important;
        min-height: 30px !important;
    }
    
    .product-price {
        font-size: 12px !important;
    }
    
    .product-promo {
        font-size: 8px !important;
    }
    
    .nav-item {
        font-size: 11px !important;
        padding: 10px 8px !important;
    }
}
