.hero {
    padding: 68px 0;
    background:
        radial-gradient(circle at top right, rgba(244, 180, 0, .18), transparent 32%),
        linear-gradient(135deg, #ffffff, #eef5ff);
}

.hero-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--primary-dark);
    font-size: 46px;
    line-height: 1.08;
}

.hero p {
    max-width: 640px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 18px;
}

.home-section {
    padding: 42px 0 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.section-title h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 28px;
}

.section-title a {
    color: var(--primary);
    font-weight: 700;
}

.category-grid,
.product-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.category-card {
    display: block;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--primary-dark);
    font-weight: 900;
}

.category-card:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    background: #eef2f7;
    color: var(--muted);
    font-weight: 700;
}

.product-body {
    padding: 18px;
}

.product-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(244, 180, 0, .18);
    color: #8a6400;
    font-size: 12px;
    font-weight: 900;
}

.product-card h3 {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1.3;
}

.product-meta {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.old-price {
    color: var(--muted);
    font-size: 14px;
    text-decoration: line-through;
}

.discount {
    padding: 3px 7px;
    border-radius: 6px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 900;
}

.current-price {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

.btn-cart {
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.btn-cart:hover {
    background: #0b5ed7;
}

@media (max-width: 900px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 620px) {
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
}
