.spinner-luxury {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shop-main {
    margin-top: 40px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Match product detail page container whitespace */
.container {
    max-width: 1440px !important;
    padding: 0 10px !important;
}



.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

/* Product Grid moved to cards.css for global consistency */


/* Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
}

.result-count {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-count i {
    color: var(--accent);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.sort-icon {
    color: #888;
    font-size: 0.9rem;
}

.sort-select {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    outline: none;
    cursor: pointer;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.empty-icon i {
    font-size: 4rem;
    opacity: 0.1;
    margin-bottom: 25px;
}

.empty-state p {
    max-width: 400px;
    margin: 0 auto 25px;
    color: #888;
}

/* Infinite Scroll */
#infinite-scroll-sentinel {
    height: 10px;
    margin-top: 20px;
}

#loading-spinner, #end-of-list {
    padding: 40px 0;
    color: var(--text-light);
    display: none;
}

#loading-spinner p, #end-of-list p {
    margin-top: 15px;
    font-size: 0.9rem;
}

.hero-accent-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 15px;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}
