body.glsp-template {
	--glsp-accent: var(--color-primary, #ff6333);
	--glsp-text: #252525;
	--glsp-muted: #777;
	--glsp-line: #e8e8e8;
	--glsp-soft: #f5f5f5;
	background: #fff;
}

.glsp-page,
.glsp-page * {
	box-sizing: border-box;
}

.glsp-page {
	background: #fff;
	color: var(--glsp-text);
	padding: 58px 0 96px;
}

.glsp-container {
	width: min(1520px, calc(100% - 56px));
	margin: 0 auto;
}

.glsp-breadcrumb-wrap {
	margin: 8px 0 52px;
}

.glsp-breadcrumb,
.glsp-breadcrumb a {
	color: var(--glsp-muted);
	font-size: 15px;
	text-decoration: none;
}

.glsp-breadcrumb a:hover {
	color: var(--glsp-accent);
}

.glsp-sep {
	margin: 0 11px;
	color: #555;
}

.glsp-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr);
	gap: clamp(54px, 5.2vw, 100px);
	align-items: start;
}

.glsp-gallery {
	min-width: 0;
}

.glsp-main-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: clamp(570px, 47vw, 760px);
	overflow: hidden;
	background: #fff;
}

.glsp-main-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.glsp-main-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity .18s ease;
}

.glsp-main-wrap img.changing {
	opacity: .25;
}

.glsp-sale {
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 2;
	padding: 9px 15px;
	border-radius: 999px;
	background: var(--glsp-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.glsp-thumbs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.glsp-thumb {
	aspect-ratio: 1;
	overflow: hidden;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 9px;
	background: #f6f3f1;
	cursor: pointer;
	transition: border-color .18s ease, transform .18s ease;
}

.glsp-thumb:hover,
.glsp-thumb.is-active {
	border-color: var(--glsp-text);
	transform: translateY(-2px);
}

.glsp-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.glsp-summary {
	min-width: 0;
	padding-top: 25px;
}

.glsp-rating-row {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 28px;
	color: #929292;
	font-size: 13px;
	text-decoration: none;
}

.glsp-stars {
	display: inline-flex;
	gap: 3px;
	color: #d5d5d5;
	font-size: 17px;
	line-height: 1;
}

.glsp-stars .filled {
	color: #f3b53f;
}

.glsp-summary h1.product_title {
	margin: 0 0 25px;
	color: var(--glsp-text);
	font-size: clamp(32px, 2.25vw, 42px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.15;
	text-transform: uppercase;
}

.glsp-price {
	margin: 0 0 22px;
	color: var(--glsp-text);
	font-size: 31px;
	font-weight: 600;
	line-height: 1.25;
}

.glsp-price del {
	display: inline-block !important;
	margin-right: 13px !important;
	color: #999 !important;
	font-size: .72em;
	font-weight: 400;
	opacity: .75;
	text-decoration: line-through !important;
	text-decoration-thickness: 1.5px !important;
}

.glsp-price ins {
	display: inline-block !important;
	margin: 0 !important;
	color: var(--glsp-accent) !important;
	text-decoration: none !important;
}

.glsp-price del .amount,
.glsp-price del .woocommerce-Price-amount {
	color: inherit !important;
	text-decoration: line-through !important;
	text-decoration-thickness: 1.5px !important;
}

.glsp-price ins .amount,
.glsp-price ins .woocommerce-Price-amount {
	color: inherit !important;
	text-decoration: none !important;
}

.glsp-status {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 29px;
}

.glsp-stock {
	padding: 6px 11px;
	border-radius: 4px;
	background: #e9f6e5;
	color: #3f8244;
	font-size: 13px;
}

.glsp-stock.out {
	background: #f9e6e3;
	color: #a33f34;
}

.glsp-sold {
	color: var(--glsp-text);
	font-size: 13px;
}

.glsp-qty-label {
	margin-bottom: 11px;
	color: var(--glsp-text);
	font-size: 14px;
}

.glsp-qty-pill {
	display: inline-flex;
	align-items: center;
	height: 49px;
	margin-bottom: 37px;
	padding: 0 7px;
	border-radius: 999px;
	background: #f3f3f3;
}

.glsp-qty-pill button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #444;
	font-size: 19px;
	cursor: pointer;
}

.glsp-qty-pill .quantity {
	display: flex;
	margin: 0 !important;
}

.glsp-qty-pill input.qty {
	width: 50px !important;
	height: 42px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--glsp-text) !important;
	text-align: center !important;
	-moz-appearance: textfield;
}

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

.glsp-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 52px 52px;
	gap: 10px;
}

.glsp-add,
.glsp-native-cart .single_add_to_cart_button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	margin: 0 !important;
	padding: 0 25px !important;
	border: 1px solid var(--glsp-accent) !important;
	border-radius: 4px !important;
	background: var(--glsp-accent) !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-transform: uppercase;
	transition: filter .18s ease;
}

.glsp-add:hover,
.glsp-native-cart .single_add_to_cart_button:hover {
	filter: brightness(.92);
}

.glsp-add .amount,
.glsp-add ins,
.glsp-add del {
	color: inherit !important;
}

.glsp-add del {
	display: none;
}

.glsp-product-action {
	width: 52px;
	height: 52px;
}

.glsp-product-action > *,
.glsp-product-action .woosw-btn,
.glsp-product-action .woosc-btn,
.glsp-fallback-action {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 4px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--glsp-text) !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

.glsp-product-action .woosw-btn,
.glsp-product-action .woosc-btn {
	font-size: 0 !important;
}

.glsp-product-action .woosw-btn::before,
.glsp-product-action .woosc-btn::before {
	margin: 0 !important;
	font-size: 21px !important;
}

.glsp-fallback-action {
	cursor: default;
}

.glsp-fallback-action svg,
.glsp-product-action svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.glsp-buy-now {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin-top: 10px;
	padding: 0 22px;
	border: 1px solid var(--glsp-text);
	border-radius: 4px;
	background: #fff;
	color: var(--glsp-text);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .18s ease, color .18s ease;
}

.glsp-buy-now:hover {
	background: var(--glsp-text);
	color: #fff;
}

.glsp-native-cart form.cart {
	margin-bottom: 0 !important;
}

.glsp-native-cart table.variations {
	width: 100%;
	margin: 0 0 20px !important;
	border: 0;
}

.glsp-native-cart table.variations th,
.glsp-native-cart table.variations td {
	display: block;
	width: 100%;
	padding: 0 0 9px;
	border: 0;
	text-align: left;
}

.glsp-native-cart table.variations th label {
	font-size: 14px;
	font-weight: 600;
}

.glsp-native-cart select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
}

.glsp-native-cart .reset_variations {
	display: inline-block;
	margin-top: 7px;
	color: var(--glsp-muted);
	font-size: 12px;
}

.glsp-native-cart .woocommerce-variation-price {
	margin: 12px 0 18px;
	font-size: 25px;
	font-weight: 600;
}

.glsp-native-cart .woocommerce-variation-price del {
	margin-right: 8px;
	color: #999;
	font-size: .75em;
	font-weight: 400;
}

.glsp-native-cart .woocommerce-variation-price ins {
	color: var(--glsp-accent);
	text-decoration: none;
}

.glsp-native-cart .woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 10px;
	align-items: stretch;
}

.glsp-native-cart .quantity {
	width: 100%;
	margin: 0 !important;
}

.glsp-native-cart .quantity input.qty {
	width: 100% !important;
	height: 52px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-align: center;
}

.glsp-native-cart .single_add_to_cart_button {
	width: 100%;
}

.glsp-native-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 10px;
}

.glsp-pickup {
	display: flex;
	gap: 12px;
	padding: 24px 0 22px;
	border-bottom: 1px solid var(--glsp-line);
}

.glsp-check {
	display: flex;
	flex: 0 0 19px;
	align-items: center;
	justify-content: center;
	width: 19px;
	height: 19px;
	margin-top: 1px;
	border-radius: 50%;
	background: #14a72a;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.glsp-pickup p {
	margin: 0 0 6px;
	color: var(--glsp-text);
	font-size: 13px;
}

.glsp-pickup a {
	color: #555;
	font-size: 12px;
	text-decoration: underline;
}

.glsp-help {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	padding: 27px 0;
}

.glsp-help a,
.glsp-help button {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--glsp-text);
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
}

.glsp-help a > span:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 19px;
	height: 19px;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.glsp-help svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.glsp-meta {
	display: grid;
	gap: 10px;
	padding-bottom: 29px;
	border-bottom: 1px solid var(--glsp-line);
	color: #727272;
	font-size: 13px;
}

.glsp-meta strong,
.glsp-meta a {
	color: var(--glsp-text);
	text-decoration: none;
}

.glsp-safe {
	padding-top: 29px;
	text-align: center;
}

.glsp-safe p {
	margin: 0 0 12px;
	color: var(--glsp-text);
	font-size: 14px;
}

.glsp-payment-marks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
}

.glsp-payment-marks > span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 29px;
	padding: 0 7px;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	color: #243f8f;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.glsp-payment-marks .glsp-mastercard {
	position: relative;
	min-width: 45px;
}

.glsp-mastercard i,
.glsp-mastercard b {
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.glsp-mastercard i {
	margin-right: -4px;
	background: #eb001b;
}

.glsp-mastercard b {
	background: #f79e1b;
}

.glsp-payment-marks .glsp-paystack {
	color: #08a5db;
}

.glsp-payment-marks .glsp-gpay {
	color: #3c4043;
}

.glsp-payment-marks .glsp-apple-pay {
	color: #111;
	font-size: 12px;
}

.glsp-tabs {
	margin-top: 88px;
	padding-top: 36px;
	border-top: 1px solid var(--glsp-line);
}

.glsp-tabs .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin: 0 0 30px !important;
	padding: 0 !important;
	border-bottom: 1px solid #e5e5e5;
}

.glsp-tabs .woocommerce-tabs ul.tabs::before,
.glsp-tabs .woocommerce-tabs ul.tabs li::before,
.glsp-tabs .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.glsp-tabs .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 0 15px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.glsp-tabs .woocommerce-tabs ul.tabs li.active {
	border-bottom: 2px solid var(--glsp-text) !important;
}

.glsp-tabs .woocommerce-tabs ul.tabs li a {
	padding: 0 !important;
	color: var(--glsp-text) !important;
	font-weight: 600;
}

.glsp-tabs .woocommerce-Tabs-panel {
	color: #5f5f5f;
	line-height: 1.8;
}

.glsp-tabs .woocommerce-Tabs-panel h2:first-child {
	display: none;
}

.glsp-related {
	margin-top: 86px;
}

.glsp-related .related > h2 {
	margin-bottom: 42px;
	color: var(--glsp-text);
	font-size: clamp(34px, 3vw, 48px);
	font-weight: 500;
	text-align: center;
}

.glsp-lightbox[hidden] {
	display: none;
}

.glsp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: rgba(0, 0, 0, .88);
}

.glsp-lightbox img {
	display: block;
	max-width: min(1200px, 94vw);
	max-height: 90vh;
	object-fit: contain;
}

.glsp-lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 38px;
	line-height: 1;
	cursor: pointer;
}

body.glsp-lightbox-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.glsp-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 54px;
	}

	.glsp-main-wrap {
		height: clamp(480px, 72vw, 720px);
	}

	.glsp-summary {
		max-width: 760px;
		padding-top: 0;
	}
}

@media (max-width: 620px) {
	.glsp-page {
		padding: 30px 0 62px;
	}

	.glsp-container {
		width: calc(100% - 28px);
	}

	.glsp-breadcrumb-wrap {
		margin-bottom: 30px;
	}

	.glsp-main-wrap {
		height: 390px;
		min-height: 0;
	}

	.glsp-grid {
		gap: 38px;
	}

	.glsp-summary h1.product_title {
		font-size: 31px;
	}

	.glsp-price {
		font-size: 27px;
	}

	.glsp-actions {
		grid-template-columns: minmax(0, 1fr) 48px 48px;
	}

	.glsp-product-action {
		width: 48px;
		height: 50px;
	}

	.glsp-add {
		min-height: 50px;
		padding: 0 12px !important;
		font-size: 12px !important;
	}

	.glsp-button-divider {
		display: none;
	}

	.glsp-native-cart .woocommerce-variation-add-to-cart {
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.glsp-help {
		gap: 22px;
	}

	.glsp-tabs {
		margin-top: 60px;
	}

	.glsp-related {
		margin-top: 62px;
	}

	.glsp-lightbox {
		padding: 18px;
	}
}
