/* Enhanced Shop Page Styles */
:root { 
    --primary-color: #1a4a4a;
    --secondary-color: #c8a882;
    --accent-color: #2d5a5a;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.16);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #1a4a4a 0%, #2d5a5a 100%);
    --gradient-secondary: linear-gradient(135deg, #c8a882 0%, #d4b896 100%);
}

.shop-page {
    background: var(--background-light);
    min-height: 100vh;
}

/* Hero Section with Video Background */
.shop-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 74, 74, 0.8) 0%, rgba(45, 90, 90, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(45deg, white, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shop Content */
.shop-content {
    padding: 60px 0;
}

/* .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
} */

.shop-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

/* Enhanced Sidebar */
.shop-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-medium);
    height: fit-content;
    position: sticky;
    top: 20px;
    overflow: hidden;
}

.sidebar-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
}

.filter-section {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
}

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

.filter-section h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-section h4 i {
    color: var(--secondary-color);
}

/* Enhanced Search */
.search-container {
    position: relative;
}

.search-form {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
}

.search-input-group {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.search-input-group:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.voice-search-btn {
    background: var(--background-light);
    border: none;
    padding: 12px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.voice-search-btn:hover {
    background: var(--secondary-color);
    color: white;
}

.voice-search-btn.active {
    background: #dc3545;
    color: white;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.search-btn {
    background: #c8a882;
    color: white;
    border: none;
    /* padding: 12px 20px; */
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Category Filter */
.category-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    position: relative;
    cursor: pointer;
    display: block;
}

.category-item input[type="radio"] {
    display: none;
}

.category-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
    background: #f8f9fa;
}

.category-label:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.category-item input:checked + .category-label {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--secondary-color);
}

.category-label i {
    margin-right: 8px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.category-item input:checked + .category-label i {
    color: white;
}

.count {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-item input:checked + .category-label .count {
    background: rgba(255, 255, 255, 0.2);
}

/* Brand Filter */
.brand-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
    transition: var(--transition);
}

.filter-checkbox:hover {
    background: rgba(200, 168, 130, 0.1);
    padding-left: 10px;
    border-radius: 6px;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    transition: var(--transition);
}

.filter-checkbox input:checked + .checkmark {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.brand-name {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Enhanced Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-range-slider {
    position: relative;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 15px 0;
}

.range-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    pointer-events: all;
    border: 3px solid white;
    box-shadow: var(--shadow-light);
}

.range-slider::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    pointer-events: all;
    border: 3px solid white;
    box-shadow: var(--shadow-light);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input[type="number"] {
    flex: 1;
    padding: 8px 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
}

.price-inputs input[type="number"]:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.price-separator {
    color: var(--text-light);
    font-weight: 500;
}

.apply-price-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.apply-price-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Quick Filters */
.quick-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-filter-btn {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-dark);
}

.quick-filter-btn:hover {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.quick-filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

/* Clear Filters Button */
.clear-filters-btn {
    background: linear-gradient(45deg, #dc3545, #e55353);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.clear-filters-btn:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Main Content */
.shop-main {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

/* Enhanced Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 20px;
}

.controls-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-filter-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    align-items: center;
    gap: 8px;
}

.mobile-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.results-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.results-count {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.search-results {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
}

.controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* View Toggle */
.view-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.view-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: rgba(200, 168, 130, 0.1);
}

.view-btn.active {
    background: var(--secondary-color);
    color: white;
}

/* Enhanced Sort Select */
.sort-select {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
}

.sort-select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

/* Products Container */
.products-container {
    position: relative;
    margin-bottom: 40px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-spinner {
    text-align: center;
    color: var(--secondary-color);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Grid View */
.products-container.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* List View */
.products-container.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-container.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    min-height: 180px;
}

.products-container.list-view .product-image-container {
    width: 200px;
    height: 180px;
}

.products-container.list-view .product-info {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-container.list-view .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

/* Enhanced Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(200, 168, 130, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-img.main-img {
    position: relative;
    z-index: 1;
}

.product-img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-img.hover-img {
    opacity: 1;
}

.product-card:hover .product-img.main-img {
    transform: scale(1.1);
}

/* Enhanced Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.badge {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.featured-badge {
    background: linear-gradient(45deg, #28a745, #34ce57);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.discount-badge {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}

.out-of-stock-badge {
    background: linear-gradient(45deg, #6c757d, #868e96);
    color: white;
}

.low-stock-badge {
    background: linear-gradient(45deg, #ffc107, #ffcd3c);
    color: #212529;
}

/* Quick Actions */
.quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.quick-action-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #dc3545;
    color: white;
}

/* Product Info */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: var(--transition);
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link:hover .product-name {
    color: var(--secondary-color);
}

.product-category {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-category i {
    color: var(--secondary-color);
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-rating i {
    color: #ddd;
    font-size: 0.9rem;
}

.product-rating i.filled {
    color: #ffc107;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced Product Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto;
    flex-wrap: wrap;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    opacity: 0.7;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings {
    background: linear-gradient(45deg, #28a745, #34ce57);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Product Actions */
.product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-selector button {
    background: var(--background-light);
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--secondary-color);
    color: white;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
}

.add-to-cart-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    min-height: 40px;
}

.add-to-cart-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.add-to-cart-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.add-to-cart-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Enhanced Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn,
.pagination-current {
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    justify-content: center;
}

.pagination-btn {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
}

.pagination-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination-current {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-color);
}

.first-btn,
.last-btn {
    background: var(--background-light) !important;
    color: var(--text-light) !important;
}

.first-btn:hover,
.last-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.pagination-dots {
    color: var(--text-light);
    font-weight: 600;
    padding: 0 5px;
}

.load-more-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.load-more-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.no-products-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.no-products-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.no-products-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.no-products-suggestions {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    box-shadow: var(--shadow-light);
}

.no-products-suggestions h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.no-products-suggestions ul {
    list-style: none;
    padding: 0;
}

.no-products-suggestions li {
    padding: 5px 0;
    color: var(--text-light);
}

.no-products-suggestions li:before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Quick View Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }
    
    .products-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 320px;
        height: 100vh;
        z-index: 1000;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .shop-sidebar.active {
        left: 0;
    }
    
    .sidebar-close {
        display: block;
    }
    
    .mobile-filter-btn {
        display: flex;
    }
    
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .controls-left,
    .controls-right {
        justify-content: space-between;
    }
    
    .products-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .products-container.list-view .product-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-container.list-view .product-image-container {
        width: 100%;
        height: 200px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 200px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .shop-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .quick-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .shop-main {
        padding: 20px 15px;
    }
    
    .products-container.grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
        min-height: 40px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .shop-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .pagination-btn,
    .pagination-current {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --background-light: #121212;
        --text-dark: #ffffff;
        --text-light: #cccccc;
        --text-muted: #888888;
    }
}

/* Print styles */
@media print {
    .shop-sidebar,
    .quick-actions,
    .pagination-container {
        display: none;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .products-container.grid-view {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
