/* Order Summary Component Styles */

/* Force font application */
* {
  font-family: "Lexend", "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif !important;
}

/* Professional Order Summary Styles */
.order-summary-header {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.order-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-align: center;
}

.order-details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.order-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}

.order-line:last-child {
    border-bottom: none;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 2px solid #e5e7eb;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.checkout-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.terms-checkbox {
    margin-bottom: 12px;
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.terms-checkbox label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}

.checkout-buttons {
    display: flex;
    gap: 8px;
}

.checkout-buttons .tf-btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-buttons .tf-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.checkout-buttons .btn-outline {
    background: transparent;
    border: 2px solid #6b7280;
    color: #6b7280;
}

.checkout-buttons .btn-outline:hover {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
}

.checkout-buttons .btn-fill {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 2px solid #1f2937;
    color: white;
}

.checkout-buttons .btn-fill:hover {
    background: linear-gradient(135deg, #374151, #4b5563);
    border-color: #374151;
}

.text-success {
    color: #10b981 !important;
}

.text-danger {
    color: #ef4444 !important;
}

/* Payment Icons */
.tf-page-cart_imgtrust {
    margin-top: 20px;
}

.tf-page-cart_imgtrust p {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: #374151;
}

.cart-list-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.payment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-item svg {
    width: 38px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-buttons {
        flex-direction: column;
    }
    
    .checkout-buttons .tf-btn {
        width: 100%;
    }
    
    .cart-list-social {
        gap: 10px;
    }
    
    .payment-item {
        padding: 6px;
    }
    
    .payment-item svg {
        width: 32px;
        height: 20px;
    }
}
