/* Section wrapper */
.wrs-section {
    margin: 40px 0;
}

/* Featured row behaves like a simple carousel */
.wrs-featured-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* Optional: nicer scrollbar in Chrome */
.wrs-featured-row::-webkit-scrollbar {
    height: 6px;
}
.wrs-featured-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Product card 
.wrs-card {
    min-width: 200px;
    max-width: 220px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    text-align: center;
    flex-shrink: 0;
}

.wrs-card a {
    text-decoration: none;
    color: inherit;
}*/

/* Product card – generic */
.wrs-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    text-align: center;
}

/* Links inside card */
.wrs-card a {
    text-decoration: none;
    color: inherit;
}

/* In the featured row, cards behave like small carousel items */
.wrs-featured-row .wrs-card {
    min-width: 200px;
    max-width: 220px;
    flex-shrink: 0;
}


/* Image */
.wrs-thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* Title + price */
.wrs-title {
    font-size: 1rem;
    margin: 10px 0 4px;
}
.wrs-price {
    font-weight: 600;
    margin: 0;
}




/* Grid for ALL products 
.wrs-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
*/

/* Grid for ALL products + wishlist */
.wrs-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}


.wrs-badge-out {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #b00020;
    font-weight: 600;
}


@media (max-width: 480px) {
    .wrs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

