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

        a {
            text-decoration: none;
            color: #fff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #ffffff;
            color: #2c2c2c;
            line-height: 1.5;
            overflow-x: hidden;
        }

        #nav-icon {
            display: none;
        }

        h1,
        h2,
        h3,
        .logo,
        .nav-links a,
        .button {
            font-family: 'Cormorant Garamond', serif;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }


        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .product-card {
            text-align: center;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
        }

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

        /* Primary image */
        .product-image .primary-img {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 1;
        }

        /* Secondary image - hidden by default */
        .product-image .secondary-img {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

        /* On hover - fade primary out, secondary in */
        .product-card:hover .product-image .primary-img {
            opacity: 0;
        }

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

        /* Both images scale on hover */
        .product-card:hover .product-image img {
            transform: scale(1.08);
            transition: transform 0.6s ease;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #b8963b;
            color: white;
            padding: 0.3rem 1rem;
            font-size: 0.7rem;
            font-weight: 600;
            border-radius: 30px;
            letter-spacing: 1px;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-title {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .price {
            font-size: 1rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .sale-price {
            color: #b8963b;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .old-price {
            text-decoration: line-through;
            margin-left: 0.5rem;
            font-size: 0.9rem;
            color: #999;
        }

        .color-info {
            font-size: 0.75rem;
            color: #b8963b;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .btn-add {
            background: transparent;
            border: 1.5px solid #2c2c2c;
            padding: 0.6rem 1.5rem;
            margin-top: 1rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            border-radius: 4px;
        }

        .btn-add:hover {
            background: #2c2c2c;
            color: white;
            border-color: #2c2c2c;
        }

        .button {
            display: inline-block;
            background: #2c2c2c;
            color: white;
            padding: 0.9rem 2.2rem;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            border-radius: 4px;
        }

        .button:hover {
            background: #b8963b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(184, 150, 59, 0.2);
        }

        /* Testimonial Section */
        .testimonial-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 3rem 0;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            max-width: 350px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0e6dc;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .testimonial-name {
            font-weight: 600;
            color: #b8963b;
        }

        /* Map Section */
        .map-container {
            text-align: center;
            margin: 2rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        iframe {
            width: 100%;
            height: 350px;
            border: 0;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #e0e0e0;
            padding: 4rem 0 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer h3 {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: #e9d6a7;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            text-decoration: none;
            color: #ccc;
            transition: color 0.3s ease;
            font-size: 0.85rem;
        }

        .footer-links a:hover {
            color: #b8963b;
            padding-left: 5px;
        }

        .newsletter input {
            width: 100%;
            padding: 0.8rem;
            margin: 0.8rem 0;
            border: 1px solid #333;
            background: #2a2a2a;
            color: white;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .newsletter input:focus {
            outline: none;
            border-color: #b8963b;
            box-shadow: 0 0 0 2px rgba(184, 150, 59, 0.2);
        }

        .social-icons {
            display: flex;
            gap: 1.2rem;
            margin-top: 1rem;
        }

        .social-icons a {
            color: #ccc;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: #b8963b;
            transform: translateY(-3px);
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* RTL Support */
        [dir="rtl"] .nav-links {
            padding-right: 0;
        }

        [dir="rtl"] .lang-switcher {
            flex-direction: row-reverse;
        }


        /* Announcement Bar */
        .announcement-bar {
            background: linear-gradient(135deg, #1e1e1e 0%, #2c2c2c 100%);
            color: #e9d6a7;
            text-align: center;
            padding: 0.75rem;
            font-size: 0.85rem;
            letter-spacing: 1px;
            font-weight: 300;
            position: relative;
            overflow: hidden;
        }

        .announcement-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 6s infinite;
        }


        @media (max-width: 768px) {

            .hero-text h1 {
                font-size: 2.2rem;
                letter-spacing: 4px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .product-grid {
                gap: 1.5rem;
            }

            .container {
                padding: 0 1.2rem;
            }

            #nav-icon {
                display: block;
            }

        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
            /*background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);*/
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
        }

        .header:hover {
            background: rgba(255, 255, 255, 0.95);
        }

        .logo img {
            height: 55px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c2c2c;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.2s ease;
            display: inline-block;
        }

        .nav-links a:hover {
            color: #b8963b;
            transform: translateY(-2px);
        }

        .header-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #2c2c2c;
            transition: all 0.3s ease;
        }

        .icon-btn:hover {
            color: #b8963b;
            transform: scale(1.1);
        }

        .lang-switcher {
            display: flex;
            gap: 0.5rem;
            margin-left: 1rem;
        }

        .lang-switcher a {
            text-decoration: none;
            color: #2c2c2c;
            font-weight: 500;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 0.8rem;
        }

        .lang-switcher a.active {
            background: #b8963b;
            color: white;
        }

        .lang-switcher a:hover:not(.active) {
            background: #f0e6dc;
        }

        /* Responsive */
        /* Mobile Header CSS Only */
        @media (max-width: 768px) {
            .announcement-bar {
                display: none;
            }

            .header {
                padding: 0.8rem 1rem;
                flex-wrap: wrap;
                background: #fff;
                gap: 0.5rem;
            }

            .logo {
                display: block !important;
            }

            .logo img {
                height: 40px;
            }

            nav {
                width: 100%;
                order: 3;
                display: none;
            }

            .nav-links {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 0.5rem 0;
                width: 100%;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 0.8rem 0;
                font-size: 0.9rem;
                border-bottom: 1px solid #f0e6dc;
            }

            .header-icons {
                margin-left: auto;
                gap: 0.8rem;
            }

            .icon-btn {
                font-size: 1.1rem;
                padding: 0.3rem;
            }

            .lang-switcher {
                margin-left: 0.3rem;
            }

            .lang-switcher a {
                padding: 0.2rem 0.4rem;
                font-size: 0.75rem;
            }
        }