/* products sidebar */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

.woocommerce-products-header__title.page-title {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.woocommerce-products-header.has-archive-description {
    padding: clamp(1.5rem, 2.4vw, 2.25rem);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(251, 230, 212, 0.9), rgba(251, 230, 212, 0.38) 42%, rgba(255, 255, 255, 0) 100%);
}

.woocommerce-products-header .term-description {
    margin-top: 1rem;
    width: 100%;
    max-width: none;
}

.woocommerce-products-header .term-description > *:first-child {
    margin-top: 0;
}

.woocommerce-products-header .term-description > *:last-child {
    margin-bottom: 0;
}

.woocommerce-products-header .term-description p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.container-with-sidebar {
    display: grid;
    grid-template-columns: 225px 1fr;
    gap: 1.5rem;
}
/* mobile change to 1fr */
@media (max-width: 768px) {
    .container-with-sidebar {
        grid-template-columns: 1fr;
    }
}
.shop-sidebar div h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .woocommerce-products-header.has-archive-description {
        padding: 1.25rem;
    }

    .woocommerce-products-header .term-description {
        width: 100%;
    }
}