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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(255,165,0,0.2)), 
                        url('https://i.postimg.cc/Z5Hjz8cz/20250424-235758.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            padding-top: 80px;
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease-out;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Header Animations */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 1);
            padding: 10px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(-100%);
            animation: slideDown 0.8s ease-out 0.5s forwards;
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .logo img {
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .desktop-nav ul li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: transparent;
        }

        .desktop-nav ul li a:hover {
            color: white;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: translateY(-2px);
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hamburger-menu:hover {
            transform: scale(1.1);
        }

        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        @media (min-width: 769px) {
            .desktop-nav {
                display: block;
            }
            
            .hamburger-menu {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .hamburger-menu {
                display: flex !important;
            }
        }

        /* Side Menu */
        .menu {
            position: fixed;
            top: 60px;
            left: 0;
            background: linear-gradient(135deg, #333, #555);
            width: 220px;
            height: calc(100% - 60px);
            transform: translateX(-100%);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
            overflow: hidden;
        }

        .menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .menu.open {
            transform: translateX(0);
            box-shadow: 5px 0 20px rgba(0,0,0,0.3);
        }

        .menu.open::before {
            left: 100%;
        }

        .menu ul {
            list-style: none;
            padding: 20px 0;
        }

        .menu ul li {
            margin: 5px 0;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .menu.open ul li {
            transform: translateX(0);
            opacity: 1;
        }

        .menu ul li:nth-child(1) { transition-delay: 0.1s; }
        .menu ul li:nth-child(2) { transition-delay: 0.2s; }
        .menu ul li:nth-child(3) { transition-delay: 0.3s; }
        .menu ul li:nth-child(4) { transition-delay: 0.4s; }
        .menu ul li:nth-child(5) { transition-delay: 0.5s; }
        .menu ul li:nth-child(6) { transition-delay: 0.6s; }

        .menu ul li a {
            font-size: 16px;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .menu ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .menu ul li a:hover::before {
            left: 0;
        }

        .menu ul li a:hover {
            color: white;
            transform: translateX(10px);
        }

        /* Cart Page Layout */
        .cart-page {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 80px);
            padding: 40px 20px;
        }

        .cart-container {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            padding: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }

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

        .cart-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,165,0,0.1), transparent);
            animation: shimmer 3s infinite 1s;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        h1 {
            text-align: center;
            color: #ff6600;
            margin-bottom: 40px;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px #ff6600; }
            to { text-shadow: 0 0 20px #ff6600, 0 0 30px #ff6600; }
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .cart-item {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 20px;
            border-radius: 15px;
            font-size: 16px;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease-out forwards;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,102,0,0.15);
        }

        .cart-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, #ff6600, #ff9900);
        }

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

        .cart-item:nth-child(1) { animation-delay: 0.7s; }
        .cart-item:nth-child(2) { animation-delay: 0.8s; }
        .cart-item:nth-child(3) { animation-delay: 0.9s; }
        .cart-item:nth-child(4) { animation-delay: 1.0s; }
        .cart-item:nth-child(5) { animation-delay: 1.1s; }

        .cart-item span {
            flex: 1;
            text-align: left;
            font-weight: 500;
        }

        .cart-item span:nth-child(2) {
            text-align: center;
            color: #666;
        }

        .cart-item span:nth-child(3) {
            text-align: right;
            font-weight: 700;
            color: #27ae60;
            font-size: 1.1rem;
        }

        .cart-total {
            margin: 30px 0;
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
            border-radius: 15px;
            border: 2px solid #27ae60;
            position: relative;
            z-index: 1;
        }

        .remove-btn {
            background: linear-gradient(45deg, #ff6b6b, #ff5252);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255,107,107,0.3);
            position: relative;
            overflow: hidden;
        }

        .remove-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .remove-btn:hover::before {
            left: 100%;
        }

        .remove-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255,107,107,0.4);
        }

        #clear-cart,
        #order-now {
            margin-top: 20px;
            width: 100%;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255,102,0,0.3);
            position: relative;
            overflow: hidden;
        }

        #clear-cart {
            background: linear-gradient(45deg, #6c757d, #495057);
            box-shadow: 0 8px 20px rgba(108,117,125,0.3);
        }

        #clear-cart::before,
        #order-now::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        #clear-cart:hover::before,
        #order-now:hover::before {
            left: 100%;
        }

        #clear-cart:hover,
        #order-now:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,102,0,0.4);
        }

        #clear-cart:hover {
            box-shadow: 0 12px 30px rgba(108,117,125,0.4);
        }

        /* Empty Cart State */
        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .empty-cart-icon {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .empty-cart p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .shop-now-btn {
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255,102,0,0.3);
        }

        .shop-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,102,0,0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cart-page {
                padding: 20px 10px;
                align-items: flex-start;
                padding-top: 100px;
            }

            .cart-container {
                padding: 25px 20px;
                margin: 20px 0;
            }

            h1 {
                font-size: 2rem;
            }

            .cart-item {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                padding: 15px;
            }

            .cart-item span {
                text-align: center;
            }

            .hamburger-menu {
                display: flex;
            }

            .desktop-nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .cart-container {
                padding: 20px 15px;
            }

            h1 {
                font-size: 1.8rem;
            }

            .cart-total {
                font-size: 1.3rem;
            }
        }