
//======================================================
.slide-item {
            flex-shrink: 0;
            width: 100%;
        }
        .slide-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        .dot {
            transition: all 0.3s ease;
        }










//======================================





















//-------------------------------------------------------------------------------------------


    @keyframes jewel-rotate {
      0% { transform: rotateY(0deg) rotateX(0deg); }
      25% { transform: rotateY(90deg) rotateX(5deg); }
      50% { transform: rotateY(180deg) rotateX(0deg); }
      75% { transform: rotateY(270deg) rotateX(-5deg); }
      100% { transform: rotateY(360deg) rotateX(0deg); }
    }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Oxanium', sans-serif;
            background: #000;
            overflow-x: hidden;
            color: #fff;
            perspective: 1500px;
        }

        .bg-layer-1 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, white, transparent 50%),
                        radial-gradient(circle at 80% 50%, #00d9ff, transparent 50%),
                        radial-gradient(circle at 50% 80%, #7b2cbf, transparent 50%);
            opacity: 0.4;
            animation: bgPulse 8s ease-in-out infinite;
            z-index: -5;
        }

        @keyframes bgPulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        .bg-layer-2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 0, 110, 0.03) 2px, rgba(255, 0, 110, 0.03) 4px);
            animation: gridMove 30s linear infinite;
            z-index: -4;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .shapes-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border: 2px solid;
            animation: float3D 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            border-color: rgba(0, 217, 255, 0.3);
            top: 10%;
            left: 10%;
            animation-duration: 25s;
            transform: rotate(45deg);
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border-color: rgba(255, 0, 110, 0.3);
            top: 60%;
            right: 15%;
            animation-duration: 30s;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            border-color: rgba(123, 44, 191, 0.3);
            bottom: 20%;
            left: 70%;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-duration: 22s;
            animation-delay: -10s;
        }

        @keyframes float3D {
            0%, 100% {
                transform: translateY(0) translateX(0) rotateX(0) rotateY(0) rotateZ(0);
            }
            25% {
                transform: translateY(-100px) translateX(50px) rotateX(15deg) rotateY(15deg) rotateZ(90deg);
            }
            50% {
                transform: translateY(-50px) translateX(-50px) rotateX(-15deg) rotateY(30deg) rotateZ(180deg);
            }
            75% {
                transform: translateY(100px) translateX(30px) rotateX(20deg) rotateY(-20deg) rotateZ(270deg);
            }
        }

        .neon-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .neon-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            animation: neonFloat linear infinite;
        }

        @keyframes neonFloat {
            0% {
                transform: translate(0, 100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(var(--tx), -100px) scale(1.5);
                opacity: 0;
            }
        }

        .header-container {
            position: relative;
            padding: 4rem 2rem 3rem;
            transform-style: preserve-3d;
        }

        .header-3d {
            font-family: 'Audiowide', sans-serif;
            font-size: 6rem;
            font-weight: 800;
            text-align: center;
            background: linear-gradient(45deg, #00d9ff, white, #00ff88, #00d9ff);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: neonGradient 5s ease infinite;
            text-shadow: 
                0 0 10px rgba(0, 217, 255, 0.8),
                0 0 20px rgba(255, 0, 110, 0.6),
                0 0 30px rgba(0, 255, 136, 0.4);
            transform: perspective(800px) rotateX(10deg);
            letter-spacing: 0.05em;
            filter: drop-shadow(0 10px 30px rgba(0, 217, 255, 0.5));
        }

        @keyframes neonGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .subtitle-3d {
            font-family: 'Aldrich', sans-serif;
            text-align: center;
            font-size: 1.8rem;
            color: #00d9ff;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            margin-top: 1rem;
            animation: glowPulse 3s ease-in-out infinite;
            text-shadow: 
                0 0 10px #00d9ff,
                0 0 20px #00d9ff,
                0 0 30px #00d9ff;
        }

        @keyframes glowPulse {
            0%, 100% { 
                opacity: 0.7;
                text-shadow: 0 0 10px #00d9ff, 0 0 20px #00d9ff;
            }
            50% { 
                opacity: 1;
                text-shadow: 0 0 20px #00d9ff, 0 0 40px #00d9ff, 0 0 60px #00d9ff;
            }
        }

        .dashboard-button-container {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 100;
        }

        .dashboard-button {
            font-family: 'Michroma', sans-serif;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(255, 0, 110, 0.2));
            border: 2px solid #00d9ff;
            padding: 1rem 2rem;
            border-radius: 50px;
            color: #00d9ff;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
            text-shadow: 0 0 10px #00d9ff;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
            letter-spacing: 0.1em;
        }

        .dashboard-button:hover {
            transform: scale(1.1) translateY(-5px);
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.4), rgba(255, 0, 110, 0.4));
            box-shadow: 
                0 0 30px rgba(0, 217, 255, 0.6),
                0 10px 40px rgba(0, 217, 255, 0.4);
            border-color: #ff006e;
            color: #ff006e;
            text-shadow: 0 0 15px #ff006e;
        }

        .cart-summary-3d {
            position: sticky;
            top: 2rem;
            z-index: 50;
            margin: 0 auto 3rem;
            max-width: 1200px;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
            border: 3px solid;
            border-image: linear-gradient(45deg, #00d9ff, #ff006e, #00ff88) 1;
            padding: 2rem;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 60px rgba(0, 217, 255, 0.1);
            animation: cardEntry 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }

        @keyframes cardEntry {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
        }

        .cart-header {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid rgba(0, 217, 255, 0.3);
        }

        .cart-stat {
            text-align: center;
        }

        .cart-stat-label {
            font-family: 'Aldrich', sans-serif;
            font-size: 0.9rem;
            color: #ff006e;
            letter-spacing: 0.2em;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px #ff006e;
        }

        .cart-stat-value {
            font-family: 'Audiowide', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00d9ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
        }

        .cart-items-container {
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 1rem;
        }

        .cart-items-container::-webkit-scrollbar {
            width: 8px;
        }

        .cart-items-container::-webkit-scrollbar-track {
            background: rgba(0, 217, 255, 0.1);
            border-radius: 10px;
        }

        .cart-items-container::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #00d9ff, #ff006e);
            border-radius: 10px;
        }

        .cart-item-3d {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
            border: 2px solid #00d9ff;
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .cart-item-3d:hover {
            transform: translateX(10px);
            border-color: #ff006e;
            box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
        }

        .menu-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 3rem 9rem;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .menu-card-3d {
            position: relative;
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
            border: 3px solid #00d9ff;
            border-radius: 20px;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(10px);
            transform-style: preserve-3d;
            animation: menuCardEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            max-width: 100%;
			transform-style: preserve-3d;
  			animation:menuCardEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
        }
   
        @keyframes menuCardEntry {
            from {
                opacity: 0;
                transform: translateY(50px) rotateX(-20deg);
            }
        }

        .menu-card-3d:hover {
            transform: translateY(-15px) scale(1.05) rotateX(5deg);
            border-color: #ff006e;
            box-shadow: 
                0 20px 60px rgba(255, 0, 110, 0.5),
                inset 0 0 40px rgba(0, 217, 255, 0.2);
        }

        .menu-card-3d.selected {
            border: 3px solid #00ff88;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 217, 255, 0.15));
            box-shadow: 
                0 0 40px rgba(0, 255, 136, 0.6),
                inset 0 0 60px rgba(0, 255, 136, 0.2);
        }

        .menu-emoji {
            text-align: center;
            margin-bottom: 1.5rem;
            max-width: 100%;
			animation:  jewel-rotate 6s linear infinite;
			transform-style: preserve-3d;
			font-size: 5rem;
        }

        .menu-emoji img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
						font-size: 5rem;

        }

        .menu-name {
            font-family: 'Michroma', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            color: #e0f4ff;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            overflow: auto;
        }

        .menu-price {
            font-family: 'Audiowide', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            background: linear-gradient(135deg, #00ff88, #00d9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
            margin-bottom: 1rem;
        }

        .size-selector {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .size-btn {
            font-family: 'Oxanium', sans-serif;
            padding: 0.5rem 1rem;
            background: rgba(0, 217, 255, 0.1);
            border: 2px solid #00d9ff;
            border-radius: 10px;
            color: #00d9ff;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .size-btn:hover {
            background: rgba(0, 217, 255, 0.3);
            transform: scale(1.1);
        }

        .size-btn.selected {
            background: linear-gradient(135deg, #00ff88, #00d9ff);
            border-color: #00ff88;
            color: #000;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
        }

        .loading-spinner {
            text-align: center;
            padding: 3rem;
            font-size: 3rem;
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .checkout-float {
            position: fixed;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            display: none;
        }

        .checkout-btn-3d {
            font-family: 'Audiowide', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, #00ff88, #00d9ff);
            border: 3px solid #00ff88;
            border-radius: 50px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 
                0 10px 40px rgba(0, 255, 136, 0.6),
                inset 0 0 30px rgba(255, 255, 255, 0.3);
            animation: checkoutPulse 2s ease-in-out infinite;
        }

        @keyframes checkoutPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 10px 40px rgba(0, 255, 136, 0.6);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 20px 60px rgba(0, 255, 136, 0.9);
            }
        }

        .checkout-btn-3d:hover {
            transform: scale(1.15) translateY(-5px);
            background: linear-gradient(135deg, #00d9ff, #ff006e);
            border-color: #ff006e;
            color: #fff;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 200;
            padding: 2rem;
        }

        .modal-content {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
            border: 3px solid;
            border-image: linear-gradient(45deg, #00d9ff, #ff006e, #00ff88) 1;
            border-radius: 20px;
            padding: 3rem;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 0 100px rgba(0, 217, 255, 0.5);
        }

        .modal-title {
            font-family: 'Audiowide', sans-serif;
            font-size: 3rem;
            background: linear-gradient(135deg, #00d9ff, #ff006e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
        }

        .input-3d {
            width: 100%;
            font-family: 'Oxanium', sans-serif;
            font-size: 1.2rem;
            padding: 1.2rem;
            background: rgba(0, 217, 255, 0.05);
            border: 2px solid #00d9ff;
            border-radius: 15px;
            color: #fff;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .input-3d:focus {
            outline: none;
            border-color: #ff006e;
            background: rgba(255, 0, 110, 0.1);
            box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
            transform: scale(1.02);
        }

        .input-3d::placeholder {
            color: rgba(224, 244, 255, 0.5);
        }

        .btn-submit-3d {
            width: 100%;
            font-family: 'Audiowide', sans-serif;
            font-size: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #00ff88, #00d9ff);
            border: none;
            border-radius: 15px;
            color: #000;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .btn-submit-3d:hover:not(:disabled) {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.6);
        }

        .btn-submit-3d:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-cancel-3d {
            width: 100%;
            font-family: 'Michroma', sans-serif;
            font-size: 1.2rem;
            padding: 1rem;
            background: rgba(255, 0, 110, 0.2);
            border: 2px solid #ff006e;
            border-radius: 15px;
            color: #ff006e;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .btn-cancel-3d:hover {
            background: rgba(255, 0, 110, 0.4);
            transform: scale(1.02);
        }

        .clear-btn-3d {
            width: 100%;
            font-family: 'Michroma', sans-serif;
            padding: 1rem;
            background: rgba(255, 0, 110, 0.2);
            border: 2px solid #ff006e;
            border-radius: 15px;
            color: #ff006e;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .clear-btn-3d:hover {
            background: rgba(255, 0, 110, 0.4);
            transform: scale(1.05);
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .qty-btn {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #ff006e, #c41e3a);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-size: 1.3rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 0, 110, 0.5);
        }

        .qty-btn.plus {
            background: linear-gradient(135deg, #00ff88, #00d9ff);
            color: #000;
        }

        .remove-btn {
            background: #ff006e;
            border: none;
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: #c41e3a;
            transform: scale(1.1);
        }

        #card-container {
            margin: 1.5rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 217, 255, 0.3);
            border-radius: 15px;
            min-height: 100px;
        }

        .payment-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-family: 'Oxanium', sans-serif;
            font-size: 1.1rem;
            display: none;
        }

        .payment-status.success {
            background: rgba(0, 255, 136, 0.2);
            border: 2px solid #00ff88;
            color: #00ff88;
            display: block;
        }

        .payment-status.error {
            background: rgba(255, 0, 110, 0.2);
            border: 2px solid #ff006e;
            color: #ff006e;
            display: block;
        }

        .apple-pay-button, .google-pay-button {
            width: 100%;
            height: 60px;
            border-radius: 8px;
            cursor: pointer;
            border: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .apple-pay-button {
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .apple-pay-button:hover {
            background: #1a1a1a;
            transform: scale(1.02);
        }

        .google-pay-button {
            background: #fff;
            color: #3c4043;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .google-pay-button:hover {
            background: #f8f9fa;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .header-3d {
                font-size: 3rem;
            }
            .subtitle-3d {
                font-size: 1.2rem;
                letter-spacing: 0.2em;
            }
            .menu-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }
            .cart-stat-value {
                font-size: 1.8rem;
            }
            .modal-content {
                padding: 2rem;
            }
        }

//=====================================================





//============================================


