/* Campaigns Specific Styles */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    /* Removed padding from general glass-panel to allow full-bleed images in children */
    padding: 0;
    max-width: 1000px;
    /* Wider for side-by-side */
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-panel-content {
    padding: 60px;
    /* Inner padding for text-only panels */
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* New Active Campaign Styles - Flyer/Banner Layout */
/* Poster / Legendary Campaign Styles */
/* Premium Glass Campaign Styles */
.active-campaign-wrapper {
    display: flex;
    flex-direction: column;
    /* Revert to column */
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    max-width: 800px;
    width: 95%;
    margin: 40px auto;
    border-radius: 30px;
}





@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.campaign-content-side {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.shock-ribbon {
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    padding: 12px 20px;
    width: 110%;
    margin: 0 -5% 20px -5%;
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.shock-ribbon .shock-text {
    margin: 0;
    text-align: center;
    font-size: 1.3rem;
}

.shock-text {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.shock-highlight {
    background: #f1f5f9;
    color: #e63946;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 1.1em;
    display: inline-block;
    margin: 0 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}



.legendary-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 950;
    font-size: 2.8rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.legendary-title span {
    color: #cbd5e1;
    display: block;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 5px;
    background: linear-gradient(180deg, #e2e8f0 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Red Price Badge - Modern Premium Seal Style */
.red-price-badge {
    background: linear-gradient(135deg, #e63946, #d00000);
    color: white;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    margin: 25px 0;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.red-price-badge:hover {
    box-shadow: 0 15px 50px rgba(230, 57, 70, 0.7);
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-price {
    font-size: 4.2rem;
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: -3px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.badge-unit {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 5px;
    opacity: 0.95;
}

@keyframes heartbeat {
    0% {
        transform: rotate(5deg) scale(1);
    }

    15% {
        transform: rotate(5deg) scale(1.05);
    }

    30% {
        transform: rotate(5deg) scale(1);
    }

    45% {
        transform: rotate(5deg) scale(1.05);
    }

    60% {
        transform: rotate(5deg) scale(1);
    }

    100% {
        transform: rotate(5deg) scale(1);
    }
}

.campaign-desc-text {
    font-size: 1rem;
    /* Scaled down */
    color: var(--text-main);
    font-weight: 500;
    margin-top: 20px;
    max-width: 500px;
}

/* Footer & Socials */
.campaign-footer-info {
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.social-ribbon {
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    padding: 15px 20px;
    width: 100%;
    position: relative;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-ribbon-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* removed textGlow @keyframes */

.social-divider {
    display: none;
}

.social-links-campaign {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.facebook {
    background: #3b5998;
}

.whatsapp {
    background: #25D366;
}

.social-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .active-campaign-wrapper {
        padding: 30px 15px;
        /* Less padding on sides */
        width: 100%;
        margin: 20px 0;
        border-radius: 0;
        /* Full width looks better on very small screens */
    }

    .shock-ribbon {
        width: 100%;
        margin: 0 0 15px 0;
        padding: 10px;
    }

    .shock-ribbon .shock-text {
        font-size: 1.1rem;
    }

    .legendary-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .legendary-title span {
        font-size: 1.3rem;
    }

    .red-price-badge {
        width: 90%;
        max-width: 260px;
        height: auto;
        padding: 15px;
        border-radius: 20px;
        margin: 15px auto;
    }

    .badge-price {
        font-size: 3rem;
    }

    .badge-unit {
        font-size: 1.3rem;
    }

    .social-ribbon {
        width: 100%;
        padding: 12px 10px;
    }

    .social-ribbon-text {
        font-size: 1rem;
    }

    .social-links-campaign {
        flex-direction: column;
        /* Stack buttons on small screens */
        width: 100%;
        padding: 0 20px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Light Mode Overrides for Campaign Section */
[data-theme="light"] .legendary-title {
    color: #0077b6;
}

[data-theme="light"] .legendary-title span {
    color: #000000;
}

[data-theme="light"] .shock-text {
    color: #000000;
}

[data-theme="light"] .shock-highlight {
    color: #000000;
}

[data-theme="light"] .social-ribbon-text {
    color: #000000;
}