/* Hero Banner Block Styles */
.wpfsc-hero-banner {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Modern curved background shapes */
.wpfsc-hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    /* height: 120%; */
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(33, 136, 251, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(118, 75, 162, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}
.product-slider-container .product-category {
    padding: 0 !important;
    border: none;
    border-radius: unset;
    box-shadow: none;
    min-height: 45px;
    margin: 0;
}

.wpfsc-hero-banner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40vh;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transform-origin: bottom center;
    z-index: 1;
}

/* Additional floating elements */
.wpfsc-hero-banner .floating-shape-1,
.wpfsc-hero-banner .floating-shape-2,
.wpfsc-hero-banner .floating-shape-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.6;
    z-index: 1;
}

.wpfsc-hero-banner .floating-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(33, 136, 251, 0.2));
    top: 10%;
    left: -10%;
    animation: float 15s ease-in-out infinite;
}

.wpfsc-hero-banner .floating-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(118, 75, 162, 0.2), rgba(240, 147, 251, 0.1));
    top: 60%;
    right: -5%;
    animation: float 18s ease-in-out infinite reverse;
}

.wpfsc-hero-banner .floating-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(255, 255, 255, 0.1));
    bottom: 20%;
    left: 20%;
    animation: float 12s ease-in-out infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-slide {
    display: none;
    width: 100%;
    animation: fadeInSlide 0.8s ease forwards;
}

.hero-slide.active {
    display: block;
}

.hero-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Content Side */
.hero-content {
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    color: white;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    font-weight: 400;
    color: white !important;
}

.hero-button {
    display: inline-block;
    background: white;
    color: #2188FB;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    background: #f8f9fa;
    color: #1a6dd5;
}

/* Visual Side */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mockup {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* T-Shirt Mockup */
.tshirt-mockup {
    width: 300px;
    height: 360px;
    background: white;
    clip-path: polygon(
        25% 0%, 75% 0%, 
        85% 15%, 100% 15%, 100% 25%, 
        85% 25%, 85% 100%, 
        15% 100%, 15% 25%, 
        0% 25%, 0% 15%, 
        15% 15%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

/* Floating Elements */
.hero-visual::before {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    z-index: 4;
}

.hero-visual::after {
    content: '🎨';
    position: absolute;
    bottom: 15%;
    right: 15%;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite 1.5s;
    z-index: 4;
}

/* Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

/* Editor Styles */
.wpfsc-hero-banner-editor {
    background: linear-gradient(135deg, #2188FB 0%, #1e7ae8 50%, #1a6dd5 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.wpfsc-hero-banner-editor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="editorGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23editorGrid)"/></svg>');
    z-index: 0;
}

.hero-slide-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-slide-preview .hero-content {
    color: white;
}

.hero-slide-preview .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-slide-preview .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.hero-slide-preview .tshirt-mockup {
    width: 200px;
    height: 240px;
    font-size: 3rem;
}

.button-preview {
    display: inline-block;
    background: white;
    color: #2188FB;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.indicator.active {
    background: white;
}

.additional-slides-info {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-slide-content {
        gap: 2rem;
    }
    
    .tshirt-mockup {
        width: 250px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .wpfsc-hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-shape-1,
    .floating-shape-2,
    .floating-shape-3 {
        display: none;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-slide-content,
    .hero-slide-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tshirt-mockup {
        width: 200px;
        height: 240px;
        font-size: 3rem;
    }
    
    .hero-nav {
        display: none;
    }
    
    .hero-slide-preview .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .tshirt-mockup {
        width: 150px;
        height: 180px;
        font-size: 2rem;
    }
}
