.warmrose-category-card {
    list-style: none;
    background: #f8f1e8;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.products.products-container {
    justify-content: center !important;
}

.warmrose-category-card {
    margin: 5px;
}

.warmrose-category-card:hover {
    transform: translateY(-4px);
}

.warmrose-category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.warmrose-category-image {
    position: relative;
    overflow: hidden;
}

.warmrose-category-image img {
    width: 100%;
    height: 326px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.warmrose-category-card:hover .warmrose-category-image img {
    transform: scale(1.03);
}

.warmrose-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 35%,
        rgba(0,0,0,0) 70%
    );
}

.warmrose-category-overlay {
    position: absolute;
    left: 42px;
    bottom: 42px;
    z-index: 2;
}

.warmrose-category-overlay span {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ead8c9;
    font-weight: 500;
}

.warmrose-line {
    width: 102px;
    height: 1px;
    background: #ead8c9;
    margin: 1px 0 8px;
}

.warmrose-category-overlay h3 {
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.warmrose-category-description {
    background: #f8f1e8;
    padding: 42px 30px 54px;
    text-align: center;
}

.warmrose-category-description p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.45;
    color: #5d4c43;
    font-weight: 400;
}



/* Mobile */
@media (max-width: 768px) {
    .warmrose-category-image img {
        height: 360px;
    }

    .warmrose-category-overlay {
        left: 24px;
        bottom: 28px;
    }

    .warmrose-category-overlay h3 {
        font-size: 38px;
    }

    .warmrose-category-description {
        padding: 28px 22px 36px;
    }

    .warmrose-category-description p {
        font-size: 17px;
    }
}