/* ======================================================
   HOME / FEATURED PRODUCT GRID
   ====================================================== */

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

/* ======================================================
   PRODUCT CARD / SHELL
   ====================================================== */

.luxe-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(200, 161, 90, 0.26);
    border-radius: 14px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%),
        linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.luxe-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(200, 161, 90, 0.08) 0%, transparent 24%),
        radial-gradient(circle at top right, rgba(200, 161, 90, 0.12), transparent 32%);
    opacity: 0.78;
    pointer-events: none;
}

.luxe-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 161, 90, 0.52);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42);
}

/* ======================================================
   PRODUCT CARD / IMAGE
   ====================================================== */

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

.luxe-product-card__image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.34) 100%);
    pointer-events: none;
}

.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;
    transform: scale(1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.luxe-product-card:hover .luxe-product-card__image img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.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.04) 0%, rgba(0,0,0,0.46) 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.32);
    background: rgba(0, 0, 0, 0.18);
    color: rgba(240, 213, 154, 0.88);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.luxe-product-card__placeholder-text {
    display: block;
    max-width: 92%;
    color: #f0d59a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.08rem;
    line-height: 1.22;
    opacity: 0.96;
}

/* ======================================================
   PRODUCT CARD / CONTENT
   ====================================================== */

.luxe-product-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px 22px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.luxe-product-card__title {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

.luxe-product-card__meta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 7px 11px;
    border: 1px solid rgba(200, 161, 90, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: #d6af68;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.luxe-product-card__meta .amount,
.luxe-product-card__meta bdi {
    color: inherit;
}

.luxe-product-card__excerpt {
    margin-bottom: 20px;
    min-height: 72px;
    color: rgba(230, 223, 210, 0.9);
    font-size: 0.95rem;
    line-height: 1.65;
}

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

/* ======================================================
   RESPONSIVE
   ====================================================== */

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

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

    .luxe-product-card {
        border-radius: 12px;
    }

    .luxe-product-card__content {
        padding: 20px 18px 18px;
    }

    .luxe-product-card__title {
        font-size: 1rem;
    }

    .luxe-product-card__excerpt {
        min-height: auto;
        margin-bottom: 18px;
        font-size: 0.92rem;
    }
}