        :root {
            --gold-color: #d4af37;
            --dark-brown: #3d2b1f;
            --light-brown: #8b4513;
            --leather: #c19a6b;
        }
        
        body {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1547082299-de196ea013d6?q=80&w=2070') no-repeat center center fixed;
            background-size: cover;
            color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .section-title {
            font-family: 'Cinzel', serif;
            font-weight: 900;
            color: var(--gold-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            font-size: 3rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--gold-color), transparent);
        }
        
        .section-subtitle {
            color: #dcd0c0;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .product-card {
            background: rgba(61, 43, 31, 0.85);
            border: 2px solid var(--leather);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
            border-color: var(--gold-color);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--leather);
        }
        
        .card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-title {
            font-family: 'Cinzel', serif;
            color: var(--gold-color);
            font-weight: 700;
            border-bottom: 1px solid var(--leather);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .card-text {
            color: #dcd0c0;
            flex-grow: 1;
            font-size: 0.95rem;
        }
        
        .price-tag {
            background: var(--dark-brown);
            color: var(--gold-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1.2rem;
            border: 1px solid var(--leather);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .gold-amount {
            background: var(--gold-color);
            color: var(--dark-brown);
            padding: 3px 10px;
            border-radius: 15px;
            font-weight: bold;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 5px;
        }
        
        .btn-western {
            background: linear-gradient(to bottom, var(--gold-color), #b8860b);
            color: var(--dark-brown);
            border: none;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }
        
        .btn-western:hover {
            background: linear-gradient(to bottom, #e6c200, #daa520);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
        }
        
        .btn-western:active {
            transform: translateY(1px);
        }
        
        .btn-checkout {
            background: linear-gradient(to bottom, #8b4513, #5d2906);
            color: white;
            font-weight: bold;
            padding: 12px 30px;
            font-size: 1.2rem;
            border-radius: 30px;
            border: 2px solid var(--gold-color);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }
        
        .btn-checkout:hover {
            transform: scale(1.05);
            background: linear-gradient(to bottom, #a0522d, #7a3b11);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }
        
        .cart-badge {
            background: var(--gold-color);
            color: var(--dark-brown);
            border-radius: 50%;
            padding: 2px 8px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .category-filter {
            background: rgba(61, 43, 31, 0.85);
            border: 2px solid var(--leather);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .category-title {
            color: var(--gold-color);
            font-family: 'Cinzel', serif;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .category-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        .category-btn {
            background: rgba(139, 69, 19, 0.7);
            color: #dcd0c0;
            border: 1px solid var(--leather);
            border-radius: 20px;
            padding: 5px 15px;
            transition: all 0.3s;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--gold-color);
            color: var(--dark-brown);
            border-color: var(--gold-color);
        }
        
        .featured-banner {
            background: linear-gradient(to right, rgba(139, 69, 19, 0.8), rgba(212, 175, 55, 0.8));
            border: 2px solid var(--gold-color);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .featured-text {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            margin: 0;
            position: relative;
            z-index: 2;
        }
        
        .featured-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.3);
            z-index: 1;
        }
        
        .product-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        
        .gold-container {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .featured-product {
            border: 3px solid var(--gold-color);
            position: relative;
        }
        
        .featured-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--gold-color);
            color: var(--dark-brown);
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 0.8rem;
            z-index: 10;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .btn-checkout {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }