#fw-section-hero-video-a72343b7-cd61-449e-88d4-49508781b7f0 {
--font-heading-scale: 0.73;
--font-body-scale: 0.82;
}
#fw-section-hero-video-a72343b7-cd61-449e-88d4-49508781b7f0 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #ffffff;
--color-background-rgb: 255, 255, 255;
--color-on-background: #0e171f;
--color-on-background-rgb: 14, 23, 31;
--color-on-primary: #5c3333;
--color-on-primary-rgb: 92, 51, 51;
--color-product-image-background: #0e171f;
--color-background-brightness: 255;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #000000;
--primary-btn-text: #5c3333;
--primary-btn-border-color: #0e171f;
--secondary-btn-bg: transparent;
--secondary-btn-text: #0e171f;
--secondary-btn-border-color: #0e171f;
/* HERO HEADING */
h1, .banner-heading, .hero-title {
    font-size: 20px !important;
    font-weight: 300 !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #ff4d4d, #ffcc00, #00e5ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 10px rgba(255, 77, 77, 0.4),
        0 0 20px rgba(0, 229, 255, 0.3);
    animation: glowText 4s infinite linear;
}

/* SUBTEXT */
p, .hero-subtitle {
    font-size: 18px !important;
    color: #ffffff !important;
    font-weight: 250;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

/* BUTTON */
button, .btn, a.button {
    background: linear-gradient(135deg, #ff512f, #dd2476) !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 350 !important;
    border-radius: 50px !important;
    padding: 11px 20px !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(255, 81, 47, 0.4);
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover, a.button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(221, 36, 118, 0.5);
}

/* GLOW ANIMATION */
@keyframes glowText {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
/* HERO HEADING ANIMATION */
h1, .banner-heading, .hero-title {
    font-size: 72px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 4px;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.6),
        0 0 40px rgba(255,255,255,0.4);
    
    animation: fadeZoom 3s ease-in-out infinite alternate;
}

/* SMOOTH ANIMATION */
@keyframes fadeZoom {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-8px) scale(1.03);
        opacity: 1;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.9;
    }
}
}



#fw-section-text-carousel-9e76b672-9394-4c5c-8eaa-67271eb785aa {
--font-heading-scale: 0.7;
--font-body-scale: 0.7;
}
#fw-section-text-carousel-9e76b672-9394-4c5c-8eaa-67271eb785aa {

/* Scrolling Text Black Color */
.marquee,
.scrolling-text,
.marquee-text {
    color: #000000 !important;
}
}


#fw-section-footer {

/* FOOTER BACKGROUND */
footer {
    background: #f5f5f5 !important;
    padding: 60px 20px !important;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* NEWSLETTER TITLE */
footer h2,
.newsletter-title {
    font-size: 48px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #000 !important;
    letter-spacing: 2px;
    animation: fadeGlow 3s infinite ease-in-out;
}

/* EMAIL INPUT */
footer input[type="email"] {
    border: 2px solid #ddd !important;
    border-radius: 20px !important;
    padding: 20px 25px !important;
    font-size: 22px !important;
    background: #fff !important;
    transition: all 0.3s ease;
}

footer input[type="email"]:focus {
    border-color: #000 !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    outline: none;
}

/* SUBSCRIBE BUTTON */
footer button,
footer .btn,
footer .subscribe-btn {
    background: #000 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 18px 35px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease-in-out;
    border: none !important;
}

footer button:hover,
footer .btn:hover,
footer .subscribe-btn:hover {
    transform: translateY(-4px) scale(1.06);
    background: #222 !important;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* SOCIAL ICONS */
footer .social-icons a,
footer svg {
    font-size: 28px !important;
    color: #000 !important;
    transition: all 0.3s ease;
}

footer .social-icons a:hover,
footer svg:hover {
    transform: translateY(-6px) scale(1.2);
    color: #555 !important;
}

/* FOOTER LINKS */
footer a {
    color: #111 !important;
    font-size: 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #000 !important;
    letter-spacing: 1px;
}

/* COPYRIGHT */
footer p,
footer small {
    color: #777 !important;
    font-size: 18px !important;
}

/* TITLE ANIMATION */
@keyframes fadeGlow {
    0% {
        opacity: 0.8;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}
}


#fw-section-header {
--font-heading-scale: 1.0;
--font-body-scale: 1.12;
}