.comparison-container {
    padding: 2rem 0;
}

.comparison-container h1 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-container .image-compare {
    position: relative;
    width: 100%;
    /* max-width: 1000px; */
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.comparison-container .image-before,
.comparison-container .image-after {
    width: 100%;
    display: block;
}

.comparison-container .image-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.comparison-container .slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.comparison-container .slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.comparison-container .slider-arrows {
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .comparison-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .comparison-container .slider-button {
        height: 40px;
        width: 40px;
    }

    .comparison-container .slider-arrows {
        font-size: 1rem;
    }

    .comparison-container .image-compare {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .comparison-container .comparison-container {
        padding: 1rem 0;
    }

    .comparison-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .comparison-container .slider-button {
        height: 30px;
        width: 30px;
    }

    .comparison-container .image-compare {
        height: 200px;
    }
}



/* countdown timer */

.buy-get-section-style {
    background: url("../images/timer/bg.jpg") no-repeat center center;
}

.buy-get-section-style .first-heading {
    font-size: 12px;
    color: white;
}

.buy-get-section-style .main-heading {
    font-size: 55px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
}

.buy-get-section-style p {
    color: white;
}

.buy-get-section-style .shop-now-btn {
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    padding: 13px 17px;
    text-decoration: none;
    box-shadow: 0 0 10px #0000004d;
}

.buy-get-section-style .countdown-container {
    position: relative;
}

.buy-get-section-style .time-section {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buy-get-section-style .time-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buy-get-section-style .time-label {
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-top: 5px;
    text-transform: uppercase;
}

.buy-get-section-style .flip-card-container {
    display: flex;
    gap: 4px;
}

.buy-get-section-style .flip-card {
    width: 40px;
    height: 70px;
    perspective: 600px;
    position: relative;
}

.buy-get-section-style .flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.buy-get-section-style .flip-card-front,
.buy-get-section-style .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 40px;
    color: white;
    background-color: #00000070;
}

.buy-get-section-style .flip-card-back {
    transform: rotateX(180deg);
}

.buy-get-section-style .separator {
    font-size: 40px;
    font-weight: bold;
    display: flex;
    color: white;
}

.buy-get-section-style .inactive {
    opacity: 0.5;
}