/* Shopify Store - ALW Buy Button Integration */

body.page-template-page_shopify-store,
body.page-template-page_shopify-store .site-container,
body.page-template-page_shopify-store .site-inner,
body.page-template-page_shopify-store .content-sidebar-wrap,
body.page-template-page_shopify-store .content,
body.page-template-page_shopify-store .entry {
	background: #0F1423 !important;
}

body.page-template-page_shopify-store .site-inner {
	max-width: 100%;
	padding: 0;
}

body.page-template-page_shopify-store .entry {
	padding: 0;
	border: none;
	max-width: 100%;
}

body.page-template-page_shopify-store .content {
	max-width: 100%;
	padding: 0;
}

body.page-template-page_shopify-store .entry-content {
	max-width: 100%;
}

/* Hide Genesis breadcrumb and page header bar */
body.page-template-page_shopify-store .breadcrumb,
body.page-template-page_shopify-store .entry-header {
	display: none !important;
}

/* Remove any top margin/padding gap between nav and store content */
body.page-template-page_shopify-store .site-inner {
	margin-top: 0;
	padding-top: 0;
}

/* ── Store Layout ── */
.v-store-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px 120px;
	font-family: 'Overpass', sans-serif;
}

.v-store-preheader {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 13px;
	color: #0C63AC;
	font-weight: 600;
	margin-bottom: 8px;
}

.v-store-title {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.1;
}

.v-store-intro {
	color: #a0a0a0;
	font-size: 16px;
	margin-bottom: 48px;
	max-width: 500px;
}

/* ── Product Grid ── */
.v-store-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

@media (max-width: 1023px) {
	.v-store-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 639px) {
	.v-store-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.v-store-title {
		font-size: 32px;
	}
}

/* ── Card Links ── */
.v-store-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.v-store-card__name a {
	color: #fff;
	text-decoration: none;
}

.v-store-card__name a:hover {
	color: #0C63AC;
}

/* ── Product Card ── */
.v-store-card {
	background: #1C1C1C;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #fff;
}

.v-store-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.v-store-card__image {
	background: #2a2a2a;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.v-store-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.v-store-card__info {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.v-store-card__name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}

.v-store-card__description {
	color: #a0a0a0;
	font-size: 14px;
	margin-bottom: 16px;
	flex: 1;
}

.v-store-card__price {
	font-size: 20px;
	font-weight: 700;
	color: #0C63AC;
	margin-bottom: 16px;
}

/* ── Shopify Buy Button Container ── */
.shopify-buy-button {
	min-height: 44px;
}

/* ── Variant Selector Overrides ── */
.shopify-buy-button .shopify-buy__option-select__label {
	color: #a0a0a0 !important;
	font-family: 'Overpass', sans-serif !important;
	font-size: 12px !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	margin-bottom: 4px !important;
}

.shopify-buy-button .shopify-buy__option-select__select {
	background-color: #2a2a2a !important;
	color: #fff !important;
	border: 1px solid #444 !important;
	border-radius: 4px !important;
	font-family: 'Overpass', sans-serif !important;
	padding: 8px 12px !important;
}

.shopify-buy-button .shopify-buy__option-select + .shopify-buy__option-select {
	margin-top: 8px !important;
}

.shopify-buy-button .shopify-buy__option-select {
	margin-bottom: 12px !important;
}
