/* ASHI-DA-COLLECTIONS - Clothes category tabs + product gallery */
.clothes-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 28px 90px;
}

.clothes-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.clothes-eyebrow,
.clothes-products-eyebrow {
    margin: 0 0 9px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .20em;
    text-transform: uppercase;
    opacity: .62;
}

.clothes-intro h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.clothes-intro p:last-child {
    margin: 0;
    line-height: 1.7;
    opacity: .70;
}

/* Horizontal category tabs instead of large navigation boxes. */
.clothes-tabs-wrap {
    margin: 0 auto 34px;
    border-bottom: 1px solid rgba(0,0,0,.12);
}

.clothes-tabs {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 4px;
}

.clothes-tabs::-webkit-scrollbar {
    display: none;
}

.clothes-tab {
    position: relative;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #25202a;
    padding: 15px 16px 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .045em;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity .18s ease, transform .18s ease;
}

.clothes-tab::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 2px;
    background: #2d075f;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.clothes-tab:hover {
    opacity: .72;
}

.clothes-tab.is-active {
    color: #2d075f;
}

.clothes-tab.is-active::after {
    transform: scaleX(1);
}

.clothes-products-summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 22px;
}

.clothes-products-summary h2 {
    margin: 0;
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.15;
}

.clothes-results-count {
    font-size: 12px;
    opacity: .62;
    padding-bottom: 2px;
}

.clothes-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 18px;
}

.clothes-filter-product[hidden] {
    display: none;
}

.clothes-product-card {
    min-width: 0;
}

.clothes-product-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(255,255,255,.70);
    text-decoration: none;
}

.clothes-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.clothes-product-card:hover .clothes-product-image img {
    transform: scale(1.035);
}

.clothes-product-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 12px;
    letter-spacing: .20em;
    color: rgba(0,0,0,.45);
}

.clothes-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    background: #fff;
    color: #2d075f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.clothes-product-info {
    padding: 13px 2px 0;
}

.clothes-product-info h2 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.clothes-product-info h2 a {
    color: inherit;
    text-decoration: none;
}

.clothes-product-info h2 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.clothes-product-price {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.clothes-product-sale-price {
    margin-right: 7px;
}

.clothes-product-price del {
    font-size: 11px;
    font-weight: 400;
    opacity: .50;
}

.clothes-empty,
.clothes-no-results {
    max-width: 720px;
    margin: 34px auto 0;
    padding: 46px 30px;
    text-align: center;
    border: 1px dashed rgba(0,0,0,.16);
    background: rgba(255,255,255,.25);
}

.clothes-empty-mark,
.clothes-no-results > div {
    margin-bottom: 12px;
    font-size: 24px;
    opacity: .55;
}

.clothes-empty h2,
.clothes-no-results h2 {
    margin: 0 0 9px;
    font-size: 22px;
}

.clothes-empty p,
.clothes-no-results p {
    margin: 0;
    line-height: 1.6;
    opacity: .68;
}

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

    .clothes-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .clothes-page {
        padding: 40px 16px 65px;
    }

    .clothes-intro {
        margin-bottom: 28px;
    }

    .clothes-tabs-wrap {
        margin-bottom: 28px;
    }

    .clothes-tab {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 27.5px;
    }

    .clothes-tab::after {
        left: 10px;
        right: 10px;
    }

    .clothes-products-summary {
        align-items: flex-start;
    }

    .clothes-results-count {
        white-space: nowrap;
    }

    .clothes-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 10px;
    }

    .clothes-product-info h2 {
        font-size: 13px;
    }
}
