/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2026 | 14:05:32 */

        :root {
            --Wamadfz2-copper: #b87333;
            --Wamadfz2-copper-dark: #8b5a2b;
            --Wamadfz2-copper-light: #d4a574;
            --Wamadfz2-clay: #c97356;
            --Wamadfz2-clay-light: #e8b4a0;
            --Wamadfz2-sage: #8b9a7d;
            --Wamadfz2-cream: #faf6f0;
            --Wamadfz2-sand: #f0e6d6;
            --Wamadfz2-charcoal: #3a3a3a;
            --Wamadfz2-gold: #d4af37;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background: var(--Wamadfz2-cream);
            overflow-x: hidden;
        }

        .Wamadfz2-products-section {
            position: relative;
            padding: 6rem 2rem;
            background: linear-gradient(to bottom, 
                var(--Wamadfz2-cream) 0%, 
                var(--Wamadfz2-sand) 50%,
                var(--Wamadfz2-cream) 100%);
            overflow: hidden;
        }

        /* Moroccan zellige-inspired pattern overlay */
        .Wamadfz2-zellige-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: 
                linear-gradient(30deg, var(--Wamadfz2-copper) 12%, transparent 12.5%, transparent 87%, var(--Wamadfz2-copper) 87.5%, var(--Wamadfz2-copper)),
                linear-gradient(150deg, var(--Wamadfz2-copper) 12%, transparent 12.5%, transparent 87%, var(--Wamadfz2-copper) 87.5%, var(--Wamadfz2-copper)),
                linear-gradient(30deg, var(--Wamadfz2-clay) 12%, transparent 12.5%, transparent 87%, var(--Wamadfz2-clay) 87.5%, var(--Wamadfz2-clay)),
                linear-gradient(150deg, var(--Wamadfz2-clay) 12%, transparent 12.5%, transparent 87%, var(--Wamadfz2-clay) 87.5%, var(--Wamadfz2-clay));
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px, 40px 70px;
            pointer-events: none;
        }

        .Wamadfz2-products-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Header Section */
        .Wamadfz2-products-header {
            text-align: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: Wamadfz2-fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        .Wamadfz2-section-title {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 400;
            color: var(--Wamadfz2-copper);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .Wamadfz2-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--Wamadfz2-gold), 
                transparent);
        }

        .Wamadfz2-section-subtitle {
            font-family: 'Bodoni Moda', serif;
            font-size: clamp(1.1rem, 1.5vw, 1.4rem);
            font-style: italic;
            color: var(--Wamadfz2-charcoal);
            opacity: 0.8;
            margin-top: 2rem;
        }

        /* Products Grid */
        .Wamadfz2-products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .Wamadfz2-product-card {
            background: white;
            border-radius: 0;
            overflow: hidden;
            position: relative;
            opacity: 0;
            animation: Wamadfz2-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            box-shadow: 
                0 8px 30px rgba(184, 115, 51, 0.08),
                0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Staggered animation */
        .Wamadfz2-product-card:nth-child(1) { animation-delay: 0.3s; }
        .Wamadfz2-product-card:nth-child(2) { animation-delay: 0.4s; }
        .Wamadfz2-product-card:nth-child(3) { animation-delay: 0.5s; }

        .Wamadfz2-product-card:hover {
            transform: translateY(-12px);
            box-shadow: 
                0 25px 60px rgba(184, 115, 51, 0.18),
                0 8px 25px rgba(0, 0, 0, 0.12);
        }

        /* Moroccan tile-inspired decorative overlay */
        .Wamadfz2-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 48%, var(--Wamadfz2-gold) 48%, var(--Wamadfz2-gold) 52%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, var(--Wamadfz2-gold) 48%, var(--Wamadfz2-gold) 52%, transparent 52%);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 1;
        }

        .Wamadfz2-product-card:hover::before {
            opacity: 0.03;
        }

        /* Inner decorative frame */
        .Wamadfz2-product-card::after {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            bottom: 12px;
            border: 1.5px solid var(--Wamadfz2-copper-light);
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            z-index: 5;
        }

        .Wamadfz2-product-card:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        /* Product Image */
        .Wamadfz2-product-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            background: var(--Wamadfz2-sand);
        }

        .Wamadfz2-product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .Wamadfz2-product-card:hover .Wamadfz2-product-image {
            transform: scale(1.05);
        }

        /* Decorative corner ornaments */
        .Wamadfz2-corner-ornament {
            position: absolute;
            width: 40px;
            height: 40px;
            z-index: 6;
            pointer-events: none;
        }

        .Wamadfz2-corner-ornament::before,
        .Wamadfz2-corner-ornament::after {
            content: '';
            position: absolute;
            background: var(--Wamadfz2-gold);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .Wamadfz2-corner-tl {
            top: 10px;
            left: 10px;
        }

        .Wamadfz2-corner-tl::before {
            top: 0;
            left: 0;
            width: 20px;
            height: 2px;
        }

        .Wamadfz2-corner-tl::after {
            top: 0;
            left: 0;
            width: 2px;
            height: 20px;
        }

        .Wamadfz2-corner-tr {
            top: 10px;
            right: 10px;
        }

        .Wamadfz2-corner-tr::before {
            top: 0;
            right: 0;
            width: 20px;
            height: 2px;
        }

        .Wamadfz2-corner-tr::after {
            top: 0;
            right: 0;
            width: 2px;
            height: 20px;
        }

        .Wamadfz2-corner-bl {
            bottom: 10px;
            left: 10px;
        }

        .Wamadfz2-corner-bl::before {
            bottom: 0;
            left: 0;
            width: 20px;
            height: 2px;
        }

        .Wamadfz2-corner-bl::after {
            bottom: 0;
            left: 0;
            width: 2px;
            height: 20px;
        }

        .Wamadfz2-corner-br {
            bottom: 10px;
            right: 10px;
        }

        .Wamadfz2-corner-br::before {
            bottom: 0;
            right: 0;
            width: 20px;
            height: 2px;
        }

        .Wamadfz2-corner-br::after {
            bottom: 0;
            right: 0;
            width: 2px;
            height: 20px;
        }

        .Wamadfz2-product-card:hover .Wamadfz2-corner-ornament::before,
        .Wamadfz2-product-card:hover .Wamadfz2-corner-ornament::after {
            opacity: 1;
        }

        /* Sale Badge */
        .Wamadfz2-sale-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--Wamadfz2-clay);
            color: white;
            padding: 0.4rem 1rem;
            font-family: 'Cinzel Decorative', serif;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 700;
            z-index: 5;
            box-shadow: 0 4px 15px rgba(201, 115, 86, 0.4);
        }

        /* Product Info */
        .Wamadfz2-product-info {
            padding: 1.75rem 1.5rem;
            text-align: center;
        }

        .Wamadfz2-product-category {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--Wamadfz2-sage);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .Wamadfz2-product-title {
            font-family: 'Bodoni Moda', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--Wamadfz2-charcoal);
            margin-bottom: 1rem;
            line-height: 1.3;
            min-height: 2.6em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .Wamadfz2-product-price-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .Wamadfz2-product-price {
            font-family: 'Bodoni Moda', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--Wamadfz2-copper);
        }

        .Wamadfz2-product-price-regular {
            font-size: 1.15rem;
            color: var(--Wamadfz2-charcoal);
            opacity: 0.5;
            text-decoration: line-through;
            font-weight: 400;
        }

        /* CTA Button */
        .Wamadfz2-product-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.75rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--Wamadfz2-cream);
            background: var(--Wamadfz2-copper);
            border: none;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

        .Wamadfz2-product-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--Wamadfz2-copper-dark);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                        height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .Wamadfz2-product-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .Wamadfz2-product-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(184, 115, 51, 0.3);
        }

        .Wamadfz2-product-cta span,
        .Wamadfz2-product-cta svg {
            position: relative;
            z-index: 1;
        }

        .Wamadfz2-product-cta svg {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .Wamadfz2-product-cta:hover svg {
            transform: translateX(4px);
        }

        /* Decorative floating elements */
        .Wamadfz2-float-decoration {
            position: absolute;
            pointer-events: none;
            opacity: 0.08;
        }

        .Wamadfz2-decoration-1 {
            top: 8%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--Wamadfz2-copper) 25%, transparent 25%, transparent 75%, var(--Wamadfz2-copper) 75%);
            background-size: 20px 20px;
            transform: rotate(15deg);
            animation: Wamadfz2-float 8s ease-in-out infinite;
        }

        .Wamadfz2-decoration-2 {
            bottom: 10%;
            right: 8%;
            width: 120px;
            height: 120px;
            border: 3px solid var(--Wamadfz2-clay);
            border-radius: 50% 30% 50% 30%;
            animation: Wamadfz2-rotate 15s linear infinite;
        }

        /* Animations */
        @keyframes Wamadfz2-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes Wamadfz2-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes Wamadfz2-float {
            0%, 100% {
                transform: translateY(0) rotate(15deg);
            }
            50% {
                transform: translateY(-25px) rotate(20deg);
            }
        }

        @keyframes Wamadfz2-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .Wamadfz2-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .Wamadfz2-product-card:nth-child(n+3) {
                animation-delay: 0.6s;
            }
        }

        @media (max-width: 900px) {
            .Wamadfz2-products-section {
                padding: 4rem 1.5rem;
            }

            .Wamadfz2-products-grid {
                gap: 2rem;
            }

            .Wamadfz2-products-header {
                margin-bottom: 3.5rem;
            }
        }

        @media (max-width: 640px) {
            .Wamadfz2-products-section {
                padding: 3rem 1rem;
            }

            .Wamadfz2-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .Wamadfz2-section-title {
                font-size: 2rem;
            }

            .Wamadfz2-section-subtitle {
                font-size: 1rem;
            }

            .Wamadfz2-product-info {
                padding: 1.25rem 1rem;
            }

            .Wamadfz2-product-title {
                font-size: 1.15rem;
            }

            .Wamadfz2-product-cta {
                padding: 0.65rem 1.25rem;
                font-size: 0.85rem;
            }

            .Wamadfz2-corner-ornament {
                width: 30px;
                height: 30px;
            }

            .Wamadfz2-corner-ornament::before {
                width: 15px !important;
            }

            .Wamadfz2-corner-ornament::after {
                height: 15px !important;
            }
        }

        @media (max-width: 480px) {
            .Wamadfz2-products-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .Wamadfz2-product-card:nth-child(n+3) {
                display: none;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
   