:root {
	/* Color tokens */
	--color-bg: #0f172a;
	--color-surface: #1e293b; 
	--color-card-background: #26344b;
	--color-text: #e2e8f0;
	--color-text-muted: #94a3b8;
	--color-primary: #7547ff;  /* Snapsphere purple */
	--color-primary-hover: #7e5bee;
	--color-not-selected: #a39db4;
	--color-border: #334155;
	--color-link: #b3c4db;
	--color-link-hover: #d4d7db;

	/* Typography */
	--font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	--font-size-base: 16px;
	--line-height-base: 1.5;

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-6: 1.5rem;
	--space-8: 2rem;

	/* Layout + effects */
	--radius-sm: 6px;
	--radius-md: 10px;
	--container-max-width: 1200px;
	--feature-max-width: 1400px;
	--shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);

	/*
	 * Seamless horizontal pan: preserve aspect ratio with background-size: auto 100vh.
	 * Set native pixel size of one full wrap in the image file (width ÷ height).
	 * Pan distance = 100vh * (width / height) = exact drawn tile width in CSS pixels.
	 */
	--bg-source-w: 1200;
	--bg-source-h: 600;
	--bg-pan-duration: 720s;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	background-color: var(--color-bg);
	overflow-x: hidden;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--color-text);
}

body {
	min-height: 100vh;
	position: relative;
	background-color: transparent;
}

/* Tiled strip (repeat-x): pan one exact tile width so loop is invisible when L/R edges match. */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-color: transparent;
	background-image: url('/images/as360_hi-contrast.png'); /*url('/images/background-trans.png');*/
	background-repeat: repeat-x;
	background-size: auto 100vh;
	background-position: 0 center;
	/* Animate background-position, not transform: moving the whole layer leaves empty viewport. */
	will-change: background-position;
	animation: bg-pan-seamless var(--bg-pan-duration) linear infinite;
}

#main-vue-container,
.home-hero,
.home-tagline,
.home-subtagline {
	position: relative;
	z-index: 1;
}

.intro-text {
	max-width: var(--feature-max-width);
	margin: 0 auto;
	padding: var(--space-8) var(--space-6) var(--space-4);
	text-align: center;
}

@keyframes bg-pan-seamless {
	from {
		background-position: 0 center;
	}
	to {
		background-position: calc(100vh * var(--bg-source-w) / var(--bg-source-h)) center;
	}
}

@media (prefers-reduced-motion: reduce) {
	body::before {
		animation: none;
		background-position: 0 center;
	}
}

/* Sticks to the top of the viewport while scrolling (menu bar always visible). */
#site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	max-width: var(--feature-max-width);
	margin: 0 auto;
	display: block;
}


#main-vue-container {
	max-width: var(--container-max-width);
	margin: var(--space-2) auto;
	padding: var(--space-2);
}

h1,
h2,
h3 {
	margin-top: 0;
	margin-bottom: var(--space-3);
	line-height: 1.2;
}

p {
	margin-top: 0;
	margin-bottom: var(--space-4);
	color: var(--color-text-muted);
}

a {
	color: var(--color-link);
	text-decoration: none;
}

a:hover {
	color: var(--color-link-hover);
	text-decoration: underline;
}

/* Inline actions that are not <a> (e.g. Vue @click on a span); pair with role="button" when keyboard-focused. */
.text-link {
	color: var(--color-link);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 0.12em;
	font-weight: 600;
}

.text-link:hover {
	color: var(--color-link-hover);
}

.text-link:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

.text-link[aria-disabled="true"] {
	color: var(--color-text-muted);
	cursor: not-allowed;
	text-decoration: none;
	pointer-events: none;
}

.globe-viewer {
	margin: var(--space-4) auto;
}


/* -- HEADER STYLES -- */
.site-header {
	position: relative;
	width: 100%;
	max-width: none;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.site-header-inner {
	width: 100%;
	box-sizing: border-box;
	padding: var(--space-3) var(--space-6);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
}

.site-header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--space-4);
	flex: 1;
	min-width: 0;
}

/* --- CART ---------- */
.site-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	color: var(--color-text-muted);
	text-decoration: none;
}

.site-cart:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.site-cart-icon {
	font-size: 1.35rem;
	line-height: 1;
}

.site-cart-count {
	position: absolute;
	top: 2px;
	right: -2px;
	min-width: 1.3rem;
	height: 1.3rem;
	padding: 0 4px;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2rem;
	text-align: center;
	color: var(--color-text);
	background: color-mix(in srgb, var(--color-primary) 80%, transparent); /* transparent background, --color-primary unchanged */
	border-radius: 999px;
}

.site-cart--mobile {
	position: relative;
	justify-content: flex-start;
	width: 100%;
	min-height: auto;
	padding: var(--space-3) var(--space-6);
	border-top: 1px solid var(--color-border);
	gap: var(--space-2);
	color: var(--color-text-muted);
	font-weight: 500;
}

.site-cart-count--inline {
	position: static;
	margin-left: auto;
	min-width: 1.25rem;
	height: 1.25rem;
	line-height: 1.25rem;
	font-size: 0.7rem;
}

/* --- LOGO -------------- */

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
}

.site-logo:hover {
	color: var(--color-text);
	text-decoration: none;
}

.site-logo img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.site-logo-text {
	font-size: 1.125rem;
	letter-spacing: -0.02em;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	flex-wrap: wrap;
}

.site-nav a {
	color: var(--color-text-muted);
	font-weight: 500;
	text-decoration: none;
}

.site-nav a:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.site-nav a.is-active {
	color: var(--color-primary);
}

/* Style used when the navigation menu is collapsed on mobile devices. */
.site-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: var(--space-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: transparent;
	color: var(--color-text);
	cursor: pointer;
}

.site-nav-toggle:hover {
	background: rgba(148, 163, 184, 0.12);
}

.site-nav-toggle-icon {
	font-size: 1.5rem;
	line-height: 1;
}

.site-nav-dropdown {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 100;
	flex-direction: column;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.site-nav-dropdown.is-open {
	display: flex;
}

.site-nav--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: var(--space-2) 0;
}

.site-nav--mobile a {
	padding: var(--space-3) var(--space-6);
	border-top: 1px solid var(--color-border);
}

.site-nav--mobile a:first-child {
	border-top: 0;
}
/* 
  @media is a CSS at-rule used for defining responsive design rules that apply only if a browser meets certain conditions, such as a minimum or maximum screen width.
  For example, @media (min-width: 768px) { ... } contains CSS that only applies when the screen is at least 768px wide.
  This allows the design to adapt to different devices and screen sizes.
*/
@media (min-width: 768px) {
	.site-nav--desktop {
		display: flex;
	}

	.site-nav-toggle {
		display: none !important;
	}

	.site-nav-dropdown {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.site-nav--desktop {
		display: none;
	}

	.site-nav-toggle {
		display: inline-flex;
	}
}

/* Full-width hero on home.html */
.home-hero {
	width: 100%;
	max-width: var(--feature-max-width);
	margin: 0 auto;
	max-height: min(52vh, 420px);
	overflow: hidden;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}

.home-hero-img {
	display: block;
	width: 100%;
	height: min(52vh, 420px);
	object-fit: cover;
	object-position: center;
}

/* Main tagline on home.html */
.home-tagline {
	max-width: var(--feature-max-width);
	margin: 0 auto;
	padding: var(--space-8) var(--space-6) var(--space-4);
	text-align: center;
}

.home-tagline p {
	margin: 0;
	color: var(--color-text);
	font-size: clamp(2rem, 4vw, 3.0rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

/* Secondary line under the home tagline — centered, smaller type */
.home-subtagline {
	max-width: var(--feature-max-width);
	margin: 0 auto;
	padding: 0 var(--space-6) var(--space-8);
	text-align: center;
}

.home-subtagline p {
	margin: 0;
	color: var(--color-text-muted);
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	font-weight: 500;
	line-height: 1.45;
}

/* General bordered panel — same border, radius, and fill as .card / .product-card (add padding as needed). */
.bordered {
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	background-color: var(--color-card-background);
	color: var(--color-text);
	padding: var(--space-4);
}

/* Dim inactive UI (panels, wrappers). Combine with aria-disabled on the region for assistive tech. */
.is-disabled {
	filter: brightness(0.52);
	pointer-events: none;
	user-select: none;
	transition: filter 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.is-disabled {
		transition: none;
	}
}

/* custom.html — source tabs under title */
.custom-sources {
	max-width: var(--container-max-width);
	margin: 0 auto var(--space-8);
	padding: 0 var(--space-4);
}

.custom-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-2);
	margin-bottom: var(--space-4);
}

.custom-tab {
	min-width: 5.25rem;
	padding: var(--space-2) var(--space-4);
	border: 0;
	border-radius: var(--radius-sm);
	background: var(--color-not-selected);
	color: var(--color-text);
	font-weight: 600;
	font-family: inherit;
	font-size: 0.9375rem;
	cursor: pointer;
	line-height: 1.2;
}

.custom-tab:hover {
	background: rgba(163, 157, 180, 0.85);
}

.custom-tab.is-active {
	background: var(--color-primary);
	color: #06220f;
}

.custom-tab.is-active:hover {
	background: var(--color-primary-hover);
}

.custom-tab-panels {
	min-height: 6rem;
}

.custom-tab-panel-title {
	margin: 0 0 var(--space-3);
	font-size: 1.125rem;
	color: var(--color-text);
}

.custom-tab-panel-text {
	margin: 0;
	color: var(--color-text-muted);
	line-height: var(--line-height-base);
}

/* custom.html — canvas + sidebar; wide: sidebar left, canvas right; narrow: canvas above */
.custom-viewer-layout {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-4);
	margin-top: var(--space-4);
}

.custom-viewer-canvas-col {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.custom-viewer-canvas-col .globe-viewer {
	margin-block: 0;
	margin-inline: auto;
}

.custom-viewer-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.custom-viewer-sidebar .custom-sidebar-heading {
	margin: 0 0 var(--space-2);
	font-size: 1rem;
	color: var(--color-text);
}

.custom-viewer-sidebar .custom-sidebar-heading:not(:first-child) {
	margin-top: var(--space-4);
}

.custom-viewer-sidebar .custom-sidebar-text {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: var(--line-height-base);
}

.custom-viewer-sidebar .custom-sidebar-text--secondary {
	margin-top: var(--space-2);
	font-style: italic;
}

.custom-viewer-sidebar .custom-sidebar-error {
	margin-top: var(--space-2);
	margin-bottom: 0;
	font-style: normal;
	color: #f87171;
	font-size: 0.875rem;
}

/* Step 3: reuse product-card footer controls inside the custom sidebar */
.custom-sidebar-order-footer {
	margin-top: var(--space-3);
}

.custom-sidebar-ui-dummy {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	align-items: center;
}

.custom-sidebar-dummy-control {
	display: inline-block;
	width: 5rem;
	height: 2.25rem;
	border-radius: var(--radius-sm);
	background: var(--color-not-selected);
	border: 1px dashed var(--color-border);
	opacity: 0.85;
}

@media (min-width: 900px) {
	.custom-viewer-layout {
		flex-direction: row-reverse;
		align-items: flex-start;
		justify-content: center;
		gap: var(--space-6);
	}

	.custom-viewer-canvas-col {
		flex: 0 0 auto;
	}

	.custom-viewer-sidebar {
		flex: 0 1 30rem;
		max-width: 32rem;
		align-self: stretch;
	}
}

/* Reusable single-column card section. */
.card {
	width: 100%;
	margin-bottom: var(--space-4);
	padding: var(--space-4);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(15, 23, 42, 0.4);
	color: var(--color-text);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: var(--space-4);
	align-items: start;
	background-color: var(--color-card-background);
}

.card:last-child {
	margin-bottom: 0;
}

.card-content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-title {
	margin: 0 0 var(--space-2);
	color: var(--color-text);
	cursor: pointer;
}

.card-title a {
	color: var(--color-text);
	text-decoration: none;
}

.card-title a:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.card-text {
	margin: 0;
	color: var(--color-text-muted);
}

.card-footer {
	margin-top: auto;
	padding-top: var(--space-4);
}

.card-footer .button-row {
	margin-bottom: 0;
}

.card-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
}

@media (max-width: 767px) {
	.card {
		grid-template-columns: 1fr;
	}

	.card-image {
		height: 240px;
	}
}

/* -- Product Card -------------- */

/* Reusable single-column card section. */
.product-card {
	width: 100%;
	margin-bottom: var(--space-4);
	padding: var(--space-4);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(15, 23, 42, 0.4);
	color: var(--color-text);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: var(--space-4);
	align-items: start;
	background-color: var(--color-card-background);
}

.product-card:last-child {
	margin-bottom: 0;
}

.product-card-content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card-title {
	margin: 0 0 var(--space-2);
	color: var(--color-text);
}

.product-card-text {
	margin: 0;
	color: var(--color-text-muted);
}

.product-card-footer {
	margin-top: auto;
	padding-top: var(--space-4);
}

.product-card-footer-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: var(--space-4);
	row-gap: var(--space-3);
}

.product-card-variants {
	flex: 1 1 auto;
	min-width: 0;
}

.product-card-variant-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-2);
}

.product-card-variant-btn {
	min-width: 5.25rem;
	flex: 0 1 auto;
	background: var(--color-not-selected);
	color: var(--color-text);
}

/* Sits in the variant chip row; sized like a variant button, distinct price styling */
.product-card-variant-list .product-card-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 4rem;
	margin-left: var(--space-4);
	padding: var(--space-1) var(--space-4);
	border: 1px solid #334155;
	border-radius: var(--radius-sm);
	/* background: rgba(117, 71, 255, 0.14); */
	color: #f4f1ff;
	font-size: 1.0rem;
	font-weight: normal;
	line-height: 1.1;
	letter-spacing: 0.01em;
	font-variant-numeric: tabular-nums;
	flex: 0 0 auto;
	user-select: none;
	pointer-events: none;
}

.product-card-variant-btn:hover {
	background: rgba(163, 157, 180, 0.85);
}

.product-card-variant-btn.is-selected {
	background: var(--color-primary);
	color: #06220f;
}

.product-card-variant-btn.is-selected:hover {
	background: var(--color-primary-hover);
}

.product-card-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: var(--space-3) var(--space-4);
	flex: 0 0 auto;
	margin-left: auto;
}

.product-card-qty-row {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
}

.product-card-qty-label {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text-muted);
}

.product-card-total-label {
	margin: 0;
	margin-right: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text-muted);
}

.product-card-total {
	color: var(--color-text);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	font-size: 1.1rem;
	line-height: 1.1;
	letter-spacing: 0.01em;
	width: 95px;
	text-align: right;
}

.product-card-buy {
	flex-shrink: 0;
}

.product-card-no-variant {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	text-align: right;
	flex: 0 0 auto;
	margin-left: auto;
}

.product-card-media {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.product-card-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
}

.product-card-video {
	width: 100%;
	max-height: 240px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: #000;
	object-fit: contain;
}

.product-card-video-embed {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: #000;
}

@media (max-width: 767px) {
	.product-card {
		grid-template-columns: 1fr;
	}

	.product-card-image {
		height: 240px;
	}
}

/* -- BUTTON STYLES -- */
button {
	border: 0;
	border-radius: var(--radius-sm);
	padding: var(--space-2) var(--space-4);
	background: var(--color-primary);
	color: #06220f;
	font-weight: 600;
	cursor: pointer;
}

button:hover {
	background: var(--color-primary-hover);
}

.button-row {
	display: flex;
	gap: var(--space-3);
	margin-bottom: var(--space-6);
	flex-wrap: wrap;
}

.button-secondary {
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.button-secondary:hover {
	background: rgba(148, 163, 184, 0.12);
}


/* -- The Quantity Selector Component (quantity-stepper.js) -------------- */
.qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	vertical-align: middle;
}

.qty-stepper-btn {
	min-width: 1.9rem;
	height: 1.9rem;
	padding: 0;
	border-radius: 0;
	background: rgba(148, 163, 184, 0.12);
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.qty-stepper-btn:hover {
	background: rgba(148, 163, 184, 0.2);
}

.qty-stepper-input {
	width: 2.3rem;
	height: 1.9rem;
	border: 0;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	background: rgba(15, 23, 42, 0.65);
	color: var(--color-text);
	text-align: center;
	font-weight: 600;
	-moz-appearance: textfield;
	appearance: textfield;
}

.qty-stepper-input::-webkit-outer-spin-button,
.qty-stepper-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-stepper-input:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: -2px;
}

/* -- Cart page (cart.html) -- */
.cart-page-status {
	text-align: center;
	margin-bottom: var(--space-4);
}

.cart-line-list {
	list-style: none;
	margin: 0 auto var(--space-6);
	padding: 0;
	max-width: var(--container-max-width);
}

.cart-line {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) auto auto;
	gap: var(--space-4);
	align-items: center;
	margin-bottom: var(--space-4);
	padding: var(--space-4);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	background-color: var(--color-card-background);
}

.cart-line:last-child {
	margin-bottom: 0;
}

.cart-line-media {
	min-width: 0;
}

.cart-line-image {
	display: block;
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
}

.cart-line-image--placeholder {
	background: rgba(15, 23, 42, 0.5);
}

.cart-line-body {
	min-width: 0;
}

.cart-line-title {
	margin: 0 0 var(--space-2);
	font-size: 1.125rem;
	color: var(--color-text);
}

.cart-line-variant {
	margin: 0 0 var(--space-2);
	font-size: 0.9375rem;
	color: var(--color-text-muted);
}

.cart-line-price {
	margin: 0;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--color-text);
}

.cart-line-qty {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-2);
}

.cart-line-qty-label {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text-muted);
}

.cart-line-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.cart-page-footer {
	max-width: var(--container-max-width);
	margin: 0 auto var(--space-8);
	padding: 0 var(--space-2);
	text-align: right;
}

.cart-page-prices-note {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.97rem;
	font-style: italic;
	text-align: left;
	margin-bottom: 20px;
	
}

.cart-checkout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-2) var(--space-6);
	border-radius: var(--radius-sm);
	background: var(--color-primary);
	color: #06220f;
	font-weight: 600;
	text-decoration: none;
}

.cart-checkout-btn:hover {
	background: var(--color-primary-hover);
	text-decoration: none;
}

@media (max-width: 767px) {
	.cart-line {
		grid-template-columns: 80px minmax(0, 1fr);
		grid-template-areas:
			"media body"
			"media qty"
			"actions actions";
	}

	.cart-line-media {
		grid-area: media;
	}

	.cart-line-body {
		grid-area: body;
	}

	.cart-line-qty {
		grid-area: qty;
	}

	.cart-line-actions {
		grid-area: actions;
		justify-content: stretch;
	}

	.cart-line-remove {
		width: 100%;
	}

	.cart-line-image {
		width: 80px;
		height: 80px;
	}
}
