.selection-section {
    padding: 40px 5%;
    background-color: #ffffff;
}

.selection-container {
    max-width: 1200px;
    margin: 0 auto;
}

.selection-header {
    text-align: center;
    margin-bottom: 50px;
}

.s-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C5A059;
    font-weight: 600;
}

.s-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    color: #1a1a1a;
    margin-top: 10px;
}

.s-line {
    width: 60px;
    height: 2px;
    background: #C5A059;
    margin: 20px auto;
}

/* Grid Logic: 3 products on desktop, 2 on tablet, 1 on mobile */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.s-card {
    background: #fff;
    transition: 0.3s;
}

.s-img-holder {
    position: relative;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f8f8;
}

.s-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

/* Hover Overlay */
.s-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.s-card:hover .s-overlay {
    opacity: 1;
}

.s-card:hover img {
    transform: scale(1.1);
}

.quick-view {
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #1a1a1a;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.quick-view:hover {
    background: #C5A059;
    color: #fff;
}

/* Info Styling */
.s-info {
    padding: 20px 0;
    text-align: center;
}

.s-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.s-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.s-shop-btn {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #C5A059;
    padding-bottom: 4px;
    transition: 0.3s;
}

.s-shop-btn:hover {
    color: #C5A059;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .selection-grid { grid-template-columns: repeat(2, 1fr); }
    .s-title { font-size: 32px; }
}

@media (max-width: 600px) {
    .selection-grid { grid-template-columns: 1fr; }
    .s-img-holder { height: 450px; }
}