@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

.exclusive-slider-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.gold-label {
    font-family: 'Inter', sans-serif;
    color: #C5A059;
    letter-spacing: 5px;
    font-size: 11px;
    text-transform: uppercase;
}

.slider-main-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-top: 10px;
    color: #1a1a1a;
}

.gold-underline {
    width: 50px;
    height: 2px;
    background: #C5A059;
    margin: 15px auto;
}

/* Container Logic */
.ex-slider-container {
    display: flex;
    gap: 30px;
    padding: 20px 5%;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
}

.ex-slider-container::-webkit-scrollbar { display: none; }

/* Product Card Styling */
.ex-product-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 Products per row */
    min-width: 350px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #f0f0f0;
}

.ex-img-area {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.ex-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.ex-product-card:hover img {
    transform: scale(1.1);
}

.ex-info {
    padding: 25px;
    text-align: center;
}

.ex-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.ex-info p {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
}

.ex-shop-btn {
    text-decoration: none;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #C5A059;
    padding-bottom: 4px;
    transition: 0.3s;
}

.ex-shop-btn:hover {
    color: #C5A059;
}

/* Mobile */
@media (max-width: 991px) {
    .ex-product-card { flex: 0 0 75%; min-width: 280px; }
    .ex-img-area { height: 300px; }
}