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

html,
body,
div,
span,
applet,
button,
input,
select,
textarea,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	background: rgba(0, 0, 0, 0);
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	min-width: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul,
menu {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}

img,
svg {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, sans-serif;

	--primary-color: #f7941e;
	--secondary-color: #002b54;
	--light-bg-color: #f1f1f1;
	--dark-bg-color: #002b54;
	--green-color: #68b684;

	--text-xxxlg: 2.6rem;
	--text-xxlg: 2.2rem;
	--text-xlg: 2rem;
	--text-lg: 1.8rem;
	--text-md: 1.2rem;
	--text-body: 1rem;
	--text-sm: 0.8rem;
	--text-xsm: 0.6rem;

	--border-radius: 0.4rem;

	--section-pad: 3rem;

	--hero-height: 30rem;
	--hero-height-sm: 20rem;
	--hero-title-size: 2.6rem;
	--hero-caption-size: 1rem;
	--hero-max-width: 40rem;

	--logo-select-width: 100%;

	--breadcrumbs-wrapper-display: none;

	--flex-cols-flex-direction: column;
	--flex-cols-gap: 2rem;

	--header-padding-bottom: 0rem;
	--header-contact-wrapper-display: none;
	--header-top-phone-link: block;
	--header-top-wrapper-padding: 0rem;
	--nav-display: none;
	--header-mobile-trigger-display: block;

	--nav-flex-direction: column;
	--nav-dropdown-position: relative;
	--nav-dropdown-shadow: none;

	--nav-dropdown-padding: 2rem 0rem 2rem 0rem;

	--nav-dropdown-width: 100%;

	--footer-links-width: 42%;

	--header-sub-display: none;

	--header-location-wrapper-order: 1;
	--main-nav-order: 2;
	--top-nav-wrapper-order: 3;

	--header-location-wrapper-width: 100%;
	--footer-links-wrapper-gap: 1rem;

	--footer-wrapper-gap: 2rem;

	--header-wrapper-align: center;

	--product-wrapper-flex-direction: column;

	--product-image-wrapper-width: 100%;
	--product-description-wrapper: 100%;
	--product-image-main-wrapper: 16rem;
	--product-image-thumb-height: 4rem;
	--product-image-thumbnail-wrapper-width: 4rem;
	--product-image-main-wrapper-radius: 0rem;

	--product-description-wrapper-padding: 0rem 6vw 3rem 6vw;
}

@media all and (min-width: 768px) {
	:root {
		--text-xxxlg: 2.6rem;
		--text-xxlg: 2.4rem;
		--text-xlg: 2.2rem;
		--text-lg: 1.6rem;
		--text-md: 1.34rem;
		--text-body: 1rem;
		--text-sm: 0.8rem;
		--text-xsm: 0.6rem;

		--header-sub-display: flex;
		--header-location-wrapper-order: 1;
		--main-nav-order: 3;
		--top-nav-wrapper-order: 2;

		--header-location-wrapper-width: auto;

		--grid-item-500-height: 400px;

		--section-pad: 4rem;

		--hero-height: 30rem;

		--hero-title-size: 3.6rem;
		--hero-caption-size: 1.25rem;
		--hero-max-width: 44rem;

		--breadcrumbs-wrapper-display: block;

		--flex-cols-flex-direction: row;
		--flex-cols-gap: 6rem;

		--footer-wrapper-gap: 4rem;

		--header-padding-bottom: 0;
		--header-contact-wrapper-display: flex;
		--header-top-phone-link: none;
		--header-top-wrapper-padding: 0.15rem;
		--nav-display: flex;
		--header-mobile-trigger-display: none;

		--nav-flex-direction: row;
		--nav-dropdown-position: absolute;
		--nav-dropdown-shadow: 0 15px 12px rgba(0, 0, 0, 0.2);
		--nav-dropdown-padding: 2rem 0rem 2rem 0rem;

		--nav-dropdown-width: 90%;
		--footer-links-width: 28%;

		--footer-links-wrapper-gap: 1rem;

		--header-wrapper-align: flex-start;

		--product-image-main-wrapper: 36rem;
		--product-image-main-wrapper-radius: 0.4rem;
		--product-image-thumb-height: 8rem;
		--product-image-thumbnail-wrapper-width: 12rem;
		--product-image-thumb-flex: 10rem;

		--product-description-wrapper-padding: 0rem 0 3rem 0;
		--product-wrapper-padding: 1rem 6vw 2rem 6vw;
		--product-wrapper-width: 94%;
		--product-wrapper-flex-direction: row;
	}
}

@media all and (min-width: 1200px) {
	:root {
		--text-xxxlg: 3.2rem;
		--text-xxlg: 3rem;
		--text-xlg: 2.6rem;
		--text-lg: 1.6rem;
		--text-md: 1.2rem;
		--text-body: 1rem;
		--text-sm: 0.8rem;
		--text-xsm: 0.6rem;
		--hero-title-size: 4rem;

		--product-image-main-wrapper: 30rem;
		--product-image-wrapper-width: 65%;
		--product-description-wrapper: 35%;
		--product-wrapper-flex-direction: row;
	}
}

@media all and (min-width: 1600px) {
	:root {
		--hero-height: 40rem;
	}
}

html {
	scroll-behavior: smooth;
	overscroll-behavior: none;
}

body {
	font-family: var(--font-family);
	font-weight: 395;
	font-size: 16px;
	line-height: 1.4;
	background: var(--dark-bg-color);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

@supports (-webkit-touch-callout: none) {
	body {
		min-height: -webkit-fill-available;
	}
}

body.mobile-nav-active {
	overflow: hidden;
}

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

/* UTILITY */
/***********/

.light-bg {
	background-color: var(--light-bg-color);
}

.white-bg {
	background: #ffffff;
}
.grey-bg {
	background-color: #e5e5e5;
}

.green-bg {
	background-color: var(--green-color);
}

.red-bg {
	background-color: var(--primary-color);
}

.primary-bg {
	background-color: var(--primary-color);
}

.flex-v-center {
	justify-content: center;
}

.flex-h-center {
	align-items: center;
}

.text-white {
	color: #fff;
}

.text-primary {
	color: var(--primary-color);
}

.text-secondary {
	color: var(--secondary-color);
}

.text-gray {
	color: #343434;
}

.text-upper {
	text-transform: uppercase;
}

.text-center {
	text-align: center;
}

.text-stacked {
	line-height: 1;
}

.text-xxxlg {
	font-size: var(--text-xxxlg);
}

.text-xxlg {
	font-size: var(--text-xxlg);
}

.text-xlg {
	font-size: var(--text-xlg);
}

.text-lg {
	font-size: var(--text-lg);
	line-height: 1.5;
	letter-spacing: -1px;
}

.text-md {
	font-size: var(--text-md);
}

.text-body {
	font-size: var(--text-body);
}

.text-sm {
	font-size: var(--text-sm);
}

.text-xsm {
	font-size: var(--text-xsm);
}

.text-400 {
	font-weight: 400;
}

.text-500 {
	font-weight: 500;
}

.text-600 {
	font-weight: 600;
}

.text-700 {
	font-weight: 700;
}

.text-800 {
	font-weight: 800;
}

.text-heading {
	line-height: 1.1;
	letter-spacing: -1px;
}

.numbered-list {
	list-style: decimal;
	padding-left: 3rem;
}

.numbered-list li {
	line-height: 1.4;
	margin-bottom: 0.6rem;
}

.gap-xsm {
	gap: 0.2rem;
}

.gap-sm {
	gap: 0.6rem;
}

.gap {
	gap: 1rem;
}

.gap-lg {
	gap: 1.6rem;
}

.pad {
	padding: 1rem;
}

.pad-sm {
	padding: 0.4rem;
}

.pad-left {
	padding-left: 1rem;
}

.pad-right {
	padding-right: 1rem;
}

.pad-lg {
	padding: 1.6rem;
}

.pad-xlg {
	padding: 2rem;
}

.pad-top {
	padding-top: 1rem;
}

.pad-btm {
	padding-bottom: 1rem;
}

.margin-top {
	padding-top: 1rem;
}

.h-400 {
	height: 400px;
}

.h-500 {
	height: 500px;
}

.h-600 {
	height: 600px;
}

.round {
	border-radius: var(--border-radius);
}

/* HEADER */
/**********/

header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	background-color: #fff;
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0rem;
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.6rem 0;
	height: 4.4rem;
}

.header-logo {
	display: block;
	width: 120px;
	max-width: 60%;
}

.header-logo-img {
	width: 100%;
	height: auto;
}

.header-mobile-wrapper {
	display: flex;
	flex-grow: 1;
	gap: 0.6rem;
	align-items: center;
}

.header-sub {
	display: var(--header-sub-display);
	flex-wrap: wrap;
}

.header-sub.active {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	position: fixed;
	top: 4.2rem;
	left: 0;
	background: var(--light-bg-color);
	z-index: 100;
	width: 100%;
	height: calc(100vh - 4rem);
	padding-top: 2rem;
	overflow: auto;
}

.nav {
	list-style: none;
}

.header-mobile-trigger {
	display: var(--header-mobile-trigger-display);
}

.main-nav {
	display: flex;
	position: relative;
	padding: 0 2rem;
	order: var(--main-nav-order);
	width: 100%;
	/*justify-content: end; */
}

.nav {
	display: flex;
	gap: 1rem;
	padding: 0rem 0 0rem 0;
	flex-direction: var(--nav-flex-direction);
	list-style: none;
	width: 100%;
	align-items: left;
	justify-content: left;
}

.nav-parent {
	width: 100%;
	position: relative;
}

.nav-parent-item {
	display: flex;
	gap: 0.6rem;
	justify-content: space-between;
	cursor: pointer;
}

.nav-search {
	padding: 0.5rem 1rem !important;
	font-size: 0.9rem;
}

.nav-parent-link,
.page-nav-link {
	display: flex;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 1rem 0;
	white-space: nowrap;
	width: 100%;
	text-transform: uppercase;
	font-size: var(--text-md);
	cursor: pointer;
	position: relative;
}

.page-nav-link {
	color: #fff;
}

.nav-parent-link:hover {
	color: var(--primary-color);
}

.page-nav-link:hover,
.top-nav-link:hover {
	text-decoration: underline;
}

.nav-parent-link-btn {
	background: var(--primary-color);
	padding: 0.4rem 1.4rem;
	border-radius: var(--border-radius);
	color: #fff;
	font-size: var(--text-body);
}

.nav-parent-link-btn:hover {
	color: #fff;
	opacity: 0.8;
}

.nav-parent-link svg {
	width: 2.6rem;
	height: auto;
}

.nav-cart-count {
	position: absolute;
	top: 0.8rem;
	right: -0.2rem;
	background: var(--primary-color);
	padding: 0 0.4rem;
	border-radius: 10rem;
	color: #fff;
	font-size: 90%;
}

.header-sub-wrapper {
	display: flex;
	gap: 1rem;
	flex-grow: 1;
	justify-content: end;
}

body.mobile-nav-active {
	overflow: hidden;
}

.page-drawer-nav {
	display: flex;
	flex-direction: row;
	padding: 0.6rem 0;
	gap: 1rem;
}

.page-drawer-nav a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-size: var(--text-sm);
}

.page-drawer-nav a:hover {
	text-decoration: underline;
}

@media all and (min-width: 768px) {
	.main-nav,
	.header-sub {
		justify-content: end;
	}

	.nav-parent {
		width: auto;
	}

	.main-nav {
		padding: 0.2rem 0;
	}

	.nav,
	.page-nav,
	.top-nav {
		align-items: center;
		gap: 1rem;
		width: auto;
	}

	.nav-parent-link {
		font-size: 90%;
	}

	.header-logo {
		display: block;
		width: 150px;
		max-width: 60%;
	}
}

.nav-arrow {
	width: 0.6rem;
}

.nav-dropdown {
	position: var(--nav-dropdown-position);
	width: 100%;
	top: 3rem;
	left: 0;
	z-index: 10;
	background: #fff;
	padding: var(--nav-dropdown-padding);
	box-shadow: var(--nav-dropdown-shadow);
	display: none;
}

.nav-dropdown .wrapper {
	width: var(--nav-dropdown-width);
}

.nav-parent.active .nav-dropdown {
	display: block;
}

.nav-dropdown-wrapper {
	display: grid;
	gap: 1.4rem;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

.dropdown-5 {
	grid-template-columns: 1fr 1fr;
}

.dropdown-4 {
	grid-template-columns: 1fr 1fr;
}

.nav-dropdown-parent:hover .nav-dropdown {
	display: block;
}

.nav-dropdown-link {
	display: flex;
	flex-direction: column;
	padding: 1.4rem 1rem;
	gap: 1rem;
	justify-content: flex-end;
	align-items: center;
	background: var(--light-bg-color);
	text-decoration: none;
	color: #000;
	font-weight: 500;
	height: 100%;
}

.nav-dropdown-link:hover {
	transition: transform 150ms ease-out;
	transform: scale(1.05);
}

.nav-dropdown-link img {
	max-width: 80%;
	height: auto;
	max-height: 100px;
}

.mobile-trigger {
	border: none;
	padding: 0.6rem;
	display: block;
}

.mobile-trigger span {
	display: block;
	padding: 1px 0;
	background: var(--primary-color);
	width: 1.4rem;
}

.mobile-trigger span:not(:last-child) {
	margin-bottom: 0.25rem;
}

@media all and (min-width: 768px) {
	.dropdown-5 {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.dropdown-4 {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media all and (min-width: 1200px) {
	.dropdown-5 {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	}

	.dropdown-4 {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

.breadcrumbs-wrapper {
	padding: 0.4rem 0 0.4rem 0;
	display: var(--breadcrumbs-wrapper-display);
}

.breadcrumbs {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 0.4rem;
	font-size: 0.8rem;
	margin: 0;
	padding: 0;
}

.breadcrumbs li:not(:first-child)::before {
	content: "/\00a0";
	border: none;
	transform: inherit;
	width: 12px;
	height: 12px;
	font-size: 80%;
	padding: 0 0rem 0 0rem;
	color: #fff;
}

.breadcrumbs a {
	text-decoration: none;
	color: #fff;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.wrapper {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}

.wrapper-slim {
	max-width: 900px;
}

.wrapper-xs {
	max-width: 700px;
}

.wrapper-full {
	width: 100%;
	max-width: 100%;
}

.wrapper-lg {
	max-width: 1600px;
}

.page-section {
	position: relative;
}

.page-section-pad {
	padding: var(--section-pad) 0;
}

.page-section-pad-sm {
	padding: calc(var(--section-pad) / 4) 0;
}

.page-hero {
	height: 70vh;
	max-height: 40rem;
}

.page-hero-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: 0 auto;
}

.page-hero-sm {
	height: var(--hero-height-sm);
}

.hero-bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -10;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.hero-bg img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	object-position: top center;
}

.hero-wrapper {
	display: flex;
	width: 100%;
	justify-self: flex-end;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	z-index: 5;
	gap: 1rem;
	padding: 2rem;
	max-width: 46rem;
}

.hero-eyebrow {
	color: #fff;
	font-weight: 400;
	font-size: var(--text-body);
	text-transform: uppercase;
}

.hero-title {
	color: #fff;
	font-size: var(--hero-title-size);
	text-align: center;
	display: block;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
	padding: 0;
	margin: 0;
}

.hero-caption {
	color: #fff;
	font-size: var(--hero-caption-size);
	line-height: 1.5;
	max-width: calc(var(--hero-max-width) * 0.6);
	font-weight: 500;
}

.page-section-header {
	display: flex;
	gap: 0.6rem;
	flex-direction: column;
}

.page-section-header-narrow {
	max-width: 50rem;
}

:root {
	--flex-wrapper-direction: column;
	--card-content-bottom: 0;
}

@media all and (min-width: 768px) {
	:root {
		--flex-wrapper-direction: row;
		--card-content-bottom: 0%;
	}
}

/* CARDS */
/*********/

.card-wrapper {
	display: flex;
}

.card {
	position: relative;
	overflow: hidden;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: center;
	gap: 1rem;
}

a.card {
	color: #000;
	cursor: pointer;
}

.card-brdr {
	border: 1px solid #c0c0c0;
}

.card-flex {
	display: flex;
	flex-direction: column;
}

.card-btm-img {
	justify-self: flex-end;
	align-self: flex-end;
}

.card-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
}

.card-img {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	min-height: 16rem;
}

.card-bg-img {
	object-fit: contain;
	width: 100%;
	height: auto;
}

.card-img-contain {
	object-fit: contain;
}

.card-img-circle {
	padding: 0rem;
	background: #fff;
	flex-grow: 1;
	display: flex;
	padding: 1rem;
}

.card-content {
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.card-content .primarybtn {
	align-self: flex-end;
}

/* FLEX COLS */
/*************/

.flex-wrapper {
	position: relative;
	display: flex;
	flex-direction: var(--flex-wrapper-direction);
}

.flex-wrap {
	flex-wrap: wrap;
	flex-direction: row;
}

.flex-item {
	flex-grow: 1;
}

@media all and (min-width: 768px) {
	.flex-50-desktop {
		flex-basis: calc(50% - 0.5rem);
	}
}

.grid-wrapper {
	display: grid;
	grid-template-columns: auto;
}

.flex-cols {
	display: flex;
	flex-direction: var(--flex-cols-flex-direction);
	gap: var(--flex-cols-gap);
	align-items: center;
}

.content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.content-image {
	width: 100%;
	height: auto;
}

.overlay-blk:before {
	background: rgba(0, 0, 0, 0.5);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}

.hover-pop:hover {
	transition: transform 150ms ease-out;
	transform: scale(1.05);
}

.section-bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -10;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.section-bg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.login-form-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
}

.login-form {
	margin: 0 auto;
	min-width: 20rem;
	max-width: 40rem;
	border-radius: var(--border-radius);
	padding: 2rem;
	position: relative;
	width: 100vw;
	max-width: 25rem;
}

.login-logo {
	text-align: center;
	padding-bottom: 1rem;
}

.login-logo img {
	width: 100%;
	max-width: 100px;
	height: auto;
}

.register-form {
	width: 100vw;
	max-width: 25rem;
}

.form-field {
	display: block;
	position: relative;
	flex-basis: 100%;
}

.form-field-even {
	flex-basis: 48.5%;
}

.form-field label {
	position: absolute;
	top: 0.76rem;
	left: 0.7rem;
	cursor: text;
	transition: all 0.3s ease;
	pointer-events: none;
}

.form-field input:focus + label,
.form-field textarea:focus + label,
.form-field input:disabled + label,
.form-field textarea:disabled + label,
.form-field input:valid + label,
.form-field textarea:valid + label {
	font-size: 70%;
	top: 0.2rem;
}

.form-field input:focus {
	border-color: var(--primary-color);
}

.error-message {
	background: var(--light-bg-color);
	border-radius: var(--border-radius);
	padding: 0.8rem;
	display: block;
	font-weight: 800;
	border: 2px solid var(--primary-color);
	display: none;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
	border-radius: 0.2rem;
	padding: 0.8rem 0.6rem 0rem 0.6rem;
	border: 2px solid #c0c0c0;
	background: #fff;
	outline: none;
	width: 100%;
	box-shadow: 0 0 2px rgb(0 0 0 / 5%) inset;
	color: #000;
	height: 3rem;
}

textarea {
	height: 10rem;
}

.primarybtn,
input[type="submit"] {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	padding: 0.8rem 1rem 0.8rem 1rem;
	height: 3rem;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: var(--border-radius);
	text-transform: uppercase;
	border: 2px solid var(--primary-color);
	text-align: center;
	cursor: pointer;
	line-height: 1.2;
	transition: all 300ms ease;
}

.primarybtn-blk {
	background: var(--dark-bg-color);
	border: 2px solid var(--dark-bg-color);
}

.primarybtn:hover,
input[type="submit"]:hover {
	opacity: 0.8;
}

.emptybtn {
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.emptybtn:hover {
	color: #000;
	border: 1px solid #000;
}

.emptybtn-white {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

@media all and (min-width: 768px) {
	.grid-wrapper-4 {
		grid-template-columns: auto auto auto auto;
	}

	.grid-wrapper-3 {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.grid-even {
		grid-template-columns: 4fr 6fr;
	}

	.grid-content-slim {
		max-width: 70%;
	}

	.flex-cols-lg {
		width: 60%;
		flex-basis: 60%;
	}

	.flex-cols-sm {
		width: 40%;
		flex-basis: 40%;
	}
}

@media all and (min-width: 1200px) {
	.grid-wrapper-3 {
		grid-template-columns: repeat(5, 1fr);
	}
}

footer {
	background: var(--dark-bg-color);
}

.footer-wrapper {
	display: flex;
	gap: var(--footer-wrapper-gap);
	justify-content: space-between;
	flex-direction: column;
}

.footer-logo {
	width: 180px;
}

.footer-logo img {
	width: 100%;
	height: auto;
}

.footer-links-wrapper {
	display: flex;
	gap: var(--footer-links-wrapper-gap);
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-links {
	width: var(--footer-links-width);
}

.footer-links ul {
	list-style: none;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: var(--text-body-xsm);
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-links h4 {
	margin-bottom: 1rem;
}

.footer-links li {
	margin-bottom: 0.6rem;
}

.footer-form-wrapper {
	display: flex;
	flex-direction: column;
	padding-top: 2rem;
}

.footer-form-wrapper label {
	margin-bottom: 0.4rem;
	width: 100%;
}

.footer-form-wrapper input,
.footer-form-wrapper textarea {
	width: 100%;
}

.social-links a svg {
	width: 2.4rem;
	height: auto;
}

.social-links a svg path,
.social-links a svg polygon {
	fill: var(--light-bg-color);
}

.social-links a:hover svg path,
.social-links a:hover svg polygon {
	opacity: 0.8;
}

@media all and (min-width: 768px) {
	.footer-wrapper {
		flex-direction: row;
	}

	.footer-form {
		width: 50%;
		border-left: 1px solid #c0c0c0;
		padding-left: 3rem;
	}
}

/* ADD TO CART */

.add-cart-back {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 20;
}

.add-cart-back-button {
	background: #fff;
	padding: 0.6rem 0.6rem;
	border-radius: 10rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	border: none;
	color: #000;
	cursor: pointer;
}

.add-cart-wrapper,
.checkout-wrapper {
	width: 100%;
	overflow: scroll;
	position: fixed;
	height: 100%;
	top: 0;
	left: 0;
}

.checkout-wrapper {
	padding: 0 2rem 0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.checkout-page {
	width: 100%;
	max-width: 26rem;
	display: flex;
	gap: 1rem;
	flex-direction: column;
}

.payment-options {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

.payment-options li {
	padding: 0.6rem 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #fff;
	border: 1px solid #c0c0c0;
	border-radius: 0.4rem;
}

.add-cart-image-wrapper {
	position: relative;
	min-height: 16rem;
}

.order-details {
	margin-top: 2rem;
	gap: 1rem;
	display: flex;
	flex-direction: column;
}

.order-detail {
	display: flex;
	justify-content: space-between;
}

.order-buttons {
	margin-top: 2rem;
	display: flex;
}

.order-buttons a {
	flex-grow: 1;
}

.add-cart-image {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.item-modifier-group-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.6em;
	padding: 1.6rem 0;
}

.item-modifier-group-name {
	font-size: var(--text-md);
	font-weight: 700;
}

.item-modifier-group-name span {
	font-size: var(--text-body);
	font-weight: 400;
	text-transform: uppercase;
}

.item-modifier-button {
	user-select: none;
	padding: 1.4rem;
	border: 1px solid #ccc;
	border-radius: 0.4rem;
	display: grid;
	text-align: left;
	align-content: center;
	cursor: pointer;
	outline: none;
}

.item-modifier-button span {
	pointer-events: none;
}

.button-radio {
	appearance: none;
	-webkit-appearance: none;
}

.button-radio-wrapper .item-modifier-button:has(input:checked) {
	border: 1px solid var(--dark-bg-color);
}

.item-modifier-button:hover {
	border: 1px solid var(--secondary-color);
}

.item-modifier {
	cursor: pointer;
	margin-bottom: 0.5rem;
}

.value-button-wrapper {
	border: 1px solid #c0c0c0;
	border-radius: var(--border-radius);
	overflow: hidden;
	height: 2.6rem;
	justify-content: space-between;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.value-button {
	font-size: var(--text-md);
	padding: 0.3rem 0.4rem 0.4rem 1rem;
	line-height: 0;
	border-radius: 0;
	border: none;
	background: #fff;
	font-weight: 400;
	color: #666;
	cursor: pointer;
}

.value-button:last-child {
	padding: 0.3rem 1rem 0.4rem 0.4rem;
}

input[type="number"].value-number {
	padding: 0rem;
	text-align: center;
	width: 2rem;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
	line-height: 0;
	height: auto;
}

.grid-modifiers {
	grid-template-columns: 1fr 1fr;
	column-gap: 0.5rem;
}

.add-cart-submit-group {
	grid-template-columns: auto 4fr;
}

.add-cart-submit-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem 0 1.4rem 0;
	box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
}

.add-cart-content {
	position: relative;
	display: block;
	padding: 4rem 2rem 50% 2rem;
	height: 100%;
}

.add-cart-submit {
	padding: 0rem 2rem 0rem 2rem;
}

.cart-item {
	padding: 1rem 0;
}

.cart-item:not(:last-child) {
	border-bottom: 1px solid #efefef;
}

.cart-item-remove-btn {
	cursor: pointer;
}

.cart-item-price {
}

.cart-item-img {
	display: flex;
	width: 10%;
	text-align: center;
}

.cart-item-description {
	width: 30%;
}

.cart-item-img img {
	object-fit: contain;
	max-height: 100px;
	max-width: 60px;
	margin: 0 auto;
}

.cart-list {
	background: #fff;
	padding-top: 2rem;
}

.cart-tray {
	padding: 2rem;
}

.cart-empty {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	text-align: center;
	padding: 0 2rem;
}

@media all and (min-width: 768px) {
	.cart-list {
		overflow-y: auto;
		position: fixed;
		height: 100%;
		top: 0;
		left: 0;
		width: 50%;
	}

	.cart-item-img img {
		object-fit: contain;
		max-height: 120px;
		max-width: 120px;
	}

	.cart-tray {
		left: 50%;
		width: 50%;
		top: 0;
		position: fixed;
		padding: 10% 10% 4rem 4rem;
	}

	.add-cart-wrapper {
		overflow: hidden;
	}
	.add-cart-content {
		padding: 4rem 20% 25% 3rem;
		overflow-y: scroll;
	}

	.add-cart-content-scroll {
		height: 100%;
	}

	.add-cart-submit {
		padding: 0rem 20% 0rem 3rem;
	}

	.grid-modifiers {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* MODALS */

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
}

.modal-overlay.modal-active {
	display: flex;
}

.modal {
	position: relative;
	background: #fff;
	border-radius: 0.4rem;
	width: 100vw;
	max-width: 30rem;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
}

.modal-close {
	position: absolute;
	right: 1rem;
	top: 1rem;
}

.modal-close-button {
	border: none;
	background: none;
	display: block;
	width: 2rem;
	height: 2rem;
}

.modal-close-button svg {
	width: 100%;
	height: auto;
}

.modal-header {
	padding: 1rem 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.05);
}

.modal-buttons {
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 1rem 2rem;
	align-self: flex-end;
	justify-self: end;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	gap: 0.8rem;
}

.modal-content {
	padding: 2rem 2rem;
	flex-grow: 1;
}

.product-page-title {
	margin: 0;
	padding: 0;
}

.product-condition-wrapper {
	display: flex;
	gap: 1rem;
	align-items: flex-end;
	height: 1rem;
}

.product-condition {
	background: var(--secondary-color);
	color: #fff;
	padding: 0.2rem 0.4rem;
	display: inline-block;
}

.product-price-msrp {
	text-decoration: line-through;
}

.product-wrapper {
	display: flex;
	flex-direction: var(--product-wrapper-flex-direction);
	gap: 1.4rem;
	padding: var(--product-wrapper-padding);
	margin: 0 auto;
	max-width: 1600px;
}

.product-image-wrapper {
	width: var(--product-image-wrapper-width);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
}

.product-image-zoom-wrapper {
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 300ms;
}

.product-image-main-wrapper:hover .product-image-zoom-wrapper {
	cursor: pointer;
	opacity: 1;
}

.product-description-wrapper {
	width: var(--product-description-wrapper);
	display: flex;
	gap: 1.4rem;
	padding: var(--product-description-wrapper-padding);
	flex-direction: column;
}

.product-image-main-wrapper {
	overflow: hidden;
	width: 100%;
	height: var(--product-image-main-wrapper);
	position: relative;
	border-radius: var(--product-image-main-wrapper-radius);
}

.product-image-tall {
	height: auto;
}

.product-image-tall img {
	max-width: 80%;
	margin: 0 auto;
	object-fit: contain;
}

.product-image-square img {
	margin: 0 auto;
	max-height: 100%;
	width: auto;
	object-fit: contain;
}

.product-image-main {
	width: auto;
	min-width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 100%;
	max-height: 100%;
	margin: 0 auto;
	object-fit: cover;
	display: block;
	border-radius: var(--product-image-main-wrapper-radius);
}

.product-thumbnail-scroll {
	overflow: scroll;
	position: relative;
	display: block;
	cursor: pointer;
}

.product-thumbnail-scroll-wrapper {
	position: relative;
}

.product-thumbnail-scroll::-webkit-scrollbar {
	display: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
/*
.product-thumbnail-scroll-wrapper:before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 3rem;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, rgba(250,250,250,1) 2%, rgba(250,250,250,0.8) 20%, rgba(250,250,250,0) 100%); 
  z-index: 1;
} */

.product-image-thumbnail-wrapper {
	list-style: none;
	display: flex;
	flex-direction: row;
	width: var(--product-image-thumbnail-wrapper-width);
	margin: 0;
	padding: 0;
}

.product-image-thumb {
	//flex: 0 0 var(--product-image-thumb-flex);
	flex: 0 0 80%;
	height: var(--product-image-thumb-height);
	cursor: pointer;
	overflow: hidden;
	display: block;
	position: relative;
	text-align: center;
	border-radius: var(--product-image-main-wrapper-radius);
}

.product-image-thumb-img {
	width: 100%;
	height: auto;
	min-height: 100%;
	max-width: 100%;
	width: auto;
	max-height: 100%;
	object-fit: cover;
	position: relative;
	cursor: pointer;
	display: block;
}

.product-meta-group {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 1rem;
}

.product-meta-wrapper {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
	border-bottom: 1px solid var(--light-bg-color);
	padding: 0rem 0 0.4rem 0;
}

.product-meta-title {
	text-transform: uppercase;
	font-weight: 500;
	width: 40%;
	text-align: right;
}

.product-price-wrapper {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

.product-price-wrapper div {
	display: flex;
	flex-direction: column;
}

.product-brand {
	position: relative;
	display: block;
	align-self: flex-end;
	max-width: 100px;
}
.product-brand-image {
	object-fit: contain;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	max-height: 40px;
}

.product-body-wrapper {
	border-top: 1px solid var(--light-bg-color);
}

.product-body-content {
	font-size: var(--text-body-sm);
	line-height: var(--text-body-sm-line-height);
}

.product-body-content ul {
	margin-left: 1rem;
}

.quickship-label:before {
	background: var(--primary-color);
	color: #fff;
	content: "Get it Quick!";
	position: absolute;
	right: 0;
	top: 0;
	padding: 0.4rem 1rem;
	text-transform: uppercase;
	font-weight: 600;
}

.product-color-selector-wrapper {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.product-color-selector {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 0.4rem;
	border: 1px solid #ccc;
}

.product-color-selector img {
	display: block;
	width: 100%;
	height: auto;
}

.product-color-selector.active {
	border: 2px solid #666;
}

.product-color-selector[aria-label]:focus:after,
.product-color-selector[aria-label]:hover:after {
	position: absolute;
	z-index: 1;
	top: -1.4rem;
	left: 50%;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	border-radius: 0.2em;
	padding: 0 0.7em;
	content: attr(aria-label);
	color: #fff;
	background: #000;
	font-size: 1em;
	line-height: 2em;
	text-align: left;
	transform: translate(-50%, -50%);
}

.product-button-wrapper {
	display: flex;
	flex-direction: row;
}

.product-button-wrapper input[type="number"] {
	width: 5rem;
}

.product-button {
	width: 100%;
	text-transform: uppercase;
	background: var(--primary-color);
}

.product-button:hover {
	opacity: 0.8;
	transition: all 300ms;
}
