      /* Custom Tailwind Config */
      .font-playfair {
        font-family: "Playfair Display", serif;
      }
      .font-inter {
        font-family: "Inter", sans-serif;
      }

      /* Custom color palette for elegance */
      :root {
        --primary-gold: #1f201d;
        --primary-dark: #222522;
        --primary-cream: #fef8e8;
        --accent-bronze: #ffffff;
        --text-warm: #4a4a4a;
        --shadow-warm: rgba(201, 169, 110, 0.15);
        --primary-taupe: #A69177;
        --primary-olive: #5A6B3A;
        --secondary-dark: #1A1A1A;
        --secondary-light: #D4C4A8;
        --accent-green: #4A5A2F;
      }

      /* Elegant animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes shimmer {
        0% {
          background-position: -200px 0;
        }
        100% {
          background-position: calc(200px + 100%) 0;
        }
      }

      @keyframes floatGently {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      .fade-in-up {
        animation: fadeInUp 0.8s ease-out;
      }
      .slide-in-right {
        animation: slideInRight 0.6s ease-out;
      }
      .shimmer-effect {
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        background-size: 200px 100%;
        animation: shimmer 2s infinite;
      }
      .float-gently {
        animation: floatGently 3s ease-in-out infinite;
      }

      /* Smooth scrolling */
      html {
        scroll-behavior: smooth;
      }

      /* Premium hero video container */
      .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }

      .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: 0;
        object-fit: cover;
      }

      /* Premium hero overlay */
      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          rgba(44, 24, 16, 0.014) 0%,
          rgba(127, 83, 25, 0.174) 50%,
          rgba(44, 24, 16, 0) 100%
        );
        z-index: 1;
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      /* Elegant popup styles */
      .popup-backdrop {
        background: rgba(254, 243, 226, 0.683);
        backdrop-filter: blur(8px);
      }

      /* Premium glass effect */
      .glass-effect {
        background: rgba(248, 246, 240, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(201, 169, 110, 0.2);
        box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
      }

      /* Elegant navbar */
      .navbar-scrolled {
        background: rgba(14, 16, 13, 0.842) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(33, 19, 13, 0.2);
      }

      /* Premium card styling */
      .premium-card {
        background: linear-gradient(145deg, #f8f6f05a 0%, #f0ede5b5 100%);
        box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1),
          0 1px 8px rgba(44, 24, 16, 0.05);
        border: 1px solid rgba(201, 169, 110, 0.15);
      }

      .premium-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15),
          0 10px 20px rgba(201, 169, 110, 0.15);
      }

      /* Loyalty card with premium styling */
      .loyalty-card {
        background: linear-gradient(
          145deg,
          #c9a96e 0%,
          #b8956a 50%,
          #a68b5b 100%
        );
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
          0 10px 30px rgba(44, 24, 16, 0.2);
      }

      .stamp-circle {
        width: 45px;
        height: 45px;
        border: 3px solid rgba(44, 24, 16, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: rgba(248, 246, 240, 0.9);
        color: var(--primary-dark);
      }

      .stamp-circle.filled {
        background: var(--primary-dark);
        color: var(--primary-gold);
        transform: scale(1.15);
        box-shadow: 0 4px 15px rgba(44, 24, 16, 0.3);
      }

      /* Elegant pending orders */
      .pending-order-animation {
        animation: floatGently 2s ease-in-out infinite;
      }

      /* Premium star rating */
      .star-rating {
        direction: ltr;
        display: inline-block;
      }
      .star {
        font-size: 1.75rem;
        color: #d1d5db;
        cursor: pointer;
        transition: all 0.3s ease;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
      }
      .star:hover,
      .star.active {
        color: var(--primary-gold);
        transform: scale(1.1);
      }

      /* Enhanced button styles */
      .btn-primary {
        background: linear-gradient(145deg, #c9a96e 0%, #b8956a 100%);
        color: var(--primary-dark);
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
      }

      .btn-primary:hover {
        background: linear-gradient(145deg, #b8956a 0%, #a68b5b 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
      }

      .btn-secondary {
        background: linear-gradient(145deg, #2c1810 0%, #3d2419 100%);
        color: var(--primary-gold);
        border: 1px solid rgba(201, 169, 110, 0.3);
      }

      /* Elegant filter buttons */
      .filter-btn {
        background: rgba(44, 24, 16, 0.05);
        color: var(--primary-dark);
        border: 2px solid rgba(201, 169, 110, 0.3);
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
      }

      .filter-btn:hover,
      .filter-btn.active {
        background: linear-gradient(145deg, #c9a96e 0%, #b8956a 100%);
        color: var(--primary-dark);
        border-color: var(--primary-gold);
        transform: translateY(-2px);
      }

      /* Premium menu item styling */
      .menu-item-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8f6f0 100%);
        border: 1px solid rgba(201, 169, 110, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .menu-item-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(44, 24, 16, 0.15),
          0 10px 20px rgba(201, 169, 110, 0.1);
      }

      .price-badge {
        background: linear-gradient(145deg, #c9a96e 0%, #b8956a 100%);
        color: var(--primary-dark);
        font-weight: 700;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
      }

      /* Shop Cart Styling */
      .cart-icon {
        position: relative;
        cursor: pointer;
      }

      .cart-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: linear-gradient(145deg, #dc2626 0%, #b91c1c 100%);
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
      }

      /* Shopping Cart Modal */
      .cart-item {
        background: rgba(248, 246, 240, 0.8);
        border: 1px solid rgba(201, 169, 110, 0.2);
        border-radius: 1rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
        transition: all 0.3s ease;
      }

      .cart-item:hover {
        background: rgba(248, 246, 240, 1);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(44, 24, 16, 0.1);
      }

      /* Quantity Controls */
      .quantity-btn {
        background: linear-gradient(145deg, #c9a96e 0%, #b8956a 100%);
        color: var(--primary-dark);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .quantity-btn:hover {
        background: linear-gradient(145deg, #b8956a 0%, #a68b5b 100%);
        transform: scale(1.1);
      }

      /* Shop item styling */
      .shop-item-card {
        background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
        border: 1px solid rgba(99, 102, 241, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .shop-item-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15),
          0 10px 20px rgba(99, 102, 241, 0.1);
      }

      /* Shop filter buttons */
      .shop-filter-btn {
        background: rgba(99, 102, 241, 0.05);
        color: #1d1d1f;
        border: 2px solid rgba(53, 67, 41, 0.3);
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
      }

      .shop-filter-btn:hover,
      .shop-filter-btn.active {
        background: linear-gradient(145deg, #3f552d 0%, #9c9864 100%);
        color: white;
        border-color: #53472c;
        transform: translateY(-2px);
      }

      /* Custom RTL support for Arabic */
      .rtl {
        direction: rtl;
      }
      .ltr {
        direction: ltr;
      }

      /* Responsive utilities */
      @media (max-width: 640px) {
        .mobile-menu-item {
          padding: 1rem;
          border-bottom: 1px solid rgba(201, 169, 110, 0.1);
        }

        .mobile-popup {
          margin: 0.5rem;
          max-height: 95vh;
          overflow-y: auto;
        }

        .mobile-grid-2 {
          grid-template-columns: repeat(2, 1fr);
          gap: 0.75rem;
        }

        .mobile-menu-item-small {
          padding: 0.75rem;
        }

        .mobile-menu-item-small img {
          width: 60px;
          height: 60px;
        }

        .mobile-menu-item-small h3 {
          font-size: 0.875rem;
          line-height: 1.25;
        }

        .mobile-menu-item-small p {
          font-size: 0.75rem;
          line-height: 1.25;
        }
      }

      /* Mobile Cart Item Styling */
      .cart-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
      }

      .cart-item .flex {
        flex-direction: column;
        gap: 0.75rem;
      }

      .cart-item .flex.items-center {
        flex-direction: row;
        align-items: center;
      }

      .cart-item img {
        width: 3rem;
        height: 3rem;
      }

      /* Mobile quantity controls */
      .quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }

      /* Mobile buttons */
      .btn-primary,
      .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
      }

      /* Mobile modal adjustments */
      .glass-effect {
        padding: 1.5rem;
        margin: 0.5rem;
      }

      /* Mobile hero text */
      .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
      }

      .hero-content p {
        font-size: 1.125rem;
      }

      /* Extra small screens */
      @media (max-width: 480px) {
        .mobile-popup {
          margin: 0.25rem;
          max-height: 98vh;
        }

        .glass-effect {
          padding: 1rem;
        }

        .cart-item {
          padding: 0.5rem;
        }

        .cart-item img {
          width: 2.5rem;
          height: 2.5rem;
        }

        .quantity-btn {
          width: 30px;
          height: 30px;
          font-size: 0.875rem;
        }

        /* Ultra-compact cart layout */
        .cart-item .flex {
          gap: 0.5rem;
        }

        .hero-content h1 {
          font-size: 2rem;
        }

        .hero-content p {
          font-size: 1rem;
        }
      }

      /* إخفاء الأختام في الموبايل (الهيدر) */
      @media (max-width: 768px) {
        #customer-stamps-display,
        #mobile-customer-stamps-display {
          display: none !important;
        }
      }
      /* اخفاء السلة اللي فوق بالهيدر */
      .navbar .cart-icon {
        display: none !important;
      }

      /* إضافة هذه الأنماط الجديدة */
      @media (max-width: 768px) {
        .navbar .cart-icon {
          display: none !important;
        }

        #customer-status {
          display: none !important;
        }
      }

      .font-playfair {
        font-family: "Playfair Display", serif;
      }
      .font-inter {
        font-family: "Inter", sans-serif;
      }

      /* إضافة أنماط جديدة للشعار */
      .logo-container {
        display: flex;
        align-items: center;
        gap: 44px;
      }

      .logo-image {
        width: 50px;
        height: 50px;
      }

      .logo-text {
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(to right, #8b4b13, #a0522d);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      @media (min-width: 640px) {
        .logo-image {
          width: 50px;
          height: 50px;
        }

        .logo-text {
          font-size: 1.8rem;
        }
      }

      @media (min-width: 768px) {
        .logo-image {
          width: 70px;
          height: 70px;
        }

        .logo-text {
          font-size: 2.2rem;
        }
      }

      /* Improved Checkout Modal for Desktop */
      @media (min-width: 768px) {
        #checkout-modal .glass-effect {
          max-width: 600px;
          width: 90%;
          max-height: 85vh;
          overflow-y: auto;
        }

        #checkout-summary {
          max-height: 200px;
          overflow-y: auto;
        }

        #checkout-items-list {
          max-height: 120px;
          overflow-y: auto;
        }
      }

      @media (min-width: 1024px) {
        #checkout-modal .glass-effect {
          max-width: 700px;
        }

        /* Improve form layout for larger screens */
        #checkout-form .grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 1.5rem;
        }

        /* Make the address field span full width */
        #checkout-form .grid + div {
          grid-column: 1 / -1;
        }
      }

      /* Elegant scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background: var(--primary-cream);
      }

      ::-webkit-scrollbar-thumb {
        background: linear-gradient(145deg, #c9a96e 0%, #b8956a 100%);
        border-radius: 4px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(145deg, #b8956a 0%, #a68b5b 100%);
      }

      /* Loading indicator styles */
      .loading {
        opacity: 0.7;
        pointer-events: none;
      }

      .loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid #f3f3f3;
        border-radius: 50%;
        border-top: 2px solid #c9a96e;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }