        .section-main {
            padding-top: 90px;
        }

        .cart-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .cart-header {
            margin-bottom: 25px;
        }

        .cart-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .cart-count {
            font-size: 15px;
            color: #888;
        }

        .cart-main-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 25px;
        }

        .cart-items-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cart-item {
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            padding: 20px;
            display: grid;
            grid-template-columns: 120px 1fr auto;
            gap: 20px;
            align-items: center;
        }

        .cart-item-image {
            width: 120px;
            height: 160px;
            border-radius: 6px;
            object-fit: cover;
            border: 1px solid #333;
        }

        .item-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cart-item-title {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .item-platform {
            font-size: 13px;
            color: #888;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .item-condition {
            display: inline-block;
            background: #1a3a1a;
            color: #4CAF50;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #2a4a2a;
            width: fit-content;
        }

        .item-price-section {
            margin-top: 10px;
        }

        .item-current-price {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .item-old-price {
            font-size: 14px;
            color: #666;
            text-decoration: line-through;
            margin-right: 8px;
        }

        .item-discount {
            font-size: 13px;
            color: #4CAF50;
            font-weight: 600;
        }

        .item-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 6px;
            padding: 8px 12px;
        }

        .qty-btn {
            background: transparent;
            border: none;
            color: #888;
            font-size: 18px;
            cursor: pointer;
            padding: 0 8px;
            transition: color 0.3s;
        }

        .qty-btn:hover {
            color: #4CAF50;
        }

        .qty-value {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            min-width: 30px;
            text-align: center;
        }

        .remove-btn {
            background: transparent;
            border: 1px solid #d32f2f;
            color: #d32f2f;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .remove-btn:hover {
            background: #d32f2f;
            color: white;
        }

        .cart-summary {
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .cart-summary-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2a2a2a;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            font-size: 15px;
        }

        .summary-label {
            color: #888;
        }

        .summary-value {
            color: #ffffff;
            font-weight: 600;
        }

        .summary-divider {
            border-top: 1px solid #2a2a2a;
            margin: 15px 0;
        }

        .summary-total {
            padding: 15px 0;
        }

        .summary-total .summary-label {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .summary-total .summary-value {
            font-size: 24px;
            font-weight: 700;
            color: #4CAF50;
        }

        .savings-highlight {
            background: #1a3a1a;
            border: 1px solid #2a4a2a;
            border-radius: 6px;
            padding: 12px;
            margin: 15px 0;
            text-align: center;
        }

        .savings-text {
            font-size: 14px;
            color: #4CAF50;
            font-weight: 600;
        }

        .checkout-btn {
            width: 100%;
            background: #4CAF50;
            border: none;
            color: white;
            padding: 15px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 15px;
        }

        .checkout-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
        }

        .continue-shopping {
            width: 100%;
            background: transparent;
            border: 1px solid #4CAF50;
            color: #4CAF50;
            padding: 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 12px;
        }

        .continue-shopping:hover {
            background: #4CAF50;
            color: white;
        }

        .promo-section {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2a2a2a;
        }

        .promo-label {
            font-size: 14px;
            color: #888;
            margin-bottom: 10px;
        }

        .promo-input-group {
            display: flex;
            gap: 8px;
        }

        .promo-input {
            flex: 1;
            background: #1a1a1a;
            border: 1px solid #333;
            color: white;
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 14px;
        }

        .apply-promo-btn {
            background: #2196F3;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .apply-promo-btn:hover {
            background: #0b7dda;
        }

        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
        }

        .empty-cart-icon {
            font-size: 64px;
            color: #444;
            margin-bottom: 20px;
        }

        .empty-cart-title {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .empty-cart-text {
            font-size: 15px;
            color: #888;
            margin-bottom: 25px;
        }

        @media (max-width: 1024px) {
            .cart-main-grid {
                grid-template-columns: 1fr;
            }

            .cart-summary {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .cart-item {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cart-item-image {
                width: 100%;
                height: auto;
                max-width: 200px;
                margin: 0 auto;
            }

            .item-actions {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px 10px;
            }

            .cart-title {
                font-size: 24px;
            }

            .cart-item-title {
                font-size: 16px;
            }

            .item-current-price {
                font-size: 20px;
            }
        }

        /* =========================== */

        :root {
            --bg: #0b0f14;
            --card: #111827;
            --border: #1f2937;
            --text: #e5e7eb;
            --muted: #9ca3af;
            --accent: #22c55e;
        }






        .profile-wrap {
            width: 100%;
            max-width: 780px;
        }

        /* top section */
        .profile-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border: 1px solid var(--border);
            background: var(--card);
            border-radius: 12px;
        }

        .profile-left {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .avatar {
            width: 54px;
            height: 54px;
            border-radius: 8px;
            background: #020617;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .name01 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .uid {
            font-size: 12px;
            color: var(--muted);
        }

        .edit-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
        }

        .edit-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* info grid */
        .profile-info {
            margin-top: 16px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .info-box {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px;
        }

        .label01 {
            font-size: 12px;
            color: var(--muted);
            margin-bottom: 6px;
        }

        .value01 {
            font-size: 14px;
            color: #fff;
        }

        /* full width boxes */
        .full {
            grid-column: 1 / -1;
        }

        /* mobile */
        @media(max-width:640px) {
            .profile-info {
                grid-template-columns: 1fr;
            }
        }

        .profile-section {
            display: flex;
            justify-content: center;
        }

        /* ============================ */


        /* Checkout Page Specific Wrapper - All styles scoped to this class */
        .check-out-page {
            max-width: 1100px;
            margin: 0 auto;
        }

        .check-out-page .page-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .check-out-page .main-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 30px;
            margin-top: 25px;
        }

        .check-out-page .left-section,
        .check-out-page .right-section {
            background: #0d0d0d;
            border: 1px solid #2a2a2a;
            border-radius: 10px;
            padding: 25px;
        }

        .check-out-page h2.section-title {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #2a2a2a;
        }

        .check-out-page .form-group {
            margin-bottom: 20px;
        }

        .check-out-page .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #bbb;
            font-weight: 500;
        }

        .check-out-page .form-control,
        .check-out-page .form-select {
            width: 100%;
            padding: 12px 14px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 6px;
            color: white;
            font-size: 15px;
        }

        .check-out-page .form-control:focus,
        .check-out-page .form-select:focus {
            outline: none;
            border-color: #4CAF50;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
        }

        .check-out-page .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .check-out-page .payment-methods {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }

        .check-out-page .payment-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .check-out-page .payment-option:hover,
        .check-out-page .payment-option.active {
            border-color: #4CAF50;
            background: #1a3a1a;
            color: #fff;
        }

        .check-out-page .payment-option input[type="radio"] {
            accent-color: #4CAF50;
            width: 18px;
            height: 18px;
        }

        .payment-option span {
            color: #acacac;
        }

        .check-out-page .order-summary {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .check-out-page .order-items {
            margin: 20px 0;
        }

        .check-out-page .order-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #222;
            font-size: 14px;
            color: #ccc;
        }

        .check-out-page .order-item:last-child {
            border-bottom: none;
        }

        .check-out-page .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            font-size: 15px;
        }

        .check-out-page .summary-row .summary-label {
            color: #888;
        }

        .check-out-page .summary-row .summary-value {
            color: #ffffff;
            font-weight: 600;
        }

        .check-out-page .summary-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            font-size: 20px;
            font-weight: bold;
            color: #ffffff;
            border-top: 1px solid #2a2a2a;
            margin-top: 15px;
        }

        .check-out-page .summary-total .amount {
            color: #4CAF50;
            font-size: 24px;
        }

        .check-out-page .place-order-btn {
            width: 100%;
            background: #4CAF50;
            border: none;
            color: white;
            padding: 16px;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s;
        }

        .check-out-page .place-order-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.25);
        }

        .check-out-page .back-to-cart {
            display: inline-block;
            margin-top: 15px;
            color: #4CAF50;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .check-out-page .back-to-cart:hover {
            text-decoration: underline;
        }

        /* Responsive - Matches your cart breakpoints */
        @media (max-width: 1024px) {
            .check-out-page .main-grid {
                grid-template-columns: 1fr;
            }

            .check-out-page .order-summary {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .check-out-page .row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px 10px;
            }

            .check-out-page .page-title {
                font-size: 24px;
            }
        }

        /* Existing cart styles will work perfectly alongside */

        .order-details-section {
            background: radial-gradient(circle at top, #11112a, #07070f 70%);
            padding: 110px 20px 130px;
            color: #e6e8ff;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            min-height: 100vh;
        }

        .order-details-container {
            max-width: 1050px;
            margin: auto;
        }

        .order-details-title {
            font-size: 3.2rem;
            font-weight: 900;
            text-align: center;
            background: linear-gradient(90deg, #7b2cbf, #00d4ff, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 60px;
        }

        .details-card {
            background: rgba(25, 25, 50, 0.75);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            border: 1px solid rgba(123, 44, 191, 0.25);
            padding: 40px;
            margin-bottom: 30px;
        }

        .details-card h3 {
            font-size: 1.9rem;
            color: #c084fc;
            margin-bottom: 25px;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px 40px;
        }

        .detail-item span {
            display: block;
            font-size: 0.9rem;
            color: #9aa0ff;
            margin-bottom: 6px;
        }

        .detail-item strong {
            font-size: 1.05rem;
            color: #ffffff;
        }

        .status-badge {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: 10px;
        }

        .status-success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.45);
        }

        .status-pending {
            background: rgba(234, 179, 8, 0.2);
            color: #facc15;
            border: 1px solid rgba(234, 179, 8, 0.45);
        }

        .details-product {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .product-icon {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            background: linear-gradient(135deg, #7b2cbf, #00d4ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.4rem;
            color: #06060f;
        }

        .price-summary {
            border-top: 1px dashed rgba(0, 212, 255, 0.35);
            padding-top: 25px;
            margin-top: 25px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 14px;
            font-size: 1.05rem;
        }

        .price-row.total {
            font-size: 1.25rem;
            font-weight: 900;
            color: #00d4ff;
        }

        .order-actions {
            display: flex;
            gap: 16px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .order-actions a {
            padding: 14px 20px;
            border-radius: 14px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            color: #06060f;
            background: linear-gradient(90deg, #00fe66, #00d4ff);
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .order-actions a.secondary {
            background: transparent;
            color: #00d4ff;
            border: 1px solid rgba(0, 212, 255, 0.45);
        }

        .order-actions a:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 212, 255, 0.35);
        }

        @media (max-width: 768px) {
            .order-details-title {
                font-size: 2.5rem;
            }

            .details-grid {
                grid-template-columns: 1fr;
            }
        }

        /* =========================== */

        .orders-section {
            background: radial-gradient(circle at top, #11112a, #07070f 70%);
            padding: 110px 20px 130px;
            color: #e6e8ff;
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            min-height: 100vh;
        }

        .orders-container {
            max-width: 1150px;
            margin: auto;
        }

        .orders-title {
            font-size: 3.6rem;
            font-weight: 900;
            text-align: center;
            background: linear-gradient(90deg, #7b2cbf, #00d4ff, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 14px;
        }

        .orders-subtitle {
            text-align: center;
            font-size: 1.15rem;
            color: #9aa0ff;
            margin-bottom: 70px;
        }

        .orders-list {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

        .order-card {
            background: rgba(25, 25, 50, 0.75);
            backdrop-filter: blur(14px);
            border-radius: 20px;
            border: 1px solid rgba(123, 44, 191, 0.25);
            padding: 30px 34px;
            transition: all 0.3s ease;
        }

        .order-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
        }

        .order-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .order-id {
            font-size: 1.1rem;
            font-weight: 700;
            color: #c084fc;
        }

        .order-date {
            font-size: 0.95rem;
            color: #9aa0ff;
        }

        .order-body {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .order-item h4 {
            margin: 0 0 6px;
            font-size: 1.1rem;
            color: #ffffff;
        }

        .order-item span {
            font-size: 0.95rem;
            color: #b8bcff;
        }

        .order-status {
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-block;
            text-align: center;
            width: fit-content;
        }

        .status-success {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.45);
        }

        .status-pending {
            background: rgba(234, 179, 8, 0.2);
            color: #facc15;
            border: 1px solid rgba(234, 179, 8, 0.45);
        }

        .status-failed {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.45);
        }


        .empty-orders {
            text-align: center;
            padding: 80px 20px;
            background: rgba(20, 20, 45, 0.6);
            border-radius: 22px;
            border: 1px solid rgba(0, 212, 255, 0.25);
            color: #b8bcff;
        }

        @media (max-width: 900px) {
            .orders-title {
                font-size: 2.9rem;
            }

            .order-body {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .order-actions {
                grid-column: span 2;
            }
        }