.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 60px;
    color: #2a0e15;
    background:
        radial-gradient(circle at 18% 22%, rgba(184, 137, 61, 0.22), transparent 55%),
        radial-gradient(circle at 82% 78%, rgba(139, 34, 68, 0.14), transparent 55%),
        linear-gradient(135deg, #fbf2db 0%, #f0dcb0 55%, #e6c891 100%);
    border-bottom: 1px solid var(--color-gold-soft);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.35), transparent 55%);
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; max-width: 620px; }

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #8b6a2a;
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8893d, transparent);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.4px;
    margin: 0 0 8px;
    color: #3a1018;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.4px;
    color: #8b2244;
    margin: 0 0 18px;
}

.hero-sub {
    max-width: 520px;
    color: rgba(58, 16, 24, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.catalog { padding: 80px 0 60px; }

.section-title {
    margin: 0 0 38px;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.4rem);
    font-weight: 500;
    color: #2a0e15;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 10px 26px rgba(46, 28, 18, 0.06);
    border: 1px solid rgba(184, 137, 61, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    color: inherit;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(46, 28, 18, 0.14);
    border-color: rgba(184, 137, 61, 0.45);
}

.product-card:hover::before { opacity: 1; }

.card-art {
    height: 220px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #faf2dc 0%, #f1e3c2 100%);
}

.card-art:has(.card-photo) {
    background: linear-gradient(160deg, #faf2dc 0%, #f1e3c2 100%);
}

.card-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(46, 28, 18, 0.18));
    transition: transform 0.35s ease;
}

.product-card:hover .card-photo {
    transform: scale(1.04);
}

.theme-cacuola .card-art:not(:has(.card-photo)) {
    background: linear-gradient(135deg, #2a1f08 0%, #0a0a0a 60%, #000 100%);
    position: relative;
}
.theme-cacuola .card-art:not(:has(.card-photo))::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(244, 217, 122, 0.25), transparent 60%);
}
.theme-cacuola .card-icon {
    background: linear-gradient(135deg, #f4d97a, #b8860b);
    color: #0a0a0a;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    z-index: 1;
}
.theme-velvet .card-art:not(:has(.card-photo)) {
    background: linear-gradient(135deg, #ff6fb5, #6a1b9a);
}
.theme-soulour .card-art:not(:has(.card-photo)) {
    background: linear-gradient(135deg, #b35774 0%, #7a1f3a 60%, #5b1429 100%);
    position: relative;
}
.theme-soulour .card-art:not(:has(.card-photo))::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(230, 207, 138, 0.18), transparent 65%);
}
.theme-soulour .card-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    z-index: 1;
}
.theme-mia .card-art:not(:has(.card-photo)) {
    background: linear-gradient(135deg, #2a1a14 0%, #1a100c 60%, #0d0604 100%);
    position: relative;
}
.theme-mia .card-art:not(:has(.card-photo))::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200, 146, 99, 0.22), transparent 65%);
}
.theme-mia .card-icon {
    background: linear-gradient(135deg, #e3b380, #a87245);
    color: #1a100c;
    box-shadow: 0 6px 20px rgba(200, 146, 99, 0.4);
    z-index: 1;
}
.theme-sinful .card-art:not(:has(.card-photo)) {
    background: linear-gradient(135deg, #0b1018 0%, #050608 60%, #000 100%);
    position: relative;
}
.theme-sinful .card-art:not(:has(.card-photo))::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.28), transparent 60%);
}
.theme-sinful .card-icon {
    background: linear-gradient(135deg, #38bdf8, #0284c7);
    color: #050608;
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.45);
    z-index: 1;
}
.theme-orali .card-art:not(:has(.card-photo)) {
    background: linear-gradient(135deg, #2a0f15 0%, #0a0608 60%, #050304 100%);
    position: relative;
}
.theme-orali .card-art:not(:has(.card-photo))::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 45, 58, 0.28), transparent 60%);
}
.theme-orali .card-icon {
    background: linear-gradient(135deg, #c9824b, #c92d3a);
    color: #f3e6d8;
    box-shadow: 0 6px 20px rgba(201, 45, 58, 0.45);
    z-index: 1;
}

.card-icon {
    width: 76px; height: 76px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    font-family: var(--font-display);
}

.card-body {
    padding: 22px 22px 24px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a0e15;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.card-tagline {
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    min-height: 2.8em;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(184, 137, 61, 0.18);
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 0.3px;
}

.more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: transform 0.2s ease;
}

.product-card:hover .more {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .hero { padding: 40px 0 44px; }
    .catalog { padding: 60px 0 40px; }
    .product-grid { gap: 20px; }
    .card-art { height: 200px; }
}
