/* =====================================================
   Explore Grid — Uniform cross-sell grid
   All cards the same size; rely on the card's natural
   poster aspect-ratio (3/4) for shape.
   ===================================================== */

.collection-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.collection-bento-grid .glass-card {
    text-decoration: none;
    color: inherit;
}

/* =====================================================
   "More" CTA Card — matches product card shape
   ===================================================== */

.bento-more {
    border-radius: var(--radius-lg);
    aspect-ratio: 3 / 4;
    background: rgba(var(--primary-color-rgb), 0.03);
    border: 2px dashed rgba(var(--primary-color-rgb), 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--gap-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.bento-more:hover {
    background: rgba(var(--primary-color-rgb), 0.06);
    border-color: rgba(var(--primary-color-rgb), 0.5);
}

.bento-more__glow {
    position: absolute;
    inset: 0;
    background: none;
    transition: background 0.4s ease;
}

.bento-more:hover .bento-more__glow {
    background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.08) 0%, transparent 70%);
}

.bento-more__content {
    position: relative;
    z-index: 1;
}

.bento-more__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    margin: 0 auto 16px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}

.bento-more:hover .bento-more__icon {
    transform: rotate(90deg);
}

.bento-more__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 6px;
    font-family: var(--title-font);
}

.bento-more__desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .collection-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .collection-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
