/* 
    Button
*/
.product-close-btn {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    font-size: var(--fs-text-lg);
    color: var(--neutral-90);
    text-decoration: none;
    margin-left: auto;
    transition: color, 3ms ease-in;
}

.product-close-btn:hover {
    color: var(--primary);
}

.product-button {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    font-size: var(--fs-text-lg);
    background-color: var(--neutral-100);
    color: var(--neutral-10);
    border-radius: 100px;
    padding: 16px;
    border: none;
}

/* 
    Kat__Product
*/
.kat__product-category-wrapper {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.kat__product-category {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 40px 80px;
}

.product-title {
    font-size: var(--fs-display-sm);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.products-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 24px;
    width: 100%;
    overflow-y: auto;
}

.products-wrapper::-webkit-scrollbar {
    display: none;
}

.products-wrapper .divider {
    display: none;
    width: 100%;
    height: 1px;
    background-color: var(--neutral-30);
}

.product {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    align-items: center;
    gap: 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 342px;
    align-self: stretch;
    text-align: center;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.product-image {
    display: block;
    width: 100%;
    height: 200px;
    align-self: stretch;
    border-radius: 12px;
}

.product-content {
    font-size: var(--fs-text-xl);
    color: var(--neutral-90);
    flex: 1 1 0;
    align-self: stretch;
}

@media (max-width: 961px) {
    .kat__product-category {
        padding: 32px 28px;
    }
    .products-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .kat__product-category {
        padding: 24px;
    }

    .products-wrapper .divider {
        display: block;
    }
}