/*
 * Coastal Supply — Single Brand page (product_brand taxonomy archive).
 *
 * Three sections rendered by woocommerce/taxonomy-product_brand.php:
 *   1. Hero     — breadcrumb + brand name (full-width) + logo | description (50/50).
 *   2. Stores   — full-viewport-width band with horizontal store cards.
 *   3. Products — full-viewport-width band with horizontal product carousel.
 *
 * Design mirrors the single-product page (see single-product.css).
 */

/* ── Kill Astra margin on brand taxonomy pages ─────────────────────────────── */

.tax-product_brand #primary,
.tax-product_brand.ast-plain-container.ast-no-sidebar #primary {
	margin: 0;
	margin-top: 0;
}

/* ── Hero — full-viewport-width background band ──────────────────────────── */

.coastal-brand-page__hero-section {
	width: auto;
	max-width: none;
	margin-inline: calc(50% - 50vw);
	background: rgba(220, 233, 245, 0.50);
}

.coastal-brand-page__hero-wrap {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding: 24px 10px 64px;
}

.coastal-brand-page__hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

/* ── Breadcrumb + brand name above the grid ──────────────────────────────── */

.coastal-brand-page__breadcrumb,
.coastal-brand-page__breadcrumb .woocommerce-breadcrumb {
	font-family: "Manrope", sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #888;
	margin: 0 0 8px;
	padding: 0;
	background: none;
}

.coastal-brand-page__breadcrumb a,
.coastal-brand-page__breadcrumb .woocommerce-breadcrumb a {
	color: #888;
	text-decoration: none;
}

.coastal-brand-page__breadcrumb a:hover,
.coastal-brand-page__breadcrumb .woocommerce-breadcrumb a:hover {
	color: #2c2c75;
	text-decoration: underline;
}

.coastal-brand-page__title {
	font-family: "Manrope", sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #2c2c75;
	margin: 0 0 28px;
	line-height: 1.2;
}

/* ── Left column: brand logo ──────────────────────────────────────────────── */

.coastal-brand-page__left {
	min-width: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.coastal-brand-page__logo {
	display: block;
	width: 100%;
	height: auto;
	max-height: 320px;
	object-fit: contain;
	border-radius: 12px;
	background: #fff;
	padding: 24px;
	box-sizing: border-box;
	box-shadow: 0 2px 12px rgba(44, 44, 117, 0.08);
}

.coastal-brand-page__logo-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: linear-gradient(135deg, #dce9f5 0%, #c3d8ef 100%);
}

/* ── Right column: description + CTA ─────────────────────────────────────── */

.coastal-brand-page__right {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.coastal-brand-page__excerpt {
	font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

.coastal-brand-page__excerpt p {
	margin: 0 0 12px;
}

.coastal-brand-page__excerpt p:last-child {
	margin-bottom: 0;
}

.coastal-brand-page__cta {
	align-self: flex-start;
}

/* ── Stores — full-viewport-width band ──────────────────────────────────── */

.coastal-brand-page__stores-section {
	width: auto;
	max-width: none;
	margin-inline: calc(50% - 50vw);
	background: rgba(220, 233, 245, 0.50);
	padding: 40px 80px;
}

.coastal-brand-page__stores-card {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
}

.coastal-brand-page__stores-inner {
	padding: 40px;
}

.coastal-brand-page__stores-header {
	margin-bottom: 28px;
}

.coastal-brand-page__stores-heading {
	font-family: "Manrope", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #2c2c75;
	margin: 0 0 6px;
}

/* Horizontal scroll track */
.coastal-brand-page__stores-scroll-wrap {
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.coastal-brand-page__stores-scroll-wrap::-webkit-scrollbar {
	display: none;
}

.coastal-brand-page__stores-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 4px 2px 16px;
	width: max-content;
	min-width: 100%;
	scroll-snap-type: x mandatory;
}

/* Store card */
.coastal-brand-page__store-card {
	flex: 0 0 240px;
	background: #fff;
	border: 1px solid #dce9f5;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 150ms ease-in-out, border-color 150ms ease-in-out;
}

.coastal-brand-page__store-card:hover {
	box-shadow: 0 4px 16px rgba(44, 44, 117, 0.12);
	border-color: #2c2c75;
}

.coastal-brand-page__store-photo {
	width: 100%;
	height: 140px;
	overflow: hidden;
	background: #dce9f5;
	flex-shrink: 0;
}

.coastal-brand-page__store-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.coastal-brand-page__store-photo-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #dce9f5 0%, #c3d8ef 100%);
}

.coastal-brand-page__store-info {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.coastal-brand-page__store-name {
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.coastal-brand-page__store-name a {
	color: #1e1e3f;
	text-decoration: none;
}

.coastal-brand-page__store-name a:hover {
	color: #2c2c75;
}

.coastal-brand-page__store-address {
	font-size: 13px;
	line-height: 1.5;
	color: #555;
	font-style: normal;
	margin: 0;
}

.coastal-brand-page__store-today {
	font-size: 13px;
	color: #2a7a4b;
	margin: 0;
	font-weight: 500;
}

.coastal-brand-page__store-today strong {
	font-weight: 700;
}

.coastal-brand-page__store-hours {
	margin: 0;
	font-size: 12px;
	color: #555;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.coastal-brand-page__store-hours > div {
	display: flex;
	justify-content: space-between;
	gap: 8px;
}

.coastal-brand-page__store-hours dt {
	font-weight: 600;
	color: #333;
	white-space: nowrap;
}

.coastal-brand-page__store-hours dd {
	margin: 0;
	text-align: right;
}

.coastal-brand-page__store-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid #eaf1f8;
	font-size: 13px;
	font-weight: 600;
}

.coastal-brand-page__store-directions {
	color: #2c2c75;
	text-decoration: none;
}

.coastal-brand-page__store-directions:hover {
	text-decoration: underline;
}

.coastal-brand-page__store-phone {
	color: #555;
	text-decoration: none;
}

.coastal-brand-page__store-phone:hover {
	color: #2c2c75;
}

/* ── Products carousel — full-viewport-width band ────────────────────────── */

.coastal-brand-page__products-section {
	width: auto;
	max-width: none;
	margin-inline: calc(50% - 50vw);
	background: rgba(220, 233, 245, 0.50);
	padding: 40px 80px 56px;
}

.coastal-brand-page__products-inner {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
}

.coastal-brand-page__products-heading {
	font-family: "Manrope", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #2c2c75;
	margin: 0 0 28px;
}

/* Horizontal scroll track */
.coastal-brand-page__products-scroll-wrap {
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.coastal-brand-page__products-scroll-wrap::-webkit-scrollbar {
	display: none;
}

.coastal-brand-page__products-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 4px 2px 16px;
	width: max-content;
	min-width: 100%;
	scroll-snap-type: x mandatory;
}

/* Product card */
.coastal-brand-page__product-card {
	flex: 0 0 200px;
	scroll-snap-align: start;
}

.coastal-brand-page__product-link {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #fff;
	border: 1px solid #dce9f5;
	border-radius: 12px;
	overflow: hidden;
	padding-bottom: 16px;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 150ms ease-in-out, border-color 150ms ease-in-out;
	height: 100%;
}

.coastal-brand-page__product-link:hover {
	box-shadow: 0 4px 16px rgba(44, 44, 117, 0.12);
	border-color: #2c2c75;
}

.coastal-brand-page__product-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f5f8fb;
	flex-shrink: 0;
}

.coastal-brand-page__product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 200ms ease-in-out;
}

.coastal-brand-page__product-link:hover .coastal-brand-page__product-image img {
	transform: scale(1.04);
}

.coastal-brand-page__product-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #dce9f5 0%, #c3d8ef 100%);
}

.coastal-brand-page__product-cat {
	display: block;
	font-family: "Manrope", sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #4f5ba8;
	padding: 0 14px;
}

.coastal-brand-page__product-name {
	display: block;
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1e1e3f;
	padding: 0 14px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.coastal-brand-page__hero-wrap,
	.coastal-brand-page__stores-section,
	.coastal-brand-page__products-section {
		padding-inline: 18px;
	}

	.coastal-brand-page__stores-inner {
		padding: 24px 18px;
	}
}

@media (max-width: 768px) {
	.coastal-brand-page__hero-wrap,
	.coastal-brand-page__stores-section,
	.coastal-brand-page__products-section {
		padding-inline: 14px;
	}

	.coastal-brand-page__hero {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.coastal-brand-page__title {
		font-size: 28px;
	}

	.coastal-brand-page__logo {
		max-height: 220px;
	}

	.coastal-brand-page__store-card {
		flex: 0 0 220px;
	}

	.coastal-brand-page__product-card {
		flex: 0 0 160px;
	}
}
