.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;
    /* Card ko flex column banaya taaki content align ho sake */
    display: flex;
    flex-direction: column;
}

.s-img-holder {
    position: relative;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f8f8;
    /* Image holder ko fixed height di */
    flex-shrink: 0;
}

.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 - FIXED LAYOUT */
.s-info {
    padding: 20px 0;
    text-align: center;
    /* Flex grow taaki info section bache hue space le */
    flex: 1;
    /* Flex column taaki elements vertically arrange ho */
    display: flex;
    flex-direction: column;
    /* Content ko bottom se align kiya */
    justify-content: flex-end;
    /* Minimum height taaki sab cards mein same space rahe */
    min-height: 150px;
}

.s-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
    /* Title ko 2 lines tak restrict kiya */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    /* Fixed minimum height taaki price align rahe */
    min-height: 46px;
}

.s-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    /* Subtitle ko bhi fixed height di */
    min-height: 20px;
    margin-top: auto;
}

/* Price styling - FIXED POSITION */
.s-price {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #C5A059;
    font-weight: 600;
    margin-bottom: 10px;
    /* Price ko fixed position mein rakha */
    margin-top: auto;
}

.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;
    display: inline-block;
    margin-top: 5px;
}

.s-shop-btn:hover {
    color: #C5A059;
}

@media (max-width: 991px) {
    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    /* Mobile mein ab 1 row mein 2 items dikhenge */
    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Mobile image height adjust ki gayi hai */
    .s-img-holder {
        height: 200px;
    }

    .s-title {
        font-size: 20px;
    }

    .s-info {
        padding: 15px 0;
        min-height: 120px;
    }

    .s-info h3 {
        font-size: 13px;
        min-height: 34px;
    }

    .s-info p {
        font-size: 11px;
        min-height: 16px;
        margin-bottom: 8px;
    }

    .s-price {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .s-shop-btn {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .selection-section {
        padding: 15px 2%;
    }
}