

.collections-section {
    padding: 120px 0;
    background: #fff;
}

.collections-header {
    margin-bottom: 30px;
}

.collections-header h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark);
    margin: 0;
}

.explore-header h2{
 font-size: clamp(20px, 5vw, 35px);
font-weight: 400;
    color: var(--dark);
    text-align:center;
    padding-top: 60px;
}


.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 1.8 / 1;
    background: var(--section-bg);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.08);
}

/* Dark Overlay */

.collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0.35) 100%
    );
    z-index: 1;
}



.collection-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.collection-overlay h3 {
    position: absolute;
    left: 35px;
    bottom: 25px;

    margin: 0;

    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;

    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   ARROW
=========================== */

.collection-arrow {
    position: absolute;
    right: 30px;
    bottom: 28px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-arrow {
    transform: translateX(8px);
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 991px) {

    .collections-section {
        padding: 70px 0;
    }

    .collections-grid {
        gap: 20px;
    }

    .collection-overlay h3 {
        left: 25px;
        bottom: 20px;
        font-size: 1.6rem;
    }

    .collection-arrow {
        right: 20px;
        bottom: 20px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 767px) {

    .collections-section {
        padding: 60px 0;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .collection-card {
        aspect-ratio: 1.5 / 1;
    }

    .collections-header h2 {
        font-size: 1.6rem;
    }

    .collection-overlay h3 {
        left: 20px;
        bottom: 18px;
        font-size: 1.3rem;
    }

    .collection-arrow {
        right: 18px;
        bottom: 18px;
        font-size: 24px;
    }
}