/*
 * Cart Page Styles - Q-Bab Burger
 * Extracted from inline styles for better performance and caching
 */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f9a825;
            font-family: 'Bebas Neue', Arial, sans-serif;
            padding-top: 0; /* Navbar is fixed, no padding needed */
        }

        /* Navbar styles moved to navbar.css */
        /* Ensure navbar is visible on yellow background */
        .top-navbar {
            background: rgba(0, 0, 0, 0.95) !important;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 120px auto 60px;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 500px;
            gap: 60px;
        }

        /* Form */
        .billing h1 {
            font-size: 3rem;
            color: #1a1a1a;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-size: 1rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .form-group label .req {
            color: #e74c3c;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: none;
            border-bottom: 2px solid #1a1a1a;
            background: transparent;
            font-size: 1rem;
            color: #1a1a1a;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: #e74c3c;
        }

        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #1a1a1a;
            background: white;
            font-size: 1rem;
            color: #1a1a1a;
            font-family: Arial, sans-serif;
            resize: vertical;
            min-height: 100px;
        }

        .section-title {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin: 40px 0 25px 0;
            padding-bottom: 15px;
            border-bottom: 3px solid #f9a825;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Order Box */
        .order-box {
            background: white;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .order-box h2 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 2px;
        }

        .order-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 1.1rem;
            gap: 15px;
        }

        .order-item-name {
            flex: 1;
        }

        .order-item-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .qty-btn {
            width: 30px;
            height: 30px;
            border: 2px solid #e10000;
            background: white;
            color: #e10000;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .qty-btn:hover {
            background: #e10000;
            color: white;
        }

        .qty-display {
            min-width: 40px;
            text-align: center;
            font-weight: bold;
        }

        .remove-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: #c82333;
        }

        .order-item-price {
            min-width: 80px;
            text-align: right;
            font-weight: bold;
        }

        .summary {
            border-top: 2px solid #1a1a1a;
            margin-top: 20px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
        }

        .summary .amount {
            color: #e74c3c;
        }

        /* Payment */
        .payment {
            background: white;
            padding: 40px;
            margin-top: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .payment h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 30px;
        }

        .payment-opt {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            margin-bottom: 12px;
            border: 2px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .payment-opt:hover {
            border-color: #f9a825;
            background: #fffbf0;
        }

        .payment-opt input[type="radio"] {
            margin-right: 15px;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .payment-opt label {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            cursor: pointer;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .payment-icon {
            height: 30px;
            width: auto;
            object-fit: contain;
        }

        .payment-icon.small {
            height: 24px;
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: #e74c3c;
            color: white;
            border: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 2px;
            cursor: pointer;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background: #c0392b;
        }

        .privacy-notice {
            font-family: Arial, sans-serif;
            font-size: 0.75rem;
            color: #666;
            line-height: 1.5;
            margin-top: 15px;
            padding: 12px;
            background: #f5f5f5;
            border-left: 3px solid #f9a825;
            text-align: left;
        }

        .privacy-notice a {
            color: #f9a825;
            text-decoration: underline;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .privacy-notice a:hover {
            color: #e74c3c;
        }

        /* Mobile Navbar Fixes */
        @media (max-width: 768px) {
            .top-navbar {
                padding: 15px 20px 15px 100px !important;
                min-height: 60px !important;
            }

            .top-navbar.scrolled {
                padding: 10px 20px 10px 100px !important;
                min-height: 50px !important;
            }

            .nav-menu {
                display: none !important;
            }

            .site-logo {
                left: 15px !important;
            }

            .site-logo img {
                height: 50px !important;
            }
        }

        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
            }
            .order-box {
                position: static;
            }
        }
