.hero-section {
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at top right, rgba(176, 138, 60, 0.10), transparent 30%),
        linear-gradient(180deg, #fbf5ef 0%, #f6efe6 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.hero-copy .eyebrow {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(92, 31, 45, 0.08);
    color: var(--color-burgundy);
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--color-charcoal);
}

.hero-copy p {
    font-size: 1.04rem;
    color: var(--color-muted);
    max-width: 620px;
    margin: 0 0 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    min-height: 520px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.48), rgba(92,31,45,0.10)),
        linear-gradient(135deg, #2a2323 0%, #5c1f2d 55%, #b08a3c 100%);
    box-shadow: var(--shadow-soft);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
}

.product-card .product-image {
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #ece2d7, #fffaf5);
}

.product-card .product-content {
    padding: 18px;
}

.product-card h3 {
    font-size: 1rem;
    margin: 0 0 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 700;
}

.product-price .old {
    color: var(--color-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    min-height: 280px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    background: linear-gradient(140deg, #1e1919 0%, #5c1f2d 65%, #a78037 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.category-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.content-banner {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1c1717 0%, #51202b 50%, #b08a3c 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}