:root{
    --lux-bg: #f6f3ee;
    --lux-surface: rgba(255,255,255,0.72);
    --lux-card: rgba(255,255,255,0.82);
    --lux-border: rgba(24,24,24,0.08);
    --lux-text: #1b1b1b;
    --lux-muted: #6f6a64;
    --lux-gold: #b89146;
    --lux-gold-soft: rgba(184,145,70,0.14);
    --lux-shadow: 0 20px 50px rgba(26, 22, 17, 0.10);
    --lux-shadow-hover: 0 28px 70px rgba(26, 22, 17, 0.16);
    --lux-radius: 1.5rem;
}

body{
    background:
            radial-gradient(circle at top left, rgba(184,145,70,0.08), transparent 28%),
            radial-gradient(circle at bottom right, rgba(0,0,0,0.04), transparent 22%),
            var(--lux-bg);
    color: var(--lux-text);
}

.products-section{
    position: relative;
    overflow: hidden;
}

.products-section::before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.products-hero{
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow: var(--lux-shadow);
    border-radius: 2rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 2rem;
}

.products-kicker{
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: var(--lux-gold-soft);
    color: #7c5a20;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.products-kicker::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lux-gold);
    box-shadow: 0 0 0 6px rgba(184,145,70,0.12);
}

.products-title{
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: .85rem;
}

.products-subtitle{
    max-width: 720px;
    color: var(--lux-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.products-count{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(24,24,24,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    font-weight: 600;
    color: var(--lux-text);
}

.product-card{
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius);
    background: var(--lux-card);
    box-shadow: var(--lux-shadow);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--lux-shadow-hover);
    border-color: rgba(184,145,70,0.24);
}

.product-visual{
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    background: linear-gradient(135deg, #f4efe8, #ebe4d9);
}

.product-visual::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,20,18,.22), rgba(22,20,18,0) 45%);
    opacity: .9;
    pointer-events: none;
}

.product-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
    display: block;
}

.product-card:hover .product-image{
    transform: scale(1.06);
}

.product-badge{
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #2e2a25;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.85);
}

.product-body{
    padding: 1.4rem 1.35rem 1.35rem;
}

.product-title{
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: .75rem;
}

.product-title a{
    color: var(--lux-text);
    text-decoration: none;
    transition: color .25s ease;
}

.product-title a:hover{
    color: var(--lux-gold);
}

.product-description{
    color: var(--lux-muted);
    font-size: .95rem;
    line-height: 1.7;
    min-height: 3.3rem;
}

.product-footer{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.product-price-wrap{
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.product-price-label{
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lux-muted);
    font-weight: 700;
}

.product-price{
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lux-text);
}

.product-price .price-currency{
    font-size: .95rem;
    font-weight: 600;
    color: var(--lux-muted);
    margin-left: .25rem;
}

.btn-lux{
    --bs-btn-padding-y: .8rem;
    --bs-btn-padding-x: 1.15rem;
    --bs-btn-font-weight: 600;
    --bs-btn-border-radius: 999px;
    --bs-btn-color: #fff;
    --bs-btn-bg: #161412;
    --bs-btn-border-color: #161412;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #000;
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 22,20,18;
    box-shadow: 0 12px 24px rgba(22,20,18,.18);
}

.btn-lux-outline{
    --bs-btn-padding-y: .8rem;
    --bs-btn-padding-x: 1.15rem;
    --bs-btn-font-weight: 600;
    --bs-btn-border-radius: 999px;
    --bs-btn-color: #161412;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(22,20,18,.15);
    --bs-btn-hover-color: #161412;
    --bs-btn-hover-bg: rgba(184,145,70,.08);
    --bs-btn-hover-border-color: rgba(184,145,70,.35);
    --bs-btn-focus-shadow-rgb: 22,20,18;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.empty-state{
    background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
    border: 1px solid rgba(24,24,24,0.07);
    border-radius: 2rem;
    box-shadow: var(--lux-shadow);
    padding: 3rem 2rem;
    text-align: center;
}

.empty-state-icon{
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lux-gold-soft);
    color: #7c5a20;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px){
    .products-hero{
        padding: 2rem 1.4rem;
        border-radius: 1.5rem;
    }

    .product-description{
        min-height: auto;
    }

    .product-footer{
        flex-direction: column;
        align-items: stretch;
    }

    .product-footer .btn{
        width: 100%;
    }
}