
/* ==============================================
   Banner Animation Styles (Product Detail)
   ============================================== */

/* Container Setup for Overlapping Content */
.page-title.detail-banner .auto-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Static Content (Hidden initially, shown on scroll) */
.banner-static-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Animated Intro Content (Visible initially) */
.banner-anim-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1100px;
    z-index: 2;
    text-align: center;
}

/* Typography & Layout for Intro */
.banner-anim-content .anim-title {
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    
    /* GSAP Initial State */
    opacity: 0;
    transform: translateY(-150px);
}

.banner-anim-content .anim-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 35px;
    max-width: 700px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

    /* GSAP Initial State */
    opacity: 0;
    transform: translateY(100px);
}

.banner-anim-content .anim-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-anim-content .anim-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;

    /* GSAP Initial State */
    opacity: 0;
    transform: translateY(100px);
}

.banner-anim-content .anim-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.banner-anim-content .anim-feature-item i {
    font-size: 24px;
    color: #fff; /* White icon */
}

.banner-anim-content .anim-feature-item span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-anim-content .anim-title {
        font-size: 42px;
    }
    
    .banner-anim-content .anim-desc {
        font-size: 16px;
    }
    
    .banner-anim-content .anim-features {
        gap: 15px;
    }
    
    .banner-anim-content .anim-feature-item {
        padding: 10px 15px;
        min-width: 120px;
    }
}
