/* =========================================
   NEW ARRIVALS PAGE STYLES
   css/new-arrivals.css
   Note: Filter/sidebar/sort styles come from collection.css (imported in HTML)
   This file only adds page-specific overrides.
========================================= */

/* collection-container in collection.css already handles topbar offset (70px).
   No padding-top override needed here. */

/* ── Load More Button ── */
.btn-load-more {
    border: 1px solid #000;
    padding: 12px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    background: transparent;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #000;
    color: #fff;
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
