/* Product Collections — matches Popular Products section + modern collection tabs */
.nest-product-collections {
    overflow: hidden;
}

.nest-product-collections .section-title.style-2 {
    margin-bottom: 24px;
}

.nest-product-collections .section-title.style-2 .title h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0;
}

.nest-collection-tabs-wrap {
    margin-bottom: 28px;
}

.nest-product-collections .nest-collection-tabs {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.nest-product-collections .nest-collection-tabs .nav-item {
    list-style: none;
    margin: 0;
}

.nest-product-collections .nest-collection-tabs .nav-link {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    color: #3d4f5f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    padding: 10px 18px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nest-product-collections .nest-collection-tabs .nav-link:hover,
.nest-product-collections .nest-collection-tabs .nav-link:focus {
    border-color: rgba(var(--color-brand-rgb, 253, 111, 80), 0.35);
    color: var(--color-brand, #fd6f50);
    outline: none;
}

.nest-product-collections .nest-collection-tabs .nav-link.active {
    background: var(--color-brand, #fd6f50);
    border-color: var(--color-brand, #fd6f50);
    box-shadow: 0 8px 20px rgba(253, 111, 80, 0.25);
    color: #fff;
}

.nest-product-collections .nest-collection-content {
    min-height: 220px;
    position: relative;
}

.nest-product-collections .nest-collection-loading-overlay {
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    display: none;
    inset: 0;
    justify-content: center;
    position: absolute;
    z-index: 20;
}

.nest-product-collections .nest-collection-content.is-loading .nest-collection-loading-overlay {
    display: flex !important;
}

.nest-product-collections .nest-collection-content.is-loading .nest-collection-products-panel {
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.nest-product-collections .nest-collection-loading-overlay .half-circle-spinner {
    height: 52px;
    margin: 0;
    position: relative;
    width: 52px;
}

.nest-product-collections .nest-collection-products-panel {
    width: 100%;
}

.nest-product-collections .nest-collection-products-panel .product-cart-wrap {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Reuse Popular Products grid/card styling inside collections */
.nest-product-collections .nest-products-grid {
    margin-top: 0;
}

@media (max-width: 767.98px) {
    .nest-collection-tabs-wrap {
        margin-bottom: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .nest-product-collections .nest-collection-tabs {
        flex-wrap: nowrap;
        min-width: max-content;
        padding-right: 8px;
    }

    .nest-product-collections .nest-collection-tabs .nav-link {
        font-size: 13px;
        padding: 9px 14px;
    }

    .nest-product-collections .section-title.style-2 {
        margin-bottom: 16px;
    }
}
