/* High Conversion Hero Styles */
.badge-stock {
    background: #e8f5e9;
    /* Soft, natural green */
    color: #1b5e20;
    /* Deep forest green for readability */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #c8e6c9;
    /* Subtle border definition */
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.badge-stock:hover {
    background: #c8e6c9;
    border-color: #a5d6a7;
}

.badge-stock i {
    color: #2e7d32;
    /* Matching icon color */
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #ffb400;
    /* Gold */
    display: flex;
    gap: 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 180, 0, 0.2));
    /* Subtle glow */
}

.satisfaction-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-pulse {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 20px -5px rgba(93, 0, 150, 0.4);
    /* Refined shadow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -8px rgba(93, 0, 150, 0.5);
    filter: brightness(1.1);
}

.btn-pulse:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px -5px rgba(93, 0, 150, 0.5);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-ghost:hover {
    background: rgba(93, 0, 150, 0.05);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Layout Helpers (Desktop Default) */
.hero-header-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-header-group {
        align-items: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-pulse.large {
        width: 100%;
        justify-content: center;
        padding: 1rem !important;
    }
}