/**
 * Gordon Nvan - Shop/Collection Page Styles
 * File: crystal/exposition-style.css
 */

/* Shop Page Layout */
.shop-page-wrapper-k7m3 {
    padding: 40px 0 80px;
}

/* Page Header */
.page-header-n9p4 {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--pearl-cream), white);
    margin-bottom: 40px;
}

.page-header-n9p4 h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header-n9p4 p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Shop Layout */
.shop-layout-grid-b8n5 {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Filter Sidebar */
.filter-sidebar-r4t7 {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    height: fit-content;
    position: sticky;
    top: 140px;
}

.filter-section-m9k2 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.filter-section-m9k2:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title-x7n4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--midnight-blue);
}

.filter-options-p8m3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option-k2w9 {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.filter-option-k2w9 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rose-gold);
}

.filter-option-k2w9:hover {
    color: var(--rose-gold);
}

.price-range-wrapper-n6b4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-wrapper-n6b4 input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Product Grid */
.products-section-j5p8 {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.products-toolbar-q9n3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.products-count-m7k2 {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.sort-wrapper-r4n8 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-wrapper-r4n8 label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.sort-select-p6j9 {
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Product Grid Layout */
.products-grid-expo-a3k7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card-expo-n8m4 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.product-card-expo-n8m4:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.product-image-expo-b5r2 {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image-expo-b5r2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-expo-n8m4:hover .product-image-expo-b5r2 img {
    transform: scale(1.05);
}

.product-badge-x9w3 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rose-gold);
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.product-info-expo-m2p7 {
    padding: 15px;
}

.product-name-expo-k9n5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--midnight-blue);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price-expo-r4t6 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price-n7b3 {
    font-size: 1rem;
    color: var(--rose-gold);
    font-weight: 500;
}

.original-price-p8k2 {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Pagination */
.pagination-wrapper-j6m4 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn-k3n8 {
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.pagination-btn-k3n8:hover,
.pagination-btn-k3n8.active {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: white;
}

.pagination-btn-k3n8:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty State */
.empty-products-state-x7m9 {
    text-align: center;
    padding: 80px 20px;
}

.empty-products-state-x7m9 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--midnight-blue);
}

.empty-products-state-x7m9 p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle-n4p7 {
    display: none;
    padding: 12px 20px;
    background: var(--midnight-blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-layout-grid-b8n5 {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar-r4t7 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        border-radius: 0;
        overflow-y: auto;
    }
    
    .filter-sidebar-r4t7.active {
        display: block;
    }
    
    .mobile-filter-toggle-n4p7 {
        display: block;
    }
    
    .products-grid-expo-a3k7 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-expo-a3k7 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-toolbar-q9n3 {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .page-header-n9p4 h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-grid-expo-a3k7 {
        grid-template-columns: 1fr;
    }
}
