
        
        @font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Thin.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-ExtraLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-DemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Urbane';
  src: url('../fonts/Urbane/Urbane-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
        
   /* Cart/Checkout Specific Styles */
        .checkout-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            font-family: 'Urbane', sans-serif;
        }

        .checkout-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #0C1726;
            text-align: center;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        @media (min-width: 992px) {
            .checkout-grid {
                grid-template-columns: 1.5fr 1fr;
            }
        }

        .order-summary, .payment-section {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
        }

        .summary-title, .payment-title, .section-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #0C1726;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .cart-item-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .cart-item-variant {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 5px;
        }

        .cart-item-custom {
            font-size: 0.85rem;
            color: #444;
            margin-bottom: 10px;
        }

        .cart-item-price {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .quantity-btn {
            width: 30px;
            height: 30px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-input {
            width: 50px;
            height: 30px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
            -moz-appearance: textfield;
        }

        .quantity-input::-webkit-outer-spin-button,
        .quantity-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .remove-item {
            color: #e53935;
            font-size: 0.85rem;
            cursor: pointer;
            display: inline-block;
        }

        .order-totals {
            margin-top: 20px;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .grand-total {
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        /* Form Styles */
        .form-section {
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-control, .form-select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Payment Card Logos */
        .card-logos {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .card-logo {
            height: 30px;
            width: auto;
        }

        /* Shipping Options */
        .shipping-options {
            margin: 20px 0;
        }

        .shipping-option {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .shipping-option:last-child {
            border-bottom: none;
        }

        .shipping-option label {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Order Notes */
        .order-notes {
            margin-top: 20px;
        }

        .order-notes-checkbox {
            margin-bottom: 10px;
        }

        .order-notes-textarea {
            display: none;
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-top: 10px;
        }

        /* Payment Button */
        .payment-btn {
            width: 100%;
            padding: 12px;
            background-color: #0C1726;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 20px;
            font-size: 1rem;
        }

        .payment-btn:hover {
            background-color: #1E365E;
        }

        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 40px 0;
            color: #666;
        }

        .empty-cart-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ddd;
        }

        .continue-shopping {
            display: inline-block;
            margin-top: 20px;
            color: #0C1726;
            text-decoration: none;
            font-weight: 500;
        }

        .continue-shopping:hover {
            text-decoration: underline;
        }