/* Custom styles to enhance Bootstrap for the checkout */

.custom-checkout-container {
    padding-top: 30px;
    padding-bottom: 50px;
}
.os-ct-label, .os-ct-title{
	font-family: 'SeasonSans-Light' !important;
	font-weight:400 !important;
	font-size:18px !important;
	text-decoration:uppercase !important;
	color:#273567 !important;
}
.os-checkout-prod thead, .os-checkout-prod tbody, #shipping-prod-table tfoot, #payment{
	font-family: 'SeasonSans-Light' !important;
	font-weight:300 !important;
	font-size:14px !important;
}
#shipping_methodt{
	margin-left: 20px !important;
}

#ship-to-different-address label{
	font-family: 'SeasonSans-Light' !important;
	font-weight:400 !important;
	padding:0px !important;
	margin:0px;
	font-size:20px !important;
	text-decoration:uppercase !important;
}

#os-l{
	display:flex !important;
	justify-content:start !important;
	align-items:end !important;
	font-family: 'SeasonSans-Light' !important;
	font-weight:400 !important;
	font-size:20px !important;
	text-decoration:uppercase !important;
}

.os-ct-input, .os-ct-select{
	font-family: 'SeasonSans-Light' !important;
	background-color: #C8D2D9 !important;
	border:none !important;
	border-radius:0px !important;
	
}
.select2-selection__rendered{
	border:none !important;
}

.card {
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
}

.card-header {
    background-color: #e6eef2 !important;
    border-bottom: none;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #343a40;
}

/* Input fields */
.form-control, .form-select {
    background-color: #e6eef2;
    border: none;
    border-radius: 0;
    padding: 0.5rem 0.75rem;
}

.form-control:focus, .form-select:focus {
    background-color: #d9e6ed;
    box-shadow: none;
    border-color: #80bdff;
}

/* Buttons */
.btn-primary {
    background-color: #343a40;
    border-color: #343a40;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
}

.btn-primary:hover {
    background-color: #444;
    border-color: #444;
}

/* Table styling */
.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: #e6eef2;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-top: none;
}

.table tbody td {
    vertical-align: middle;
}

/* Order summary */
.amount {
    font-weight: 600;
}

/* Fix WooCommerce select2 styling conflicts with Bootstrap */
.select2-container .select2-selection--single {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    background-color: #e6eef2;
    border: none;
    border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 0.75rem + 2px);
}


/* Mobile responsiveness enhancements */
@media (max-width: 767.98px) {
    .custom-checkout-container {
        padding-top: 15px;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .card-header h3 {
        font-size: 14px;
    }
}