.luxury-section {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    text-align: center;
}

/* BACKGROUND LAYER */
.luxury-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(191,163,124,0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.06), transparent 45%);
    animation: luxuryFloat 18s ease-in-out infinite alternate;
    z-index: 0;
}

/* CONTENT */
.luxury-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: auto;
    animation: luxuryReveal 1.6s ease-out forwards;
}

.luxury-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #bfa37c;
}

.luxury-section h2 {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
}

.luxury-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

/* Animations */
@keyframes luxuryReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes luxuryFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

.channel-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CINEMATIC BACKGROUND */
.channel-section {
    margin: 0;
    position: relative;
    padding: 140px 20px;
    overflow: hidden;
}


/* CONTENT */
.channel-content {
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: #000000;
    animation: channelReveal 5s ease forwards;
}

.channel-eyebrow {
    display: block;
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #806946;
}

.channel-content h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
}

.channel-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.75);
}

/* ANIMATIONS */
@keyframes slowDrift {
    0% {
        transform: translateX(-5%) translateY(-5%) scale(1);
    }
    100% {
        transform: translateX(5%) translateY(5%) scale(1.1);
    }
}

@keyframes channelReveal {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===============================
   SHEIN-STYLE PRODUCTS GRID
================================ */

.all-products-section.shein {
    padding: 40px 20px;
    background: #fff;
}

/* HEADER (smaller) */
.all-products-header {
    text-align: center;
    margin-bottom: 30px;
}

.all-products-header span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #b89b6a;
}

.all-products-header h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 10px 0;
}

.all-products-header p {
    font-size: 13px;
    opacity: 0.6;
}

/* GRID */
.all-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

/* CARD */
.product-card {
    text-decoration: none;
    color: #000;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

/* IMAGE */
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.25;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

/* INFO */
.product-info {
    padding: 8px 4px;
    text-align: left;
}

.product-info h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-info .price {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

/* HOVER (subtle, fast) */
.product-card:hover {
    transform: translateY(-2px);
}

.product-card:hover img {
    transform: scale(1.05);
}

/* MOBILE (SHEIN LOOK) */
@media (max-width: 576px) {
    .all-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-info .price {
        font-size: 12px;
    }
}
