    /* ===== Reset / base ===== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: #f7f9fb;
      color: #1f2937;
      padding: 20px;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    /* ===== Contenedor principal ===== */
    .cart-container {
      max-width: 600px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      padding: 24px;
    }

    /* ===== Header ===== */
    header {
      margin-bottom: 20px;
    }
    header img {
      height: 50px;
      width: auto;
      vertical-align: middle;
      margin-right: 12px;
    }
    header h1 {
      display: inline-block;
      vertical-align: middle;
      font-size: 24px;
      font-weight: 600;
      color: #0f172a;
    }

    /* ===== Lista de ítems ===== */

    #cart-items li button {
      background-color: #ef4444;
      color: white;
      border: none;
      padding: 6px 10px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    #cart-items li button:hover {
      background-color: #dc2626;
    }

    /* ===== Info / Totales ===== */
    .info-box {
      margin-bottom: 24px;
    }
    .info-box table {
      width: 100%;
      border-collapse: collapse;
    }
    .info-box td {
      padding: 2px 2px;
    }
    .info-box td:first-child {
      text-align: right;
      font-weight: 500;
      color: #4b5563;
      width: 35%;
    }
    .info-box td:last-child {
      text-align: left;
    }
    .info-box span {
      font-weight: bold;
      color: #0f172a;
    }
    #cart-total {
      font-size: 30px;
      color: #0f172a;
    }
    #order-id,
    #customer-display {
      font-size: 22px;
      color: #0f172a;
    }

    /* ===== Input cliente ===== */
    .customer-input {
      margin-bottom: 24px;
    }
    .customer-input label {
      font-size: 15px;
      color: #374151;
    }
    .customer-input input {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 16px;
    }
    .customer-input input:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    /* ===== Botones de acción ===== */
    .cart-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .cart-actions button {
      flex: 1;
      padding: 12px 16px;
      font-size: 18px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .cart-actions .clear-btn {
      background-color: #6b7280;
      color: white;
    }
    .cart-actions .clear-btn:hover {
      background-color: #4b5563;
    }
    .cart-actions .order-btn {
      background-color: #6366f1;
      color: white;
    }
    .cart-actions .order-btn:hover {
      background-color: #4f46e5;
    }
    .cart-actions .pay-btn {
      background-color: #0ea5e9;
      color: white;
    }
    .cart-actions .pay-btn:hover {
      background-color: #0284c7;
    }
    .cart-actions .pay-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    /* ===== Enlace de vuelta ===== */
    .back-link {
      display: block;
      text-align: center;
      margin-top: 24px;
      color: #2563eb;
      font-size: 16px;
      font-weight: 500;
    }
    .back-link:hover {
      text-decoration: underline;
    }

    /* ===== Responsive ===== */
    @media (max-width: 480px) {
      .cart-container {
        padding: 16px;
      }
      header h1 {
        font-size: 20px;
      }
      .cart-actions button {
        font-size: 16px;
        padding: 10px;
      }
      #cart-total {
        font-size: 26px;
      }
      #order-id, #customer-display {
        font-size: 20px;
      }
    }
	
	
			.row-pay {
				display: flex;
				flex-wrap: wrap;
				gap: 10px;
				justify-content: center;
			}
			.opt-pay {
				flex: 0 0 auto;
				width: 70px;
				border-radius: 6px;
				overflow: hidden;
			}
			.opt-pay img {
				width: 100%;
				height: auto;
				display: block;
			}
			#cart-items {
				list-style: none;
				padding: 0;
				margin: 20px 0;
			}
			#cart-items li {
				background: #f9f9f9;
				margin-bottom: 10px;
				padding: 10px;
				border-radius: 6px;
				display: flex;
				flex-direction: column;
				gap: 4px;
				border: 1px solid #ddd;
			}
			.item-main {
				display: flex;
				justify-content: space-between;
				align-items: center;
				font-weight: bold;
			}
			.item-sub {
				font-size: 14px;
				color: #555;
			}
			.item-date {
				font-size: 13px;
				color: #008b4b;
			}
			button {
				cursor: pointer;
			}