/* Checkout Page Styles */

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #f9b232;
    box-shadow: 0 0 0 3px rgba(249, 178, 50, 0.1);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.payment-method {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method:hover {
    border-color: #f9b232;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

input[type="radio"]:checked + div {
    border-color: inherit;
    background: inherit;
    box-shadow: none;
}

.checkout-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.checkout-card-header {
    background: linear-gradient(135deg, #004225 0%, #006633 100%);
    padding: 1.5rem;
    color: white;
}

.product-item {
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem;
    transition: background-color 0.2s;
}

.product-item:hover {
    background-color: #f9fafb;
}

.product-item:last-child {
    border-bottom: none;
}

.btn-primary {
    background: linear-gradient(135deg, #004225 0%, #006633 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 66, 37, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 66, 37, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.progress-step {
    position: relative;
    flex: 1;
}

.progress-step.active .step-circle {
    background: #004225;
    color: white;
}

.progress-step.active .step-label {
    color: #004225;
    font-weight: 600;
}

.progress-step.inactive .step-circle {
    background: #e5e7eb;
    color: #9ca3af;
}

.progress-step.inactive .step-label {
    color: #9ca3af;
}

.step-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.step-label {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-line {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.progress-step.active .progress-line {
    background: #004225;
}
