/* ==========================================================
   MVMP Single Store — Additional Styles
   Appended to public.css scope via single-store.php
   ========================================================== */

/* Store headline location (under H1) */
.mvmp-store-headline-location {
	color: var(--mvmp-text-muted);
	font-size: .95rem;
	margin: 4px 0 14px;
}

/* Store stats strip */
.mvmp-store-stats-row {
	display: flex;
	gap: 20px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--mvmp-border);
}

.mvmp-store-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mvmp-store-stat__num {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--mvmp-primary);
	line-height: 1;
}

.mvmp-store-stat__label {
	font-size: .75rem;
	color: var(--mvmp-text-muted);
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-top: 2px;
}

/* Description card */
.mvmp-store-description {
	margin-bottom: 28px;
	background: var(--mvmp-card);
	border: 1px solid var(--mvmp-border);
	border-radius: var(--mvmp-radius);
	padding: 20px 24px;
	box-shadow: var(--mvmp-shadow);
}

.mvmp-store-description h2 {
	margin-top: 0;
	font-size: 1.1rem;
}

.mvmp-store-content { line-height: 1.75; }
.mvmp-store-content p:last-child { margin-bottom: 0; }

/* Products section heading */
.mvmp-store-products-section {
	margin-bottom: 28px;
}

.mvmp-store-products-section h2 {
	font-size: 1.25rem;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--mvmp-border);
}

/* Product card enhancements */
.mvmp-store-product-card {
	transition: var(--mvmp-transition);
}

.mvmp-store-product-card:hover {
	box-shadow: var(--mvmp-shadow-hover);
	transform: translateY(-3px);
	border-color: var(--mvmp-primary);
}

.mvmp-product-no-image {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	background: var(--mvmp-bg);
	border-radius: var(--mvmp-radius-sm);
	margin-bottom: 10px;
}

/* ATC form */
.mvmp-atc-form { margin: 0; }

/* Out of stock label */
.mvmp-out-of-stock {
	display: inline-block;
	padding: 6px 14px;
	background: #f8f8f8;
	border: 1px solid var(--mvmp-border);
	border-radius: var(--mvmp-radius-sm);
	font-size: .82rem;
	color: var(--mvmp-text-muted);
}

/* No products notice */
.mvmp-no-products-notice {
	padding: 32px;
	text-align: center;
	background: var(--mvmp-bg);
	border: 1px dashed var(--mvmp-border);
	border-radius: var(--mvmp-radius);
	color: var(--mvmp-text-muted);
}

/* Back link */
.mvmp-back-link {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--mvmp-border);
}

/* Responsive single store */
@media ( max-width: 680px ) {
	.mvmp-store-hero {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.mvmp-store-hero-logo {
		max-width: 120px;
	}

	.mvmp-store-products-grid {
		grid-template-columns: repeat( auto-fill, minmax( 150px, 1fr ) );
	}

	.mvmp-store-stat__num { font-size: 1.3rem; }
}
