/* -------------------------------------------Cart Page Start-------------------------------------------  */

/* Main Content */

.header-cart {
    position: relative;
    display: inline-block;
}

.cartpage-main-content {
    min-height: calc(100vh - 200px);
    padding: 3rem 1rem;
    background-color: #f8f9fa;
}

.cartpage-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Section */
.cartpage-product-section {
    background-color: var(--body-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.cartpage-section-header {
    margin-bottom: 2rem;
}

.cartpage-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cartpage-section-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cartpage-products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cartpage-product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition);
}

.cartpage-product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cartpage-product-row-layout {
    display: flex;
    gap: 2rem;
}

/* Product Image */
.cartpage-image-column {
    display: flex;
    justify-content: center;
}

.cartpage-product-image-wrapper {
    width: 100%;
    max-width: 300px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.cartpage-product-image-main {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.cartpage-product-image-wrapper:hover .cartpage-product-image-main {
    transform: scale(1.05);
}

/* Product Details */
.cartpage-details-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cartpage-product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cartpage-product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cartpage-rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.1rem;
}

.cartpage-star-filled {
    color: #ffc107;
}

.cartpage-star-half {
    color: #ffc107;
    opacity: 0.5;
}

.cartpage-rating-count {
    margin-left: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.cartpage-product-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cartpage-product-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cartpage-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cartpage-meta-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cartpage-size-select {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: var(--body-bg);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.cartpage-size-select:hover,
.cartpage-size-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 186, 38, 0.1);
}

.cartpage-stock-available {
    color: #22863a;
    font-weight: 500;
    font-size: 0.9rem;
}

.cartpage-price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.cartpage-price-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cartpage-price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Summary Column */
.cartpage-summary-column {
    display: flex;
    justify-content: flex-start;
}

.cartpage-summary-card {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cartpage-quantity-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cartpage-quantity-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cartpage-quantity-controls {
    display: flex;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--body-bg);
}

.qty-decrease,
.qty-increase {
    flex: 0 0 40px;
    height: 55px;
    padding: 15px;
    border: none;
    background-color: var(--body-bg);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.qty-decrease:hover:not(:disabled),
.qty-increase:hover:not(:disabled) {
    background-color: #e9ecef;
    color: var(--primary-color);
}

.qty-decrease:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.cartpage-qty-input {
    flex: 1;
    border: none;
    background-color: transparent;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cartpage-qty-input:focus {
    outline: none;
}

.cartpage-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1rem 0;
}

.cartpage-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cartpage-subtotal-row,
.cartpage-shipping-row,
.cartpage-tax-row,
.cartpage-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartpage-subtotal-label,
.cartpage-shipping-label,
.cartpage-tax-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cartpage-subtotal-amount,
.cartpage-shipping-amount,
.cartpage-tax-amount {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cartpage-shipping-amount {
    color: #22863a;
}

.cartpage-total-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.cartpage-total-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.cartpage-checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--body-bg);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    text-decoration: none;
}

.cartpage-checkout-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 186, 38, 0.3);
}

.cartpage-remove-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: transparent !important;
    color: #dc3545 !important;
    border: 1px solid #dc3545 !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition) !important;
    margin-top: 0.8rem;
}

.cartpage-remove-btn:hover {
    background-color: #dc3545 !important;
    color: var(--body-bg) !important;
}

/* Cart Summary Box */
.cartpage-cart-summary-box {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-width: 400px;
    margin-left: auto;
}

.cartpage-summary-header {
    margin-bottom: 1.5rem;
}

.cartpage-summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.cartpage-summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.cartpage-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartpage-summary-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cartpage-summary-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cartpage-summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1rem 0;
}

.cartpage-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cartpage-cart-total-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.cartpage-cart-total-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cartpage-product-subtotal {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Related Products Section */
.cartpage-related-section {
    margin-bottom: 3rem;
}

.cartpage-related-header {
    margin-bottom: 2rem;
    text-align: center;
}

.cartpage-related-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cartpage-related-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cartpage-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cartpage-related-card {
    background-color: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cartpage-related-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.cartpage-related-image-wrapper {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.cartpage-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cartpage-related-card:hover .cartpage-related-image {
    transform: scale(1.08);
}

.cartpage-related-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cartpage-related-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cartpage-related-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.cartpage-related-btn {
    padding: 0.7rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.cartpage-related-btn:hover {
    background-color: var(--primary-color);
    color: var(--body-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cartpage-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .cartpage-product-row-layout {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cartpage-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cartpage-product-section {
        padding: 1.5rem;
    }

    .cartpage-product-card {
        padding: 1rem;
    }

    .cartpage-section-title {
        font-size: 1.5rem;
    }

    .cartpage-product-name {
        font-size: 1.25rem;
    }

    .cartpage-nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .cartpage-summary-column {
        margin-top: 1.5rem;
    }

    .cartpage-cart-summary-box {
        max-width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .cartpage-related-grid {
        grid-template-columns: 1fr;
    }

    .cartpage-product-row-layout {
        flex-direction: column;
        gap: 1rem;
    }

    .cartpage-navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cartpage-nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .cartpage-product-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .cartpage-checkout-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 1.2rem;
        z-index: 50;
        font-size: 1rem;
    }

    .cartpage-main-content {
        padding-bottom: 80px;
    }

    .cartpage-related-title {
        font-size: 1.3rem;
    }
}

/* -------------------------------------------Cart Page End-------------------------------------------  */

/* -------------------------------------------Checkout Page End-------------------------------------------  */

/* Header */
.checkoutpage-header {
    background-color: var(--body-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.checkoutpage-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.checkoutpage-step-indicator {
    font-size: 14px;
    color: var(--text-light);
}

/* Main Container */
.checkoutpage-main-container {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Customer Section */
.checkoutpage-customer-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkoutpage-contact-block,
.checkoutpage-shipping-block,
.checkoutpage-delivery-block,
.checkoutpage-payment-block {
    background-color: var(--body-bg);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.checkoutpage-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

/* Form Styles */
.checkoutpage-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkoutpage-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.checkoutpage-form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.checkoutpage-form-input {
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    background-color: #fafafa;
    color: var(--text-dark);
}

.checkoutpage-form-input:hover {
    border-color: #d0d0d0;
}

.checkoutpage-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--body-bg);
    box-shadow: 0 0 0 3px rgba(128, 186, 38, 0.1);
}

.checkoutpage-form-input.checkoutpage-input-error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.checkoutpage-error-message {
    font-size: 12px;
    color: #dc3545;
    display: none;
}

.checkoutpage-error-message.checkoutpage-show-error {
    display: block;
}

/* Radio Group */
.checkoutpage-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkoutpage-radio-option {
    position: relative;
}

.checkoutpage-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkout-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-radio-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
    gap: 12px;
}

.checkout-radio-option:hover {
    border-color: var(--primary-color);
}

.checkout-radio-option.active {
    border-color: var(--primary-color);
    background-color: rgba(128, 186, 38, 0.08);
}

/* Hide default radio */
.checkout-radio-option input[type="radio"] {
    display: none;
}

/* Custom Circle */
.checkout-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.checkout-radio-option
    input[type="radio"]:checked
    + .checkout-radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.checkout-radio-content {
    display: flex;
    flex-direction: column;
}

.checkout-radio-title {
    font-size: 15px;
    font-weight: 600;
}

.checkout-radio-desc {
    font-size: 12px;
    color: #777;
}
.checkout-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}
.checkout-radio-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.checkoutpage-radio-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.checkoutpage-radio-desc {
    font-size: 12px;
    color: var(--text-light);
}

.checkoutpage-radio-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* Card Logos */
.checkoutpage-card-logos {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.checkoutpage-card-logo {
    width: 48px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.checkoutpage-card-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Checkbox */
.checkoutpage-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.checkoutpage-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkoutpage-checkbox-label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
}

/* Summary Section */
.checkoutpage-summary-section {
    background-color: var(--body-bg);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 20px;
}

.checkoutpage-summary-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Products List */
.checkoutpage-products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.checkoutpage-product-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.checkoutpage-product-row:last-child {
    border-bottom: none;
}

.checkoutpage-product-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

.checkoutpage-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkoutpage-product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.checkoutpage-product-price {
    font-size: 13px;
    color: var(--text-light);
}

.checkoutpage-product-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}

.checkoutpage-qty-label {
    font-size: 13px;
    color: var(--text-light);
}

.checkoutpage-product-subtotal {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 60px;
    text-align: right;
}

/* Totals Section */
.checkoutpage-totals-section {
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
}

.checkoutpage-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.checkoutpage-total-label {
    color: var(--text-light);
}

.checkoutpage-total-value {
    font-weight: 600;
    color: var(--text-dark);
}

.checkoutpage-grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

.checkoutpage-grand-total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.checkoutpage-grand-total-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Submit Button */
.checkoutpage-submit-button {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.checkoutpage-submit-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(128, 186, 38, 0.3);
}

.checkoutpage-submit-button:active {
    transform: translateY(0);
}

/* Success Message */
.checkoutpage-success-message {
    background-color: rgba(128, 186, 38, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-top: 20px;
}

.checkoutpage-success-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 32px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.checkoutpage-success-message p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .checkoutpage-summary-section {
        position: static;
        margin-top: 30px;
    }

    .checkoutpage-main-container {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .checkoutpage-contact-block,
    .checkoutpage-shipping-block,
    .checkoutpage-delivery-block,
    .checkoutpage-payment-block {
        padding: 20px;
    }

    .checkoutpage-section-title {
        font-size: 16px;
    }

    .checkoutpage-card-logos {
        gap: 8px;
    }

    .checkoutpage-card-logo {
        width: 40px;
        height: 27px;
    }

    .checkoutpage-product-row {
        flex-wrap: wrap;
    }

    .checkoutpage-product-info {
        flex: 1 1 100%;
    }

    .checkoutpage-radio-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .checkoutpage-radio-price {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .checkoutpage-logo {
        font-size: 18px;
    }

    .checkoutpage-step-indicator {
        display: none;
    }

    .checkoutpage-main-container {
        padding: 15px 0;
    }

    .checkoutpage-contact-block,
    .checkoutpage-shipping-block,
    .checkoutpage-delivery-block,
    .checkoutpage-payment-block {
        padding: 16px;
        border-radius: 8px;
    }

    .checkoutpage-section-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .checkoutpage-form-input,
    .checkoutpage-submit-button {
        font-size: 16px;
        padding: 14px;
    }

    .checkoutpage-product-image {
        width: 50px;
        height: 50px;
    }

    .checkoutpage-grand-total-value {
        font-size: 18px;
    }

    .checkoutpage-submit-button {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* -------------------------------------------Checkout Page End-------------------------------------------  */
