
.mobile-notification .row {
    margin-left: 0;
    margin-right: 0;
}

.mobile-notification {
    padding-left: 0;
    padding-right: 0;
}

/* Or more specific */
.col-md-12.mobile-notification {
    padding-left: 0;
    padding-right: 0;
}

.countdown-banner {
    background: #900;
    color: white;
    padding: 15px 0; /* Changed from 15px 20px */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0; /* Ensure no margin */
    width: 100%; /* Full width background */
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    max-width: 1200px; /* Cap the maximum width */
    margin: 0 auto;
    padding: 0 15px;
}

.countdown-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.countdown-text {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

.countdown-text-right {
    margin-right:  20px;
}

.countdown-timer {
    display: flex;
    gap: 8px;
    align-items: flex-end; /* Align to bottom so units line up */
}

.countdown-unit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: auto; /* Let it take natural height */
}

.countdown-unit {
    background: white;
    color: #333;
    border-radius: 4px;
    padding: 8px 10px;
    font-weight: bold;
    min-width: 35px;
    width: 45px; /* Fixed width instead of min-width */
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.countdown-unit.flash {
    background: #ffeb3b;
    color: #333;
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.6);
}

.countdown-unit.flash-grey {
    background: #ccc;
    color: #333;
}

.countdown-colon {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 2px;
    align-self: flex-end; /* Align with the bottom (where units are) */
    padding-bottom: 8px; /* Match the unit's bottom padding */
}

.countdown-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-shop-btn {
    background: rgba(255,255,255,0.9);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left:  10px;
}

.countdown-shop-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Medium wiggle animation */
@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-8deg); }
    20% { transform: rotateZ(5deg); }
    25% { transform: rotateZ(-4deg); }
    30% { transform: rotateZ(3deg); }
    35% { transform: rotateZ(-2deg); }
    40%, 100% { transform: rotateZ(0); }
}

.countdown-shop-btn.wiggle {
    animation: wiggle 0.8s ease-in-out;
}

/* Alternative: Pulse wiggle */
@keyframes pulseWiggle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(-2deg); }
    50% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.05) rotate(-1deg); }
}

.countdown-shop-btn.pulse-wiggle {
    animation: pulseWiggle 0.6s ease-in-out;
}

.countdown-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    opacity: 0.8;
}

.countdown-close:hover {
    opacity: 1;
}

.mobile-notification {
    margin-bottom: 0px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .countdown-banner {
        padding: 15px 0; /* Keep it consistent - no horizontal padding */
    }

    .countdown-content {
        max-width: 540px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 0 15px;
        margin: 0;
    }

    .countdown-left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .countdown-right {
        justify-content: center;
        width: 100%;
    }

    .countdown-close {
        position: absolute;
        top: 10px;
        right: -20px;
    }

    .countdown-text {
        font-size: 1rem;
    }

    .countdown-unit {
        padding: 10px 12px; /* Increased from 6px 8px */
        min-width: 40px; /* Increased from 30px */
        font-size: 1.1rem; /* Increased from 0.9rem */
    }

    .countdown-shop-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-unit-wrapper {
        gap: 2px;
    }

    .countdown-colon {
        padding-bottom: 6px; /* Match mobile unit padding */
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 6px;
    }

    .countdown-unit {
        padding: 8px 10px; /* Increased from 5px 6px */
        min-width: 35px; /* Increased from 25px */
        font-size: 1rem; /* Increased from 0.8rem */
    }

    .countdown-text {
        font-size: 0.9rem;
    }

    .countdown-shop-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 0.3px;
    }
    
    .countdown-unit-wrapper {
        gap: 1px;
    }
} 


/* Bootstrap container breakpoints */
@media (max-width: 1200px) {
    .countdown-content {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .countdown-content {
        max-width: 720px;
    }
    .countdown-text-right {
        display:  none;
    }
}

@media (max-width: 768px) {
    .countdown-content {
        max-width: 540px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
} 

#navigation .inner {
    border-bottom:  0px;
}
