
        /* ================= HERO ================= */
        .garments-hero {
            background: linear-gradient(135deg, #0B2C6B 0%, #123A8C 50%, #1E5FD8 100%);
            padding: 140px 5% 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .garments-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -8%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(165, 201, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .garments-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -8%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(111, 168, 255, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(15px, -20px);
            }
        }

        .garments-hero h1 {
            color: #FFFFFF;
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 700;
            position: relative;
            z-index: 1;
            margin-bottom: 18px;
            line-height: 1.25;
        }

        .garments-hero h1 span {
            background: linear-gradient(135deg, #A5C9FF, #6FA8FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .garments-hero p {
            color: #A5C9FF;
            font-size: clamp(16px, 2.2vw, 19px);
            max-width: 750px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        /* ================= CATEGORY SECTION ================= */
        .category-section {
            padding: 0px 5% 80px;
            background: #ffffff;
        }

        .category-section:nth-child(even) {
            background: #f8f9fa;
        }

        .category-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-header {
            margin-bottom: 50px;
            position: relative;
        }

        .category-header h2 {
            color: #0B2C6B;
            font-size: clamp(32px, 5vw, 46px);
            font-weight: 700;
            padding-left: 30px;
            border-left: 6px solid #1E5FD8;
            line-height: 1.3;
            position: relative;
        }

        .category-header h2::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #1E5FD8 0%, #A5C9FF 100%);
            border-radius: 3px;
        }

        .category-header .subtitle {
            color: #6B7280;
            font-size: clamp(15px, 2vw, 18px);
            margin-top: 12px;
            padding-left: 30px;
            font-weight: 400;
        }

        .category-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(165, 201, 255, 0.2), rgba(111, 168, 255, 0.15));
            border-radius: 12px;
            margin-bottom: 20px;
            border: 2px solid rgba(30, 95, 216, 0.2);
        }

        .category-icon i {
            font-size: 24px;
            color: #1E5FD8;
        }

        /* ================= PRODUCT GRID ================= */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
            gap: 25px;
        }

        .product-card {
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(11, 44, 107, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(11, 44, 107, 0.18);
        }

        /* Image Container */
        .product-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 125%;
            /* 4:5 aspect ratio */
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }

        .product-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.08);
        }

        /* Overlay on hover */
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(11, 44, 107, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .view-btn {
            background: linear-gradient(135deg, #A5C9FF, #6FA8FF);
            color: #0B2C6B;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .view-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(111, 168, 255, 0.5);
        }

        /* Product Info */
        .product-info {
            padding: 16px;
        }

        .product-category {
            color: #1E5FD8;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 8px;
        }

        .product-title {
            color: #0B2C6B;
            font-size: clamp(15px, 2vw, 17px);
            font-weight: 700;
            margin-bottom: 6px;
        }

        .product-desc {
            color: #6B7280;
            font-size: 13px;
            line-height: 1.5;
        }

        /* ================= DIVIDER ================= */
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(30, 95, 216, 0.3) 50%, transparent 100%);
            margin: 0;
        }

        /* ================= RESPONSIVE ================= */
        @media(max-width: 768px) {
            .garments-hero {
                padding: 120px 5% 60px;
            }

            .category-section {
                padding: 60px 5%;
            }

            .category-header {
                margin-bottom: 40px;
            }

            .category-header h2 {
                padding-left: 20px;
                border-left-width: 5px;
            }

            .category-header h2::before {
                left: -5px;
                width: 5px;
            }

            .category-header .subtitle {
                padding-left: 20px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
                gap: 18px;
            }
        }

        @media(max-width: 480px) {
            .garments-hero {
                padding: 100px 5% 50px;
            }

            .category-section {
                padding: 50px 5%;
            }

            .category-header h2 {
                padding-left: 16px;
                border-left-width: 4px;
            }

            .category-header h2::before {
                left: -4px;
                width: 4px;
            }

            .category-header .subtitle {
                padding-left: 16px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .product-info {
                padding: 12px;
            }

            .category-icon {
                width: 45px;
                height: 45px;
            }

            .category-icon i {
                font-size: 20px;
            }
        }