/*
 * ═══════════════════════════════════════════════════════════════
 * ARAM THEME - SHOP & CATEGORY PAGE
 * Premium Product Listing Experience
 * @version 1.0.0
 * @author Brivox
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════ */
:root {
    --shop-gold: #C9A962;
    --shop-gold-light: #E5D4A1;
    --shop-gold-dark: #8B7355;
    --shop-black: #0A0A0A;
    --shop-white: #FEFEFE;
    --shop-cream: #FAF7F2;
    --shop-accent: #8E7B6B;
    --shop-accent-light: #D4C4B5;
    --shop-success: #4CAF50;
    --shop-error: #f44336;
    --shop-gradient-gold: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    --shop-gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    --shop-shadow-soft: 0 8px 32px rgba(0,0,0,0.08);
    --shop-shadow-medium: 0 12px 40px rgba(0,0,0,0.12);
    --shop-shadow-hover: 0 20px 50px rgba(0,0,0,0.15);
    --shop-shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.25);
    --shop-radius-sm: 10px;
    --shop-radius-md: 16px;
    --shop-radius-lg: 24px;
    --shop-radius-xl: 32px;
    --shop-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   BASE STYLES - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.aram-shop-page {
    min-height: 100vh;
    background: var(--shop-cream);
}

.shop-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.shop-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--shop-gradient-dark);
    overflow: hidden;
}

.shop-hero.has-image .shop-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
}

.shop-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.08) 0%, transparent 40%);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Breadcrumb */
.shop-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.shop-breadcrumb a,
.shop-breadcrumb span {
    font-size: 13px;
    color: var(--shop-accent-light);
    transition: var(--shop-transition);
}

.shop-breadcrumb a:hover {
    color: var(--shop-gold);
}

.shop-breadcrumb .current {
    color: var(--shop-gold);
    font-weight: 600;
}

.shop-breadcrumb .sep {
    font-size: 10px;
    opacity: 0.5;
}

.shop-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--shop-white);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.shop-hero-desc {
    font-size: 18px;
    color: var(--shop-accent-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Hero Stats */
.shop-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-item i {
    font-size: 28px;
    color: var(--shop-gold);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--shop-gold);
}

.stat-label {
    font-size: 13px;
    color: var(--shop-accent-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.shop-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
}

.shop-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   SHOP LAYOUT - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 50px 0 80px;
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: var(--shop-white);
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow-soft);
    overflow: hidden;
}

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

.sidebar-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

.sidebar-header i {
    color: var(--shop-gold);
}

.sidebar-close {
    display: none;
}

.sidebar-content {
    padding: 25px;
}

/* Filter Section */
.filter-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.filter-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-black);
    margin-bottom: 18px;
}

.filter-title i {
    color: var(--shop-gold);
    font-size: 18px;
}

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

.filter-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--shop-cream);
    border-radius: var(--shop-radius-sm);
    transition: var(--shop-transition);
    border: 2px solid transparent;
}

.filter-cat-item:hover {
    background: var(--shop-white);
    border-color: var(--shop-accent-light);
}

.filter-cat-item.active {
    background: var(--shop-white);
    border-color: var(--shop-gold);
    box-shadow: var(--shop-shadow-gold);
}

.cat-icon,
.cat-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-gradient-gold);
    color: var(--shop-black);
    font-size: 16px;
    flex-shrink: 0;
}

.cat-image {
    overflow: hidden;
    padding: 0;
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-black);
}

.cat-count {
    font-size: 11px;
    color: var(--shop-accent);
    padding: 3px 10px;
    background: var(--shop-cream);
    border-radius: 50px;
}

.filter-cat-item.active .cat-count {
    background: var(--shop-gold);
    color: var(--shop-black);
}

/* Price Filter */
.price-filter {
    padding: 10px 0;
}

.price-range-slider {
    position: relative;
    height: 30px;
    margin-bottom: 20px;
}

.price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--shop-cream);
    border-radius: 3px;
    transform: translateY(-50%);
}

.price-track-fill {
    position: absolute;
    height: 100%;
    background: var(--shop-gradient-gold);
    border-radius: 3px;
}

.price-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--shop-white);
    border: 3px solid var(--shop-gold);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: var(--shop-shadow-soft);
    transition: var(--shop-transition);
}

.price-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: var(--shop-shadow-gold);
}

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

.price-input-group {
    flex: 1;
    position: relative;
}

.price-label {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 10px;
    color: var(--shop-accent);
    background: var(--shop-white);
    padding: 0 5px;
}

.price-input-group input {
    width: 100%;
    height: 44px;
    padding: 0 35px 0 15px;
    border: 2px solid var(--shop-accent-light);
    border-radius: var(--shop-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: var(--shop-transition);
}

.price-input-group input:focus {
    outline: none;
    border-color: var(--shop-gold);
}

.price-currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--shop-accent);
}

.price-separator {
    font-size: 18px;
    color: var(--shop-accent-light);
}

/* Quick Filters */
.quick-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--shop-cream);
    border-radius: var(--shop-radius-sm);
    cursor: pointer;
    transition: var(--shop-transition);
}

.quick-filter-item:hover {
    background: var(--shop-white);
    box-shadow: var(--shop-shadow-soft);
}

.quick-filter-item input {
    display: none;
}

.filter-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--shop-accent-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--shop-transition);
}

.filter-check::after {
    content: '✓';
    font-size: 12px;
    color: var(--shop-white);
    opacity: 0;
    transform: scale(0);
    transition: var(--shop-transition);
}

.quick-filter-item input:checked + .filter-check {
    background: var(--shop-gold);
    border-color: var(--shop-gold);
}

.quick-filter-item input:checked + .filter-check::after {
    opacity: 1;
    transform: scale(1);
}

.filter-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-black);
}

.filter-text i {
    color: var(--shop-gold);
}

/* Filter Buttons */
.apply-filters-btn {
    width: 100%;
    height: 50px;
    background: var(--shop-gradient-gold);
    border: none;
    border-radius: var(--shop-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-black);
    cursor: pointer;
    transition: var(--shop-transition);
    margin-bottom: 10px;
}

.apply-filters-btn:hover {
    box-shadow: var(--shop-shadow-gold);
    transform: translateY(-2px);
}

.reset-filters-btn {
    width: 100%;
    height: 44px;
    background: transparent;
    border: 2px solid var(--shop-accent-light);
    border-radius: var(--shop-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-accent);
    cursor: pointer;
    transition: var(--shop-transition);
}

.reset-filters-btn:hover {
    border-color: var(--shop-black);
    color: var(--shop-black);
}

/* ═══════════════════════════════════════════════════════════════
   SHOP MAIN - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.shop-main {
    min-width: 0;
}

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--shop-white);
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow-soft);
    margin-bottom: 25px;
}

.toolbar-right,
.toolbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-toggle-btn {
    display: none;
}

.results-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--shop-accent);
}

.count-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--shop-gold);
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--shop-cream);
    border: none;
    border-radius: var(--shop-radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-black);
    cursor: pointer;
    transition: var(--shop-transition);
}

.sort-btn:hover {
    background: var(--shop-white);
    box-shadow: var(--shop-shadow-soft);
}

.sort-btn i:first-child {
    color: var(--shop-gold);
}

.sort-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: var(--shop-white);
    border-radius: var(--shop-radius-md);
    box-shadow: var(--shop-shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--shop-transition);
    z-index: 100;
    overflow: hidden;
}

.sort-dropdown.active .sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 13px;
    color: var(--shop-accent);
    transition: var(--shop-transition);
}

.sort-item:hover {
    background: var(--shop-cream);
    color: var(--shop-black);
}

.sort-item.active {
    background: var(--shop-gold);
    color: var(--shop-black);
    font-weight: 600;
}

.sort-item i {
    font-size: 16px;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 5px;
    padding: 5px;
    background: var(--shop-cream);
    border-radius: var(--shop-radius-sm);
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    color: var(--shop-accent);
    cursor: pointer;
    transition: var(--shop-transition);
}

.view-btn:hover {
    color: var(--shop-black);
}

.view-btn.active {
    background: var(--shop-white);
    color: var(--shop-gold);
    box-shadow: var(--shop-shadow-soft);
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--shop-white);
    border-radius: var(--shop-radius-md);
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.active-filters-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-accent);
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--shop-gold);
    color: var(--shop-black);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.remove-filter {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    transition: var(--shop-transition);
}

.remove-filter:hover {
    background: rgba(0,0,0,0.2);
}

.clear-all-filters {
    margin-right: auto;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid var(--shop-accent-light);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--shop-accent);
    cursor: pointer;
    transition: var(--shop-transition);
}

.clear-all-filters:hover {
    border-color: var(--shop-error);
    color: var(--shop-error);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS GRID - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.products-grid.grid-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Product Card */
.product-card {
    background: var(--shop-white);
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    box-shadow: var(--shop-shadow-soft);
    transition: var(--shop-transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shop-shadow-hover);
}

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

.product-image-link {
    display: block;
    position: relative;
    padding-bottom: 125%;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--shop-transition);
}

.product-image.secondary {
    opacity: 0;
}

.product-card:hover .product-image.primary {
    opacity: 0;
}

.product-card:hover .product-image.secondary {
    opacity: 1;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
}

.badge-new {
    background: var(--shop-gradient-gold);
    color: var(--shop-black);
}

.badge-featured {
    background: var(--shop-gradient-dark);
    color: var(--shop-gold);
}

.badge-outofstock {
    background: var(--shop-accent);
    color: white;
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--shop-transition);
}

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

.action-btn {
    width: 42px;
    height: 42px;
    background: var(--shop-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--shop-black);
    cursor: pointer;
    box-shadow: var(--shop-shadow-soft);
    transition: var(--shop-transition);
}

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

.action-btn.active {
    background: #fee2e2;
    color: #ef4444;
}

/* Cart Overlay */
.product-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(100%);
    transition: var(--shop-transition);
}

.product-card:hover .product-cart-overlay {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn {
    width: 100%;
    height: 48px;
    background: var(--shop-gradient-gold);
    border: none;
    border-radius: var(--shop-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-black);
    cursor: pointer;
    transition: var(--shop-transition);
}

.add-to-cart-btn:hover {
    box-shadow: var(--shop-shadow-gold);
    transform: scale(1.02);
}

/* Product Info */
.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--shop-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.product-title a {
    color: var(--shop-black);
    transition: var(--shop-transition);
}

.product-title a:hover {
    color: var(--shop-gold);
}

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

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 14px;
    color: var(--shop-gold);
}

.rating-count {
    font-size: 12px;
    color: var(--shop-accent);
}

/* Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-old {
    font-size: 14px;
    color: var(--shop-accent);
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--shop-gold);
}

/* List View Extra */
.product-excerpt,
.product-list-actions {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   LIST VIEW - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.products-grid.list-view .product-image-link {
    padding-bottom: 100%;
}

.products-grid.list-view .product-info {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-grid.list-view .product-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.products-grid.list-view .product-excerpt {
    display: block;
    font-size: 14px;
    color: var(--shop-accent);
    line-height: 1.7;
    margin-bottom: 20px;
}

.products-grid.list-view .product-list-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.list-cart-btn,
.list-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: var(--shop-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--shop-transition);
}

.list-cart-btn {
    background: var(--shop-gradient-gold);
    border: none;
    color: var(--shop-black);
}

.list-cart-btn:hover {
    box-shadow: var(--shop-shadow-gold);
}

.list-view-btn {
    background: transparent;
    border: 2px solid var(--shop-accent-light);
    color: var(--shop-black);
}

.list-view-btn:hover {
    border-color: var(--shop-black);
}

.products-grid.list-view .product-cart-overlay {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   PAGINATION - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.shop-pagination {
    margin-top: 50px;
}

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

.page-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--shop-white);
    border-radius: var(--shop-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--shop-black);
    box-shadow: var(--shop-shadow-soft);
    transition: var(--shop-transition);
}

.page-btn:hover {
    background: var(--shop-gold);
    color: var(--shop-black);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-num {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-white);
    border-radius: var(--shop-radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--shop-black);
    box-shadow: var(--shop-shadow-soft);
    transition: var(--shop-transition);
}

.page-num:hover {
    background: var(--shop-cream);
}

.page-num.active {
    background: var(--shop-gradient-gold);
    color: var(--shop-black);
    box-shadow: var(--shop-shadow-gold);
}

.page-dots {
    color: var(--shop-accent);
}

/* ═══════════════════════════════════════════════════════════════
   NO PRODUCTS - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.no-products {
    text-align: center;
    padding: 80px 40px;
    background: var(--shop-white);
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow-soft);
}

.no-products-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--shop-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--shop-accent-light);
}

.no-products h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--shop-black);
    margin-bottom: 10px;
}

.no-products p {
    font-size: 15px;
    color: var(--shop-accent);
    margin-bottom: 30px;
}

.back-to-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--shop-gradient-gold);
    border-radius: var(--shop-radius-sm);
    font-size: 15px;
    font-weight: 700;
    color: var(--shop-black);
    transition: var(--shop-transition);
}

.back-to-shop-btn:hover {
    box-shadow: var(--shop-shadow-gold);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   QUICK VIEW MODAL - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.quick-view-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--shop-transition);
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.quick-view-content {
    position: relative;
    background: var(--shop-white);
    border-radius: var(--shop-radius-xl);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--shop-transition);
}

.quick-view-modal.active .quick-view-content {
    transform: scale(1);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: var(--shop-cream);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--shop-black);
    cursor: pointer;
    z-index: 10;
    transition: var(--shop-transition);
}

.quick-view-close:hover {
    background: var(--shop-black);
    color: var(--shop-gold);
}

.quick-view-body {
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
}


/* ═══════════════════════════════════════════════════════════════
   ═══════════════════════════════════════════════════════════════
   MOBILE STYLES (max-width: 1023px)
   ═══════════════════════════════════════════════════════════════
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {
    
    /* Base */
    .shop-container {
        padding: 0 15px;
    }
    
    /* Hero */
    .shop-hero {
        padding: 130px 0 70px;
    }
    
    .shop-hero-title {
        font-size: 32px;
    }
    
    .shop-hero-desc {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .shop-hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-item i {
        font-size: 22px;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .shop-hero-wave {
        height: 50px;
    }
    
    /* Layout */
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 25px 0 100px;
    }
    
    /* Sidebar - Mobile Drawer */
    .shop-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        z-index: 9999;
        border-radius: 0;
        transition: var(--shop-transition);
    }
    
    .shop-sidebar.active {
        right: 0;
    }
    
    .sidebar-header {
        padding: 20px;
    }
    
    .sidebar-close {
        display: flex;
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: var(--shop-white);
        font-size: 18px;
        cursor: pointer;
    }
    
    .sidebar-content {
        padding: 20px;
        height: calc(100vh - 76px);
        overflow-y: auto;
    }
    
    .sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: var(--shop-transition);
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Toolbar */
    .shop-toolbar {
        padding: 15px;
        border-radius: var(--shop-radius-md);
        margin-bottom: 20px;
    }
    
    .toolbar-right,
    .toolbar-left {
        gap: 12px;
    }
    
    .filter-toggle-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        background: var(--shop-gradient-gold);
        border: none;
        border-radius: var(--shop-radius-sm);
        font-size: 13px;
        font-weight: 700;
        color: var(--shop-black);
        cursor: pointer;
    }
    
    .results-count {
        font-size: 12px;
    }
    
    .count-number {
        font-size: 16px;
    }
    
    .sort-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .sort-btn span {
        display: none;
    }
    
    .sort-menu {
        left: auto;
        right: 0;
    }
    
    .view-toggle {
        padding: 4px;
    }
    
    .view-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    /* Active Filters */
    .active-filters {
        padding: 12px 15px;
        border-radius: var(--shop-radius-sm);
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .active-filters-label {
        width: 100%;
        font-size: 12px;
    }
    
    .active-filter-tag {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    /* Products Grid - Mobile */
    .products-grid.grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        border-radius: var(--shop-radius-md);
    }
    
    .product-badges {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .product-actions {
        top: 10px;
        left: 10px;
        gap: 5px;
        opacity: 1;
        transform: translateX(0);
    }
    
    .action-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .product-cart-overlay {
        display: none;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-category {
        font-size: 9px;
        margin-bottom: 5px;
    }
    
    .product-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .product-rating {
        margin-bottom: 8px;
    }
    
    .stars i {
        font-size: 12px;
    }
    
    .rating-count {
        font-size: 10px;
    }
    
    .price-old {
        font-size: 12px;
    }
    
    .price-current {
        font-size: 16px;
    }
    
    /* List View - Mobile */
    .products-grid.list-view {
        gap: 15px;
    }
    
    .products-grid.list-view .product-card {
        grid-template-columns: 120px 1fr;
    }
    
    .products-grid.list-view .product-image-link {
        padding-bottom: 120%;
    }
    
    .products-grid.list-view .product-info {
        padding: 15px;
    }
    
    .products-grid.list-view .product-title {
        font-size: 14px;
    }
    
    .products-grid.list-view .product-excerpt {
        display: none;
    }
    
    .products-grid.list-view .product-list-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .list-cart-btn,
    .list-view-btn {
        padding: 10px 15px;
        font-size: 12px;
        justify-content: center;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 30px;
    }
    
    .pagination-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .page-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .page-numbers {
        width: 100%;
        justify-content: center;
        order: -1;
    }
    
    .page-num {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    
    /* No Products */
    .no-products {
        padding: 50px 25px;
        border-radius: var(--shop-radius-md);
    }
    
    .no-products-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .no-products h3 {
        font-size: 20px;
    }
    
    .no-products p {
        font-size: 14px;
    }
    
    .back-to-shop-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    /* Quick View */
    .quick-view-modal {
        padding: 15px;
    }
    
    .quick-view-content {
        border-radius: var(--shop-radius-lg);
    }
    
    .quick-view-close {
        top: 15px;
        left: 15px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .quick-view-body {
        padding: 25px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SMALL MOBILE (max-width: 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .shop-hero-title {
        font-size: 26px;
    }
    
    .shop-hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .toolbar-left {
        gap: 8px;
    }
    
    .sort-btn {
        padding: 8px 12px;
    }
}