.women-hero-container {
    height: 75vh;
    background: var(--brand-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.hero-mosaic {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 0;
    width: 100%;
    height: 100%;
}

.mosaic-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(var(--brand-white-rgb), 0.1);
}

.mosaic-item.main {
    flex: 1;
}

.mosaic-item:nth-child(1) img {
    object-position: center 1%;
}

.mosaic-item:nth-child(2) img {
    object-position: center 45%;
}

.mosaic-item:nth-child(3) img {
    object-position: center 40%;
}

.mosaic-item:nth-child(4) img {
    object-position: center 1%;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 0;
    transition: transform 0.8s ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
}

.women-hero-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(var(--brand-black-rgb), 0.9) 0%, rgba(var(--brand-black-rgb), 0.3) 50%, rgba(var(--brand-black-rgb), 0.2) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.women-hero-content {
    max-width: 600px;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.women-hero-content {
    position: relative;
    z-index: 2;
    color: var(--brand-white);
    max-width: 800px;
    padding-top: 80px;
}

.women-hero-container h1 {
    font-size: clamp(60px, 10vw, 100px);
    margin-bottom: 20px;
}

/* Filter Sidebar */
.filter-sidebar {
    padding-right: 20px;
    height: 100%;
}

.filter-group {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.filter-group:hover {
    box-shadow: 0 10px 30px rgba(var(--brand-black-rgb), 0.05);
}

.filter-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    color: var(--brand-text);
}

.filter-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-list li {
    margin-bottom: 15px;
}

.filter-category {
    font-size: 13px;
    color: var(--brand-muted);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.filter-category:hover,
.filter-category.active {
    color: var(--brand-text);
    background: var(--brand-surface-form);
    font-weight: 700;
}

.filter-category.active {
    border-left: 3px solid var(--brand-primary);
    padding-left: 12px;
}

/* Size Pills */
.size-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-pill {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-border);
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.size-pill:hover,
.size-pill.active {
    background: var(--brand-dark);
    color: var(--brand-white);
    border-color: var(--brand-dark);
}

/* Color Pills */
.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.color-pill.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--brand-text);
    border-radius: 50%;
}

/* Price Radios */
.price-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--brand-muted);
    cursor: pointer;
}

.price-radio input {
    accent-color: var(--brand-text);
}

.price-radio:hover {
    color: var(--brand-text);
}

/* Sort Bar */
.sort-bar {
    border-bottom: 1px solid var(--brand-border);
    padding-bottom: 20px;
}

.product-count {
    font-size: 14px;
    color: var(--brand-muted);
}

/* Product Grid Adjustments for variety */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px 30px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 0;
    color: var(--brand-muted);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
}

.old-price {
    font-size: 13px;
    color: var(--brand-muted);
    text-decoration: line-through;
    margin-top: -2px;
}

.small-add-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--brand-dark);
}

.small-add-btn:hover {
    background: var(--brand-dark);
    color: var(--brand-white);
    border-color: var(--brand-dark);
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .women-hero-container {
        min-height: 92vh;
    }

    .women-hero-content {
        max-width: 560px;
        padding-top: 120px;
        padding-bottom: 56px;
    }

    .filter-sidebar {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .filter-group {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    main {
        width: 100%;
        overflow-x: hidden;
    }

    .women-hero-container {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        min-height: 100vh;
        height: 100vh;
        min-height: 100svh;
        height: 100svh;
        display: flex;
        align-items: center;
    }

    .hero-mosaic {
        inset: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        width: 100vw;
        max-width: 100vw;
        height: 100%;
    }

    .mosaic-item {
        width: 100%;
        min-width: 0;
        height: auto;
        border-right: 0;
    }

    .mosaic-item.main {
        width: 100%;
        min-width: 0;
    }

    .mosaic-item img {
        width: 100%;
        min-width: 0;
    }

    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .women-hero-content {
        padding-top: 120px;
        padding-bottom: 48px;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }

    .sort-bar {
        align-items: flex-start !important;
        gap: 12px;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .women-hero-container h1 {
        font-size: 42px;
    }

    .women-hero-content p {
        font-size: 14px;
    }

    .mosaic-item {
        height: auto;
    }

    .mosaic-item.main {
        min-width: 0;
    }

    .filter-group {
        padding: 18px 16px;
    }

    .filter-category {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 8px 10px;
    }
}

@media (max-width: 420px) {
    .women-hero-container {
        width: 100vw;
        max-width: 100vw;
        min-height: 100vh;
        height: 100vh;
        min-height: 100svh;
        height: 100svh;
    }

    .women-hero-content {
        padding-top: 104px;
        padding-bottom: 36px;
    }

    .women-hero-container h1 {
        font-size: 36px;
    }

    .women-hero-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .filter-group {
        padding: 16px 14px;
        margin-bottom: 18px;
    }

    .filter-title {
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 14px;
    }

    .size-filters {
        gap: 8px;
    }

    .size-pill {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}