﻿/* Exclusive Deals Section */
.exclusive-deals {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 541px;
    overflow: hidden;
}

.exclusive-deals-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.exclusive-deals-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 64px;
    gap: 64px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.exclusive-deals-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 340px;
}

.exclusive-deals-heading {
    width: 100%;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.21;
    color: #121212;
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
}

.exclusive-deals-description {
    width: 100%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.17;
    color: #121212;
}

.exclusive-deals-cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: calc(100% - 340px - 64px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .exclusive-deals-cards::-webkit-scrollbar {
        display: none;
    }

/* Card styles */
.exclusive-deal-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 292px;
    height: 413px;
    flex: 0 0 auto;
    background: #FFFFFF;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 24px; 
    border: none;
    background: linear-gradient(90deg, #FFA332 0%, #D41A5D 100%);
    padding: 1px;
    position: relative;
    z-index: 0;
  
    filter: drop-shadow(0px 4px 6px rgba(60, 60, 60, 0.2));
}
   
    .exclusive-deal-card::before {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        background: #FFFFFF;
        border-radius: 23px;
        z-index: -1;
    }

   /* .exclusive-deal-card:hover {
        transform: translateY(-5px);
    }*/

.exclusive-deal-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.2), rgba(18, 18, 18, 0.2)), url('/Content/images/deals/default-deal.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px 24px 0 0;
}

.exclusive-deal-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 20px 16px;
    gap: 18px;
    width: 100%;
    height: 163px;
    border-radius: 0 0 24px 24px;
}

.exclusive-deal-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 100%;
}

.exclusive-deal-date {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.17;
    display: flex;
    align-items: center;
    color: #7D7D7D;
}

.exclusive-deal-title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.17;
    display: flex;
    align-items: center;
    color: #353535;
    margin: 0;
}

.exclusive-deal-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
    text-decoration: none;
}

.exclusive-deal-link-text {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.71;
    display: flex;
    align-items: center;
    text-align: center;
    color: #E9242B;
}

.exclusive-deal-link-icon {
    width: 16px;
    height: 16px;
    fill: #E9242B;
}




.exclusive-deals-cards.grabbing {
    cursor: grabbing;
}


@media screen and (max-width: 1200px) {
    .exclusive-deals-container {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
    }

    .exclusive-deals-content {
        width: 100%;
        max-width: 600px;
    }

    .exclusive-deals-cards {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .exclusive-deals-container {
        padding: 40px 24px;
    }

    .exclusive-deals-heading {
        font-size: 2.25rem;
        line-height: 1.22;
    }

    .exclusive-deals-description {
        font-size: 1rem;
        line-height: 1.25;
    }

}

@media screen and (max-width: 480px) {
    .exclusive-deals-container {
        padding: 32px 16px;
    }

    .exclusive-deals-heading {
        font-size: 1.75rem;
        line-height: 1.29;
    }

    .exclusive-deal-card {
        width: 260px;
        height: 380px;
    }

    .exclusive-deal-image {
        height: 200px;
    }

   
}
