 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            padding-top: 90px;
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            padding: 20px 0;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            font-size: 42px;
            font-weight: 700;
            font-style: italic;
            color: #b8d657;
            text-transform: capitalize;
            line-height: 0.9;
            width: 15%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 45px;
            align-items: center;
        }

        .nav-links li a {
            color: #b8d657;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links li a:hover {
            color: #a5c44a;
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: #b8d657;
        }

        .nav-links li a.has-dropdown::after {
            content: '▼';
            font-size: 10px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.98);
            border: 1px solid #b8d657;
            border-radius: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-top: 15px;
            padding: 10px 0;
            z-index: 1001;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }

        .dropdown li a {
            display: block;
            padding: 12px 20px;
            color: #b8d657;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .dropdown li a:hover {
            background: #b8d657;
            color: #000;
        }

        .dropdown li a::after {
            content: '' !important;
        }

        .whatsapp-btn {
            background: #b8d657;
            color: #000;
            padding: 12px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }

        .whatsapp-btn:hover {
            background: #a5c44a;
            transform: translateY(-2px);
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float i {
            color: #fff;
            font-size: 32px;
        }

        /* Cart Section */
        .cart-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 60px;
            min-height: calc(100vh - 200px);
        }

        .cart-title {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 60px;
        }

        .cart-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: start;
        }

        /* Cart Items Section */
        .cart-items {
            width: 100%;
        }

        .cart-header {
            display: grid;
            grid-template-columns: 2fr 1fr;
            padding: 20px 0;
            border-bottom: 1px solid #333;
            margin-bottom: 30px;
        }

        .cart-header-item {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cart-header-item:last-child {
            text-align: right;
        }

        /* Product Item */
        .product-item {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 30px;
            padding: 30px 0;
            border-bottom: 1px solid #222;
        }

        .product-image {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0a0a;
            border-radius: 8px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-details {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .product-info h3 {
            font-size: 20px;
            font-weight: 600;
            color: #b8d657;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .product-description {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .product-total-price {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        .product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #0a0a0a;
            padding: 8px 15px;
            border-radius: 8px;
            border: 1px solid #222;
        }

        .quantity-btn {
            background: transparent;
            border: none;
            color: #b8d657;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .quantity-btn:hover {
            color: #fff;
            background: #b8d657;
            border-radius: 4px;
        }

        .quantity-number {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            min-width: 30px;
            text-align: center;
        }

        .remove-item {
            font-size: 14px;
            color: #999;
            text-decoration: underline;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color 0.3s;
            font-weight: 500;
        }

        .remove-item:hover {
            color: #ff4444;
        }

        /* Cart Summary */
        .cart-summary {
            background: #0a0a0a;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #222;
            position: sticky;
            top: 120px;
        }

        .summary-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #222;
        }

        .coupon-section {
            margin-bottom: 30px;
        }

        .coupon-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
            border-bottom: 1px solid #222;
        }

        .coupon-toggle span {
            font-size: 15px;
            font-weight: 500;
            color: #fff;
        }

        .coupon-toggle i {
            color: #b8d657;
            font-size: 12px;
            transition: transform 0.3s;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #222;
        }

        .summary-row span:first-child {
            font-size: 15px;
            font-weight: 500;
            color: #999;
        }

        .summary-row span:last-child {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
        }

        .summary-total span:first-child {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .summary-total span:last-child {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

        .checkout-btn {
            width: 100%;
            background: #b8d657;
            color: #000;
            padding: 18px 40px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
            text-transform: capitalize;
            margin-top: 10px;
        }

        .checkout-btn:hover {
            background: #a5c44a;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .cart-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cart-summary {
                position: static;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 72px;
            }

            nav {
                padding: 0 20px;
            }

            .logo {
                font-size: 32px;
                width: 55%;
            }

            .nav-links {
                display: none;
            }

            .cart-section {
                padding: 0 20px;
                margin: 30px auto;
            }

            .cart-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .cart-header {
                display: none;
            }

            .product-item {
                grid-template-columns: 100px 1fr;
                gap: 20px;
                padding: 20px 0;
            }

            .product-image {
                width: 100px;
                height: 100px;
            }

            .product-info h3 {
                font-size: 18px;
            }

            .product-price {
                font-size: 16px;
            }

            .product-total-price {
                font-size: 18px;
            }

            .product-bottom {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }

            .cart-summary {
                padding: 30px 20px;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                left: 20px;
            }

            .whatsapp-float i {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 64px;
            }

            .cart-title {
                font-size: 32px;
            }

            .product-item {
                grid-template-columns: 80px 1fr;
                gap: 15px;
            }

            .product-image {
                width: 80px;
                height: 80px;
            }

            .product-info h3 {
                font-size: 16px;
            }

            .summary-total span:last-child {
                font-size: 20px;
            }
        }