/* ============================================
   DOORS & WINDOWS - CREATIVE MODERN DESIGN
   Premium • Dynamic • Immersive
   ============================================ */

/* ========== CSS Variables ========== */
:root {
    --color-primary: #f3821a;
    --color-primary-dark: #e07316;
    --color-primary-light: #ff9a44;
    --color-secondary: #1a1a2e;
    --color-accent: #ff6b35;
    --color-background: #ffffff;
    --color-heading: #1a1a2e;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-surface: #f8f9fa;
    --color-border: #e9ecef;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --container-max-width: 1400px;
    --container-padding: 40px;
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========== Base Styles ========== */
.page-doors-windows {
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-doors-windows .elementor-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========== HERO CAROUSEL - Cinematic ========== */
.doors-windows-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
}

.hero-carousel-module {
    height: 100%;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-wrapper {
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    position: absolute;
    inset: 0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.carousel-slide.active .slide-image img {
    animation: heroKenBurns 10s ease-out forwards;
}

@keyframes heroKenBurns {
    0% { transform: scale(1.1) translateX(0); }
    100% { transform: scale(1.15) translateX(-2%); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.9) 0%,
        rgba(26, 26, 46, 0.6) 40%,
        rgba(243, 130, 26, 0.2) 100%
    );
}

/* Diagonal accent line */
.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(243, 130, 26, 0.1) 100%);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-text {
    padding-left: 10%;
    max-width: 700px;
}

.slide-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 30px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.carousel-slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

.slide-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 60px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
    box-shadow: 0 20px 40px rgba(243, 130, 26, 0.3);
}

.carousel-slide.active .slide-button {
    transform: translateY(0);
    opacity: 1;
}

.slide-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 50px rgba(243, 130, 26, 0.4);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 40px; }
.carousel-next { right: 40px; }

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator.active {
    background: var(--color-primary);
    width: 40px;
    border-radius: 6px;
}

/* ========== SECTION: Customize Dream Doors - Split Layout ========== */
.customize-dream-doors {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
    overflow: hidden;
}

/* Decorative background */
.customize-dream-doors::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 130, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.customize-dream-doors::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(243, 130, 26, 0.1);
    border-radius: 50%;
}

.dream-doors-content {
    position: relative;
    z-index: 1;
}

.content-left {
    max-width: 700px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--color-heading);
    margin: 0 0 25px;
    line-height: 1.2;
    letter-spacing: -2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin-top: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.9;
    margin: 0 0 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 60px;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    transition: left var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(243, 130, 26, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

/* ========== SECTION: Product Showcase - 3D Cards ========== */
.product-showcase-section {
    padding: 100px 0;
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

/* Grid pattern background */
.product-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(243, 130, 26, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 130, 26, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.showcase-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-bounce);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.showcase-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.showcase-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.showcase-card:hover img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 40px;
}

.showcase-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.showcase-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0 0 30px;
}

.showcase-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--color-heading);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--color-heading);
    border-radius: 60px;
    transition: all var(--transition-fast);
}

.showcase-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateX(5px);
}

/* ========== SECTION: More Products - Modern Grid ========== */
.more-products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-surface) 0%, #fff 100%);
}

.more-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.more-product-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-bounce);
}

.more-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.more-product-card:hover::before {
    transform: scaleX(1);
}

.more-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.more-product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.more-product-card:hover img {
    transform: scale(1.05);
}

.more-product-content {
    padding: 35px;
}

.more-product-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 12px;
}

.more-product-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0 0 25px;
}

.more-product-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 25px rgba(243, 130, 26, 0.2);
}

.more-product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(243, 130, 26, 0.3);
}

/* ========== SECTION: Experience Banner - Parallax ========== */
.experience-banner-section {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    inset: 0;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 5s ease;
}

.experience-banner-section:hover .banner-background img {
    transform: scale(1.15);
}

.banner-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(243, 130, 26, 0.6) 100%
    );
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 40px;
}

.experience-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ========== SECTION: Hardware Accessories ========== */
.hardware-accessories-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

/* Decorative element */
.hardware-accessories-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 130, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.hardware-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hardware-description {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.9;
    max-width: 900px;
}

/* ========== SECTION: Second Banner ========== */
.second-banner-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.banner-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay gradient */
.second-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.3), rgba(243, 130, 26, 0.3));
    pointer-events: none;
}

/* ========== SECTION: Client Say - Glassmorphism ========== */
.client-say-section {
    position: relative;
    overflow: hidden;
}

.client-say-bg {
    background-color: var(--color-surface);
    background-size: cover;
    background-position: center;
    position: relative;
}

.client-say-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.95) 0%, rgba(248, 249, 250, 0.8) 100%);
}

.client-say-bg > .elementor-container {
    position: relative;
    z-index: 1;
}

.client-say-small-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 15px;
    padding-top: 80px;
}

.client-say-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.client-say-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--color-heading);
    margin: 0 0 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.client-say-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
}

.header-right {
    flex-shrink: 0;
}

.quote-icon {
    font-size: 150px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    opacity: 0.3;
}

/* Client Carousel */
.client-carousel {
    position: relative;
    margin-bottom: 60px;
}

.client-carousel-wrapper {
    overflow: hidden;
    border-radius: 24px;
}

.client-carousel-slide {
    display: none;
}

.client-carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.client-review-slide {
    display: flex;
    gap: 40px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.review-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(243, 130, 26, 0.2);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content-wrapper {
    flex: 1;
}

.review-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 5px;
}

.review-role {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
}

.review-text-full {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.9;
    margin: 0;
}

/* Carousel Navigation */
.client-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--color-heading);
}

.client-carousel-nav:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.client-carousel-prev { left: -20px; }
.client-carousel-next { right: -20px; }

/* Carousel Indicators */
.client-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.client-indicator {
    width: 10px;
    height: 10px;
    background: var(--color-border);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.client-indicator.active {
    background: var(--color-primary);
    width: 35px;
    border-radius: 5px;
}

/* About Team Content */
.about-team-content {
    padding: 80px 0;
    background: var(--color-secondary);
    margin-top: 0;
}

.about-team-content .elementor-container {
    text-align: center;
}

.team-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1px;
}

.team-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 600px;
}

.team-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    transition: all var(--transition-fast);
}

.team-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 130, 26, 0.3);
}

/* ========== STICKY CTA BUTTON - Enhanced ========== */
.sticky-cta-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(243, 130, 26, 0.4);
    transition: all var(--transition-bounce);
    overflow: hidden;
}

.sticky-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.sticky-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(243, 130, 26, 0.5);
}

.sticky-cta-button:hover::before {
    left: 100%;
}

.sticky-cta-button svg {
    width: 20px;
    height: 20px;
}

.sticky-cta-button.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

.sticky-cta-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .products-showcase-grid,
    .more-products-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding: 30px;
    }

    .doors-windows-hero {
        height: 80vh;
        min-height: 600px;
    }

    .slide-text {
        padding-left: 5%;
    }

    .carousel-prev { left: 20px; }
    .carousel-next { right: 20px; }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .client-review-slide {
        flex-direction: column;
        padding: 35px;
    }

    .review-avatar {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .doors-windows-hero {
        height: 70vh;
        min-height: 500px;
    }

    .slide-text {
        padding: 0 20px;
    }

    .carousel-nav {
        display: none;
    }

    .customize-dream-doors {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .showcase-content,
    .more-product-content {
        padding: 25px;
    }

    .showcase-card img,
    .more-product-card img {
        height: 220px;
    }

    .experience-banner-section {
        height: 250px;
    }

    .client-say-header {
        flex-direction: column;
        gap: 20px;
    }

    .quote-icon {
        font-size: 80px;
    }

    .client-carousel-nav {
        width: 45px;
        height: 45px;
    }

    .client-carousel-prev { left: 5px; }
    .client-carousel-next { right: 5px; }

    .about-team-content {
        padding: 60px 0;
    }

    .sticky-cta-button {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-showcase-grid,
    .more-products-grid {
        gap: 25px;
    }

    .showcase-card img,
    .more-product-card img {
        height: 200px;
    }

    .cta-button,
    .showcase-button,
    .more-product-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========== ACCESSIBILITY: Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .showcase-card:hover,
    .more-product-card:hover,
    .sticky-cta-button:hover {
        transform: none;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-card,
.more-product-card {
    animation: fadeInUp 0.8s ease forwards;
}

.showcase-card:nth-child(1),
.more-product-card:nth-child(1) { animation-delay: 0.1s; }
.showcase-card:nth-child(2),
.more-product-card:nth-child(2) { animation-delay: 0.2s; }
.showcase-card:nth-child(3),
.more-product-card:nth-child(3) { animation-delay: 0.3s; }
.showcase-card:nth-child(4),
.more-product-card:nth-child(4) { animation-delay: 0.4s; }
