
        :root {
            --primary: #8B7355;
            --secondary: #A49080;
            --accent: #C9B8A8;
            --dark: #2C2416;
            --light: #F5F1ED;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 80px 0 60px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.2rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        /* Filter Section */
        .filter-section {
            background: var(--white);
            padding: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .filter-btn {
            padding: 10px 25px;
            border: 2px solid var(--accent);
            background: transparent;
            color: var(--dark);
            border-radius: 30px;
            margin: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* Products Section */
        .products-section {
            padding: 60px 0;
        }

        /* Product Card */


        .product-item {
    margin-bottom: 30px;
    display: flex;
}


.product-card {
    width: 100%;
}


        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 300px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

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

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 10;
        }

        .product-image-placeholder {
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.3;
        }

        .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

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

        .product-title {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .product-description {
            color: var(--secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.7;
            flex-grow: 1;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .product-features li {
            padding: 8px 0;
            color: var(--dark);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--light);
        }

        .product-features li:last-child {
            border-bottom: none;
        }

        .product-features i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid var(--light);
        }

        .product-price {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 700;
        }

        .product-price-label {
            font-size: 0.85rem;
            color: var(--secondary);
            display: block;
        }

        .btn-primary-custom {
            background: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary-custom:hover {
            background: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 36, 22, 0.3);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary);
            padding: 12px 30px;
            border: 2px solid var(--primary);
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-outline-custom:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Quick View Modal Trigger */
        .quick-view-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--white);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            opacity: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 10;
        }

        .product-card:hover .quick-view-btn {
            opacity: 1;
        }

        .quick-view-btn:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--secondary);
        }

        .no-results i {
            font-size: 4rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }

            .page-header p {
                font-size: 1rem;
            }

            .filter-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }

            .product-image {
                height: 250px;
            }

            .product-title {
                font-size: 1.3rem;
            }

            .product-price {
                font-size: 1.5rem;
            }
        }

        /* Animation */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

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


          footer {
            width: 100%;
            background: linear-gradient(135deg, var(--dark) 0%, #3a3024 100%);
            color: var(--light);
            padding: 40px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .footer-brand {
            flex: 1;
            min-width: 200px;
        }

        .footer-brand h3 {
            color: var(--accent);
            font-size: 1.5em;
            margin-bottom: 8px;
            font-weight: 400;
        }

        .footer-brand p {
            color: var(--accent);
            font-style: italic;
            font-size: 0.9em;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95em;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 12px;
            flex-direction: column;
            align-items: center;
        }

        .social-title {
            color: var(--accent);
            font-size: 0.9em;
            margin-bottom: 5px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(201, 184, 168, 0.2);
            color: var(--accent);
            font-size: 0.85em;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }

            .footer-brand {
                width: 100%;
            }

            .footer-links {
                justify-content: center;
                width: 100%;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
  



    