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

.luxe-product-card {
    border: 1px solid rgba(200, 161, 90, 0.35);
    background: #0e0e0e;
    overflow: hidden;
    border-radius: 12px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.luxe-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 161, 90, 0.65);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.luxe-product-card__image {
    aspect-ratio: 4 / 3.2;
    position: relative;
    overflow: hidden;
    display: flex;
    border-bottom: 1px solid rgba(200,161,90,0.2);
    background:
        radial-gradient(circle at top right, rgba(200,161,90,0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(200,161,90,0.08), transparent 28%),
        linear-gradient(180deg, #1c1a18 0%, #111111 100%);
}

.luxe-product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}

.luxe-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.luxe-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.4) 100%);
}

.luxe-product-card__placeholder::before {
    content: "Exclusive Genetics";
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid rgba(200,161,90,0.35);
    background: rgba(0,0,0,0.18);
    color: rgba(240, 213, 154, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.luxe-product-card__placeholder-text {
    display: block;
    max-width: 90%;
    color: #f0d59a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 1.15rem;
    line-height: 1.2;
    opacity: .95;
}

.luxe-product-card__content {
    padding: 22px 20px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.luxe-product-card__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.15;
}

.luxe-product-card__title a {
    color: #f0d59a;
}

.luxe-product-card__title a:hover {
    color: #ffd98a;
}

.luxe-product-card__meta {
    margin-bottom: 12px;
    font-weight: 700;
    color: #cfa75e;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.luxe-product-card__excerpt {
    margin-bottom: 18px;
    min-height: 56px;
    color: #ddd;
    font-size: .95rem;
    line-height: 1.6;
}

.luxe-product-card .luxe-btn {
    width: 100%;
}

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

@media (max-width: 640px) {
    .luxe-product-grid {
        grid-template-columns: 1fr;
    }
}