 

/* ─── Section wrapper ───────────────────────────────────────── */
#hero-collection { 
    background: #ffffff;
    padding: 0;
    overflow: hidden; 
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
    padding: 48px 40px;
}

/* ─── Grid layout ───────────────────────────────────────────── */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 0 24px;
    align-items: center;
    position: relative;
}

/* ─── Left text column ──────────────────────────────────────── */
.hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #888;
}

.hero-title { 
    font-weight: 600;
    font-size: 42px;
    line-height: 40px;
    color: #111;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.hero-sub { 
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin: -16px 0 0;
    letter-spacing: 2px;
    line-height: 100%;
}

/* ─── Explore button ────────────────────────────────────────── */
.btn-explore {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10.08px;
    background: #002AC4;
    color: #fff;
    
    font-size: 18px;
    font-weight: 500;
    line-height: 100%; 
    padding: 20.15px 42.32px 20.15px 42.32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    width: 286px;
    height: 62.3px;
}

.btn-explore:hover { 
    transform: translateY(-2px); 
    color: #fff;
}

.btn-explore .arrow-icon {
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.25s;
}

.btn-explore:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* ─── Product image cards ───────────────────────────────────── */
.hero-img-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    /* max-height: 420px; */
}

.hero-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(.23, 1.4, .32, 1);
}

.hero-img-col:hover img {
    transform: scale(1.06);
}

/* ─── Asterisk decoration ───────────────────────────────────── */
.hero-asterisk {
    position: absolute;
    top: -40px;
    right: -45px;
    font-size: 8.2rem;
    color: #5b21b6;
    font-weight: 900;
    line-height: 1;
    z-index: 10;
    pointer-events: none;
    animation: spin-slow 12s linear infinite;
    user-select: none;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ─── Responsive ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 32px 20px;
    }

    .hero-text-col {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 40px;
    }

    .hero-title {
        width: 100%;
    }

    .hero-img-col {
        max-height: 360px;
    }

    .hero-asterisk {
        top: -14px;
        right: -6px;
        font-size: 2.6rem;
        display: none;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hero-inner {
        padding: 36px 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-text-col {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-img-col {
        max-height: 300px;
        aspect-ratio: 4 / 3;
    }

    .hero-asterisk {
        font-size: 2rem;
        top: -10px;
        right: -4px;
    }
    .hero-title { 
    font-size: 32px;
    padding-bottom: 10px; 
}
}

 