/* CARE-INF Checkout Page Styles */

/* Light header + readable nav on checkout (default nav links are white for hero pages). */
body.care-inf-checkout-page .site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(26, 58, 95, 0.12);
	box-shadow: 0 4px 18px rgba(16, 42, 74, 0.08);
	backdrop-filter: blur(12px);
}

body.care-inf-checkout-page .site-header .nav-menu > li > a {
	color: var(--care-inf-primary, #1a3a5f);
}

body.care-inf-checkout-page .site-header .nav-menu > li > a:hover,
body.care-inf-checkout-page .site-header .nav-menu > li.current-menu-item > a,
body.care-inf-checkout-page .site-header .nav-menu > li.current_page_parent > a {
	color: var(--care-inf-accent, #d4af37);
}

body.care-inf-checkout-page .site-header .nav-menu > li.menu-item-has-children::after {
	color: var(--care-inf-primary, #1a3a5f);
}

body.care-inf-checkout-page .site-header .menu-toggle {
	border-color: rgba(26, 58, 95, 0.28);
}

body.care-inf-checkout-page .site-header .menu-line {
	background: var(--care-inf-primary, #1a3a5f);
}

body.care-inf-checkout-page .site-header .logo-name,
body.care-inf-checkout-page .site-header .logo-link {
	color: var(--care-inf-primary, #1a3a5f);
}

/* Space below fixed header */
body.care-inf-checkout-page .site-main {
	padding-top: calc(110px + 2.5rem);
	padding-bottom: 3rem;
}

body.care-inf-checkout-page .ci-hosted-checkout-only {
	max-width: 720px;
	margin: 0 auto;
	padding: 2rem 2.25rem;
	background: #fff;
	border: 1px solid #e6ecf2;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(15, 40, 64, 0.1);
}

body.care-inf-checkout-page .ci-hosted-checkout-only h2 {
	margin: 0 0 0.6rem;
	color: var(--care-inf-primary, #1a3a5f);
	font-family: var(--care-inf-heading-font, Cinzel, serif);
}

body.care-inf-checkout-page .ci-hosted-checkout-only p {
	margin: 0 0 1rem;
	color: #55657a;
	line-height: 1.6;
}

.page-checkout-modern {
    background: rgba(26,58,95,0.10);
    min-height: calc(100vh - 75px);
    padding: 0 0 3rem;
}
.checkout-modern-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
}
.checkout-modern-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.checkout-modern-card {
    background: rgba(212,175,55,0.10);
    border-radius: 18px;
    box-shadow: 0 6px 36px rgba(26,58,95,0.10);
    padding: 2.5rem 2rem;
}
.checkout-modern-cols {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.checkout-modern-summary {
    flex: 1 1 340px;
    min-width: 320px;
    border-right: 1px solid #f0f0f0;
    padding-right: 2rem;
}
.checkout-modern-summary h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.checkout-modern-summary-list {
    margin-bottom: 1.5rem;
}
.checkout-modern-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 1.05rem;
}
.checkout-modern-summary-label {
    color: #1a3a5f;
    font-weight: 500;
}
.checkout-modern-summary-price {
    color: #274156;
    font-weight: 600;
}
.checkout-modern-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 2px solid #e6e6e6;
}
.checkout-modern-payment {
    flex: 1 1 340px;
    min-width: 320px;
    padding-left: 2rem;
}
.checkout-modern-payment h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.checkout-modern-form-group {
    margin-bottom: 1.1rem;
}
.checkout-modern-form-group label {
    display: block;
    font-size: 0.97rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.checkout-modern-form-group input {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #d4af37;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7f8fa;
    transition: border-color 0.2s;
}
.checkout-modern-form-group input:focus {
    border-color: #1a3a5f;
    outline: none;
}
.checkout-modern-form-row {
    display: flex;
    gap: 1rem;
}
.checkout-modern-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-top: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212,175,55,0.08);
    transition: background 0.2s;
}
.checkout-modern-btn:hover {
    background: #bfa23a;
}
.checkout-modern-status {
    font-size: 0.98rem;
    color: #c0392b;
    margin-top: 0.7rem;
    text-align: center;
    min-height: 1.2em;
}
