/* Shared safeguards for Core-rendered storefront routes. */
.nsc-shop { box-sizing: border-box; max-width: 1180px; margin: 0 auto; padding: 24px 20px; color: #102238; }
.nsc-shop *, .nsc-shop *::before, .nsc-shop *::after { box-sizing: border-box; }
.nsc-shop svg { display: inline-block; max-width: 100%; height: auto; }
.nsc-login__icon { width: 1em; height: 1em; flex: 0 0 1em; }
.nsc-shop__card { background: #fff; border: 1px solid #d9e1e7; border-radius: 12px; padding: 20px; }
.nsc-checkout__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); gap: 24px; align-items: start; }
.nsc-checkout__address + .nsc-checkout__address { margin-top: 16px; padding-top: 16px; border-top: 1px solid #d9e1e7; }
.nsc-checkout__address h3 { margin: 0 0 8px; }
.nsc-checkout__address p { margin: 0 0 12px; }
.nsc-checkout ul { margin: 0; padding-left: 20px; }
.nsc-checkout li { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.nsc-checkout__scope { color: #52626f; font-size: .9rem; }
.nsc-checkout__shipping fieldset { border: 0; margin: 0; padding: 0; }
.nsc-checkout__shipping-option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 8px 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #d9e1e7; cursor: pointer; }
.nsc-checkout__shipping-option small { grid-column: 2 / -1; color: #52626f; }
.nsc-checkout__shipping-option input { width: 18px; height: 18px; accent-color: #00aabe; }
.nsc-checkout__shipping-option input:focus-visible { outline: 3px solid #00aabe; outline-offset: 3px; }
.nsc-shop table { width: 100%; border-collapse: collapse; }
.nsc-shop th, .nsc-shop td { padding: 10px; text-align: left; vertical-align: top; border-bottom: 1px solid #d9e1e7; }
@media (max-width: 640px) {
	.nsc-shop { padding: 18px 16px; overflow-wrap: anywhere; }
	.nsc-checkout__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
	.nsc-shop__card { padding: 16px; }
	.nsc-checkout__shipping-option { grid-template-columns: auto minmax(0, 1fr); }
	.nsc-checkout__shipping-option > span { grid-column: 2; }
	.nsc-shop table, .nsc-shop thead, .nsc-shop tbody, .nsc-shop tr, .nsc-shop th, .nsc-shop td { display: block; }
	.nsc-shop th { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.nsc-shop td { padding: 8px 0; }
}
