.help-text {
    text-align: center;
    font-size: 0.9em;
    margin-top: 20px;
}

.fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f8f9fa;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,.1);
}
.cart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    opacity: 0.9;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    text-align: center;
}
.offer_price{
    font-size: 22px;
    font-weight: 600;
}

/* style.css */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff; /* or any color you prefer */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* subtle shadow for depth */
    padding: 10px 0;
}

.sticky-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-header .logo {
    height: 30px; /* or as per your logo's aspect ratio */
    width: auto;
}
/* style.css */

/* ... existing styles ... */

/* Styling for the offer message */
.offer-message {
    padding: 5px 15px;
    background-image: linear-gradient(45deg, #f06, #48f);
    color: white;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    animation: pulseAnimation 2s infinite;
}

/* Keyframes for the pulse effect */
@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}




