/* Hero Banner Fix Styles */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 20px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Left Side Styles */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.hero-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 500px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary-large {
    background: #fff;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

.btn-secondary-large {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.payment-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-showcase {
    max-width: 500px;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.showcase-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    object-position: center;
    transform: scale(1.2);
}

.showcase-price-tag {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 120px;
    z-index: 10;
}

.price-tag-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 3px;
    display: block;
}

.price-tag-new {
    font-size: 18px;
    font-weight: 700;
    color: #ff3b30;
    margin-bottom: 3px;
    display: block;
}

.price-tag-save {
    font-size: 10px;
    color: #00c851;
    font-weight: 600;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 20px 60px;
        min-height: auto;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .hero-right {
        position: static;
        order: -1;
    }
    
    .hero-product-showcase {
        max-width: 350px;
        height: 400px;
    }
    
    .showcase-image {
        height: 400px;
    }
    
    .showcase-price-tag {
        position: static;
        margin-top: 20px;
        display: inline-block;
        right: auto;
    }
    
    .payment-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-product-showcase {
        max-width: 280px;
        height: 320px;
    }
    
    .showcase-image {
        height: 320px;
    }
}