/**
 * Side Checkout — Store Pickup UI (FASE 5).
 * Tarjeta informativa de recogida en tienda. Sin mapa embebido.
 */

.pgsc-checkout__store-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 20px;
	border: 1px solid var(--pgsc-color-border-subtle, #e8e0e3);
	border-radius: var(--pgsc-radius-card, 10px);
	background: var(--pgsc-color-surface-raised, #faf8f9);
}

.pgsc-checkout__store-card-header {
	margin: 0;
}

.pgsc-checkout__store-card-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--pgsc-color-text-primary, #2d1f24);
}

.pgsc-checkout__store-card-intro {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--pgsc-color-text-secondary, #5c4a52);
}

.pgsc-checkout__store-maps-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--pgsc-color-button-functional-border, #6b2838);
	border-radius: var(--pgsc-radius-button, 6px);
	background: var(--pgsc-color-button-functional-bg, #6b2838);
	color: var(--pgsc-color-on-primary, #fff);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.pgsc-checkout__store-maps-link:hover,
.pgsc-checkout__store-maps-link:focus-visible {
	background: var(--pgsc-color-button-functional-bg-hover, #4f1c2a);
	border-color: var(--pgsc-color-button-functional-bg-hover, #4f1c2a);
	color: var(--pgsc-color-on-primary, #fff);
	outline: none;
}

.pgsc-checkout__store-card-section {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding-top: 4px;
}

.pgsc-checkout__store-card-section + .pgsc-checkout__store-card-section {
	padding-top: 8px;
	border-top: 1px solid var(--pgsc-color-border-subtle, #ece6e9);
}

.pgsc-checkout__store-card-section-title {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--pgsc-color-text-primary, #2d1f24);
}

.pgsc-checkout__store-card-section-text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--pgsc-color-text-secondary, #5c4a52);
}
