/* ============================================================
   KeXoT Shop — Hero Section
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    padding-top: var(--header-height);
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,142,247,0.12) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation: floatGlow 6s ease-in-out infinite 2s;
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--brand-primary);
    opacity: 0.15;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.15; }
    90%  { opacity: 0.15; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* --- Hero Content --- */
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-3xl);
    min-height: calc(100vh - var(--header-height));
    padding: var(--space-3xl) 0;
}

/* Left */
.hero-left {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(79,142,247,0.1);
    border: 1px solid rgba(79,142,247,0.2);
    border-radius: var(--radius-full);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: var(--space-lg);
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    display: block;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line-2 {
    display: block;
    color: var(--text-primary);
    opacity: 0.88;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-cta .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Hero Product Showcase --- */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(79,142,247,0.1);
    animation: float 5s ease-in-out infinite;
}

.hero-product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-brand);
}

.hero-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.25);
    color: var(--accent-amber);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero-product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.hero-product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
}

.hero-product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero-product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.hero-product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.hero-product-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Floating accent cards */
.hero-accent {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.hero-accent.top-left {
    top: -15px;
    left: -50px;
    animation-delay: 1.5s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-green);
}

.hero-accent.bottom-right {
    bottom: 20px;
    right: -40px;
    animation-delay: 0.8s;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-accent .accent-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-accent .accent-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

/* --- Trusted Brands --- */
.hero-brands {
    padding: var(--space-xl) 0 var(--space-2xl);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.hero-brands-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.brands-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.brand-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
}

.brand-chip:hover {
    color: var(--text-secondary);
}

.brand-chip .brand-logo {
    font-size: 1.2rem;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .hero-right .hero-accent { display: none; }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-2xl) 0;
    }
    .hero-description { max-width: 100%; margin: 0 auto var(--space-xl); }
    .hero-cta    { justify-content: center; }
    .hero-stats  { justify-content: center; }
    .hero-right  { order: -1; }
    .hero-product-card { max-width: 320px; }
}

@media (max-width: 480px) {
    .hero-title  { font-size: 2.2rem; }
    .hero-cta .btn { flex: 1; }
    .hero-stats  { gap: var(--space-lg); }
    .brands-scroll { gap: var(--space-md); }
}
