@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* Fallback font stack */
input,
input::placeholder,
.form-control,
.form-control::placeholder {
    font-family: Poppins, sans-serif !important;
}

input,
input::placeholder,
.form-control,
.form-control::placeholder,
.StripeElement,
.StripeElement--focus,
.StripeElement--invalid {
    font-family: Poppins, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

/* Specific placeholder styling */
input::placeholder,
.form-control::placeholder {
    color: rgb(108, 117, 125) !important;
    opacity: 1 !important;
}

.switch input:empty ~ span:after {
    background-color: #3a169e;
    opacity: 1;
}

.switch input:empty ~ span:before
{
    background-color: #ffffff;
}

a:hover {
    color: #3a169e;
    text-decoration: underline;
}
a {
    color: #3a169e;
    text-decoration: none;
    background-color: transparent;
}

.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
}
.js-step {
    display: none;
}
.js-step-active {
    display: block;
}
.payment-page {
    max-width: 1160px !important;
    /* margin: 0 auto; */
    margin: 0 201px 0 201px !important;
}

/* Fix for order and payment sections height */
.order-payment-row {
    align-items: flex-start !important;
}

.order-summary,
.payment-details {
    height: auto;
    min-height: -webkit-fill-available;
}

.order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-details {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 768px) {
    .order-payment-grid {
        grid-template-columns: 1fr;
    }
}

.form-control {
    font-size: 13px;
    color: #495057;
    border: 1px solid #ced4da;
    line-height: 1.5;
    font-weight: 400;
    font-family: Poppins, Helvetica, "sans-serif";
}
input::placeholder { 
    color: rgb(108, 117, 125); /* HSL equivalent of #6c757d */
    font-size: 13px;
    font-family: Poppins, Helvetica, sans-serif;
    font-weight: 400;
    opacity: 1;
}

input::placeholder { 
    color: rgb(108, 117, 125) !important;
    font-size: 13px !important;
    font-family: Poppins, Helvetica, sans-serif !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

/* Also target any potential Stripe wrapper elements */
.StripeElement,
.StripeElement--focus,
.StripeElement--invalid {
    font-size: 13px !important;
}