/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:35:20 */
/* --- Base Styles (Updated with BLACK text) --- */
.promo-banner-v2au {
    /* Background and Border */
    background-color: #FFE8CC;
    border: 1px solid #FFDAB3;

    /* UPDATED: Changed text color from dark brown to black */
    color: #000;

    padding: 12px 20px;
    margin: 25px auto;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hide the mobile-specific text on desktop */
.promo-text-mobile {
    display: none;
}

/* Text Styling */
.promo-banner-v2au p {
    margin: 0;
    font-size: 15px;
}

.promo-banner-v2au p strong {
    font-weight: 600;
}

/* Coupon Code Styling */
.promo-coupon-code {
    display: inline-block;
    background-color: rgba(133, 100, 4, 0.08);
    border: 2px dashed #856404; /* Kept this color to match the orange theme */
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    margin: 0;
}

.promo-coupon-code:hover {
    background-color: rgba(133, 100, 4, 0.15);
}

/* Countdown Styling */
.promo-countdown {
    font-size: 15px;
    font-weight: bold;
}

.promo-countdown span {
    background: #FFDAB3;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0 3px;
    text-shadow: none;
}

/* --- "Copied!" Tooltip --- */
.promo-coupon-code::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #856404; /* This background is dark brown */
    
    /* UPDATED: Tooltip text color is now black */
    color: #000;

    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.promo-coupon-code.copied::after {
    opacity: 1;
    visibility: visible;
}


/* ================================================================
  MOBILE STYLES (No changes needed here)
================================================================
*/
@media (max-width: 767px) {
    .promo-banner-v2au {
        flex-direction: column; /* Stack items vertically */
        padding: 15px;
        gap: 10px;
    }

    /* Hide desktop text and show the new mobile text */
    .promo-text-desktop {
        display: none;
    }
    .promo-text-mobile {
        display: block;
        text-align: center;
    }
}