/* ═══════════════════════════════════════════════════════════════
   PRODUCTS GRID – Layered Cards with Grayscale / Hover
   ═══════════════════════════════════════════════════════════════ */

.products-grid {
    display: grid;
    grid-template-columns: 681px 681px;
    gap: 23px;
    max-width: 1385px;
    margin: 0 auto;
    padding: 100px 2rem 60px 2rem;
    justify-content: center;
    min-height: 400px;
}

/* ── Card Container ── */
.product-card {
    position: relative;
    width: 100%;
    max-width: 681px;
    height: 330px;
    overflow: hidden;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    cursor: default;
}

.product-card:hover {
    filter: grayscale(0%);
}

/* ── Hero Card (ORIGINAL & UNIQUE) ── */
.product-card.hero-card {
    filter: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 50px;
    background: #000000;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 5vw, 5rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
}

.hero-highlight {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 5vw, 5rem);
    color: #ff0000;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
}

/* ── Product Image Layer ── */
.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* ── Text Overlay ── */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
    z-index: 10;
}

.product-info {
    position: relative;
    z-index: 11;
    max-width: 55%;
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1;
    letter-spacing: 1px;
}

.product-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: pre-line;
}

/* ── Carousel Navigation ── */
.carousel-nav {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: rgba(255, 0, 0, 0.6);
    border-color: rgba(255, 0, 0, 0.8);
}

/* ── Slide Transition ── */
.product-card.slide-transition {
    animation: slideFade 0.4s ease;
}

@keyframes slideFade {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – Mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 80px 16px 40px 16px;
    }

    .product-card {
        max-width: 100%;
        height: 260px;
    }

    .product-card.hero-card {
        padding: 30px;
        height: 200px;
    }

    .hero-title,
    .hero-highlight {
        font-size: 2.8rem;
    }

    .product-title {
        font-size: 2.2rem;
    }

    .product-info {
        max-width: 65%;
    }
}