
    :root {
            --primary: #D4A574;
            --primary-dark: #B8956A;
            --secondary: #2C3E50;
            --accent: #E8C4A0;
            --dark: #1A1A1A;
            --light: #FAFAFA;
            --gray: #6B7280;
            --gradient-1: linear-gradient(135deg, #D4A574 0%, #E8C4A0 100%);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light);
            color: var(--dark);
        }
        
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        
        /* Header styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after { width: 100%; }
        
        .header-actions { display: flex; gap: 1rem; align-items: center; }
        
        .cart-btn {
            position: relative;
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--dark);
            cursor: pointer;
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Page Header */
        .page-header {
            padding: 8rem 5% 4rem;
            background: linear-gradient(135deg, #FFF8F3 0%, #FEF6F0 100%);
            text-align: center;
        }
        
        .page-header h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .breadcrumb a { color: var(--primary); text-decoration: none; }
        
        /* Shop Layout */
        .shop-container {
            padding: 4rem 5%;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 3rem;
        }
        
        /* Sidebar */
        .shop-sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        .sidebar-section {
            margin-bottom: 2rem;
        }
        
        .sidebar-section h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        
        .filter-list {
            list-style: none;
        }
        
        .filter-list li {
            margin-bottom: 0.8rem;
        }
        
        .filter-list a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        
        .filter-list a:hover,
        .filter-list a.active {
            color: var(--primary);
        }
        
        .filter-list .count {
            color: var(--gray);
            font-size: 0.85rem;
        }
        
        /* Search */
        .search-box {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #eee;
            border-radius: 50px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .search-box input:focus {
            border-color: var(--primary);
        }
        
        .search-box button {
            padding: 0.8rem 1.5rem;
            background: var(--gradient-1);
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .search-box button:hover {
            transform: scale(1.05);
        }
        
        /* Products Grid */
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .products-count {
            color: var(--gray);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .product-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .product-actions {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s;
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }
        
        .product-action-btn {
            width: 40px;
            height: 40px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .product-action-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-category {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 500;
        }
        
        .product-name {
            font-size: 1.1rem;
            margin: 0.5rem 0;
            font-family: 'Playfair Display', serif;
        }
        
        .product-name a {
            color: var(--dark);
            text-decoration: none;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .current-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .old-price {
            font-size: 0.95rem;
            color: var(--gray);
            text-decoration: line-through;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        
        .pagination a,
        .pagination span {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .pagination a {
            background: white;
        }
        
        .pagination a:hover,
        .pagination a.active {
            background: var(--primary);
            color: white;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .empty-state i {
            font-size: 4rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }
        
        .empty-state h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .empty-state p {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        /* Mobile */
        @media (max-width: 1024px) {
            .shop-container { grid-template-columns: 1fr; }
            .shop-sidebar { display: none; }
        }
        
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .products-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 0.75rem; 
            }
            .product-card { border-radius: 12px; }
            .product-image {
                height: 160px;
            }
            .product-image img {
                object-fit: cover;
            }
            .product-info { padding: 0.75rem; }
            .product-name { 
                font-size: 0.9rem; 
                margin-bottom: 0.25rem;
                line-height: 1.2;
            }
            .product-name a {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .product-price { font-size: 1rem; }
            .product-category { font-size: 0.75rem; }
            .search-box { margin-bottom: 1rem; }
        }
        
        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                z-index: 1000;
            }
            
            .nav-menu.active {
                display: flex;
            }
        }
        
        /* Category Chips for Mobile */
        .category-chips {
            display: none;
            overflow-x: auto;
            padding: 1rem;
            gap: 0.5rem;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
        }
        
        .category-chips::-webkit-scrollbar {
            display: none;
        }
        
        .category-chip {
            flex-shrink: 0;
            padding: 0.5rem 1rem;
            background: #f5f5f5;
            border-radius: 50px;
            font-size: 0.9rem;
            white-space: nowrap;
            scroll-snap-align: start;
            text-decoration: none;
            color: #333;
            transition: all 0.3s;
        }
        
        .category-chip.active,
        .category-chip:hover {
            background: var(--primary);
            color: white;
        }
        
        @media (max-width: 768px) {
            .category-chips {
                display: flex;
            }
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-menu-header span {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .mobile-menu-header button {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        .mobile-nav {
            padding: 1.5rem;
            list-style: none;
        }
        
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        
        .mobile-nav a {
            font-size: 1.1rem;
            color: #333;
            text-decoration: none;
        }
        
        .mobile-categories {
            padding: 1.5rem;
            border-top: 1px solid #eee;
        }
        
        .mobile-categories h4 {
            margin-bottom: 1rem;
            color: #666;
        }
        
        .mobile-categories ul {
            list-style: none;
        }
        
        .mobile-categories li {
            margin-bottom: 0.5rem;
        }
        
        .mobile-categories a {
            color: #333;
            text-decoration: none;
        }