        /* الأساسيات */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        /* Parallax Container */
        .parallax-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            filter: brightness(0.4);
        }
        
        /* القائمة */
        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .menu.scrolled {
            background: rgba(26, 26, 46, 0.95);
            padding: 5px 0;
        }
        
        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .logo i {
            margin-left: 10px;
            font-size: 32px;
        }
        
        .logo[dir="ltr"] i {
            margin-left: 0;
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links[dir="ltr"] {
            flex-direction: row;
        }
        
        .nav-links li {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .nav-links a i {
            margin-left: 8px;
            font-size: 18px;
        }
        
        .nav-links[dir="ltr"] a i {
            margin-left: 0;
            margin-right: 8px;
        }
        
        .nav-links a:hover {
            color: #e94560;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            transition: width 0.3s ease;
        }
        
        .nav-links[dir="ltr"] a::after {
            right: auto;
            left: 0;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .language-switcher {
            display: flex;
            align-items: center;
        }
        
        .language-switcher[dir="ltr"] {
            flex-direction: row;
        }
        
        .language-switcher button {
            background: transparent;
            border: none;
            color: #fff;
            margin: 0 5px;
            cursor: pointer;
            font-size: 14px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .language-switcher button.active {
            background: rgba(233, 69, 96, 0.2);
            color: #e94560;
        }
        
        .language-switcher button:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* المحتوى الرئيسي */
        .hero {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
        }
        
        /* قسم Women الجديد والمحسن */
        .women-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
        }
        
        .women-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .women-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .women-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* فلاتر التصنيف */
        .women-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            border-color: #e94560;
        }
        
        /* شبكة الفئات */
        .women-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .category-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(233, 69, 96, 0.3);
        }
        
        .category-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .category-card:hover .category-image {
            transform: scale(1.1);
        }
        
        .category-content {
            padding: 20px;
            text-align: center;
        }
        
        .category-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .category-count {
            color: #e94560;
            font-size: 0.9rem;
        }
        
        /* قسم المنتجات المميزة */
        .women-featured {
            margin-top: 80px;
        }
        
        .featured-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .featured-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
        }
        
        /* شبكة المنتجات المحسنة */
        .featured-products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(233, 69, 96, 0.1), rgba(255, 126, 95, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(233, 69, 96, 0.3);
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-image-container {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-actions {
            position: absolute;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            bottom: 20px;
        }
        
        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .action-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 50%;
            width: 0;
            height: 0;
            background: rgba(233, 69, 96, 0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(50%, -50%);
        }
        
        .action-btn:hover::after {
            width: 100%;
            height: 100%;
        }
        
        .action-btn.active {
            background: #e94560;
            color: white;
        }
        
        .action-btn.added::before {
            content: '✓';
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            font-weight: bold;
        }
        
        .action-btn:hover {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .product-price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-price {
            color: #e94560;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            color: #ffc107;
        }
        
        .product-rating span {
            margin-right: 5px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* قسم العروض الخاصة */
        .women-sale {
            margin-top: 80px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .sale-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .sale-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .sale-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .sale-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
        }
        
        /* قسم دعوة للعمل */
        .women-cta {
            text-align: center;
            margin-top: 60px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .women-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .women-cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }
        
        .women-cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        
        .women-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
        }
        
        /* الفوتر */
        .footer {
            background: linear-gradient(135deg, #0a0a16 0%, #141428 100%);
            padding: 70px 20px 30px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(45deg, #e94560, #0d8bf2, #2ecc71, #ffa726);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .footer-col {
            display: flex;
            flex-direction: column;
        }
        
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(45deg, #e94560, #ff7e5f);
        }
        
        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-left: 8px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #e94560;
            transform: translateX(-5px);
        }
        
        .footer-links a:hover i {
            transform: translateX(-3px);
        }
        
        .footer-newsletter {
            margin-top: 20px;
        }
        
        .newsletter-text {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 15px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0 5px 5px 0;
            color: white;
        }
        
        .newsletter-btn {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 5px 0 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: linear-gradient(45deg, #ff7e5f, #e94560);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* القائمة المتنقلة */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
        }
        
        /* تأثيرات إضافية */
        .floating-element {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(233, 69, 96, 0.2);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            left: 10%;
            animation-delay: 2s;
            width: 30px;
            height: 30px;
        }
        
        .floating-element:nth-child(3) {
            bottom: 20%;
            right: 20%;
            animation-delay: 4s;
            width: 40px;
            height: 40px;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        /* نافذة تفاصيل المنتج */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .modal-content {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            max-width: 900px;
            margin: 50px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background: #e94560;
            transform: rotate(90deg);
        }
        
        .modal-body {
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .modal-body {
                flex-direction: row;
            }
        }
        
        .modal-image {
            flex: 1;
            min-height: 400px;
            background-size: cover;
            background-position: center;
        }
        
        .modal-details {
            flex: 1;
            padding: 30px;
        }
        
        .modal-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .modal-price {
            font-size: 1.8rem;
            color: #e94560;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .modal-description {
            margin-bottom: 20px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .modal-features {
            margin-bottom: 25px;
        }
        
        .modal-features ul {
            list-style: none;
            padding: 0;
        }
        
        .modal-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .modal-features i {
            color: #e94560;
            margin-left: 10px;
        }
        
        .modal-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-cart {
            background: linear-gradient(45deg, #e94560, #ff7e5f);
            color: white;
        }
        
        .modal-wishlist {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .modal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .modal-sizes, .modal-colors {
            margin-bottom: 20px;
        }
        
        .modal-sizes h4, .modal-colors h4 {
            margin-bottom: 10px;
            color: white;
        }
        
        .size-options, .color-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .size-option, .color-option {
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .size-option.active, .color-option.active {
            background: #e94560;
        }
        
        .size-option:hover, .color-option:hover {
            background: rgba(233, 69, 96, 0.5);
        }
        
        /* الإشعارات */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: #2ecc71;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 3000;
            transform: translateX(150%);
            transition: transform 0.5s ease;
        }
        
        .notification.active {
            transform: translateX(0);
        }
        
        .notification.error {
            background: #e94560;
        }
        
        /* التجاوب مع الأجهزة المختلفة */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: all 0.5s ease;
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links[dir="ltr"] {
                left: auto;
                right: -100%;
            }
            
            .nav-links[dir="ltr"].active {
                right: 0;
                left: auto;
            }
            
            .nav-links li {
                margin: 20px 0;
                width: 100%;
                text-align: center;
            }
            
            .nav-links a {
                justify-content: center;
                padding: 15px 0;
                font-size: 18px;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .women-title {
                font-size: 2.5rem;
            }
            
            .women-categories {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .featured-products {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .modal-body {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                width: 100%;
            }
            
            .women-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 200px;
                text-align: center;
            }
            
            .modal-content {
                margin: 20px auto;
            }
            
            .modal-actions {
                flex-direction: column;
            }
        }