.big-deal-slider {
    position: relative;
    padding:20px;
    height: 700px;
    overflow: hidden;
    width: 100%;
}

.big-deal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
    pointer-events: none;
    z-index: 0;
}

.big-deal-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    transition-delay: 0s;
}

/* Wrapper for content */
.big-deal-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: 'Inter', sans-serif;
}

/* Left & Right product blocks */
.big-deal-banner {
    width: 463px;
    height: 671px;
    border-radius: 9px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 33px;
}

/* Center big deal content */
.big-deal-center {
    flex-grow: 1;
    max-width: 600px;
    height: 671px;
    border-radius: 9px;
    background-size: cover;
    background-position: center;
    padding: 33px 57px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

/* Deal content */
.big-deal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 450px;
}

.deal-tagline {
    font-size: 14px;
    font-weight: 400;
}

.deal-title {
    font-size: 50px;
    margin: 0;
    font-weight: 500;
}

.deal-subtitle {
    font-size: 18px;
    margin-top: 10px;
}

.deal-timer {
    display: flex;
    gap: 10px;
}

.timer-box {
    width: 79px;
    height: 95px;
    backdrop-filter: blur(4px);
    background-color: rgba(167, 167, 167, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timer-box h2 {
    margin: 0;
    font-size: 27px;
    font-weight: 600;
}

.timer-box span {
    font-size: 14px;
}

.deal-cta {
    margin-top: 10px;
    background: #fff;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 26.5px;
    text-decoration: none;
}

/* View Product button */
.deal-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 16px 23px;
    border-radius: 27.5px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

/* Carousel Dots */
.big-deal-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.big-deal-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.big-deal-dot.active {
    background: #333;
}
