/* project-root/public/shop/assets/css/index.css */

.hero {
    color: #fff;
    background: linear-gradient(90deg, #111827 0%, #1f2937 45%, #b91c1c 100%);
}

.hero-home {
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.hero-grid.single-column {
    grid-template-columns: 1fr;
}

.hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero p {
    margin: 0;
    max-width: 800px;
    color: #e4e4e7;
    font-size: 18px;
    line-height: 1.7;
}

.hero-badge,
.category-kicker {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 22px;
    backdrop-filter: blur(8px);
}

.stat-card span {
    display: block;
    font-size: 14px;
    color: #e4e4e7;
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 40px;
    font-weight: 900;
}

.stat-card-wide {
    grid-column: 1 / -1;
}

.category-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card h3 {
    margin: 18px 0 10px;
    font-size: 28px;
    line-height: 1.1;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .hero-grid,
    .category-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hero-home {
        padding: 42px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}