@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&family=Inconsolata:wght@200;300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Socials';
  src: url('../fonts/social-media.otf');
}
@font-face {
  font-family: 'Social Squares';
  src: url('../fonts/font-social-media.ttf');
}

:root {
	--clr-primary: #393939;
	--clr-accent: #facc12;
	--clr-dark: #adadad;
	--clr-light: #f8f8f8;
	--clr-grey: #636363;
	--clr-white: #FFFFFF;

	--ff-cursive: 'Archivo', sans-serif;
	--ff-serif: 'Inconsolata', monospace;
	--ff-sans: 'Inconsolata', monospace;
	--ff-courier: courier-std, monospace;
	
}

*, *::before, *::after {
	box-sizing: border-box;
	transition: all .2s;
}

/* ================
   global styles
   ================ */

body {
	margin: 0;
	background: #f2f2f2;
}

a {
	text-decoration: none;
}

img {
	display: block;
}

.links-scale {
	opacity: 0.9;
}

.links-scale:hover {
	transform: scale(1.1);
	opacity: 1;
}
.links-fade {
	opacity: 0.8;
	color: var(--clr-light);
}

.links-fade:hover {
	opacity: 1;
}

.links-primary {
	color: var(--clr-primary);
}

.links-primary:hover {
	color: var(--clr-accent);
}

.links-dark {
	color: var(--clr-dark);
}

.links-dark:hover {
	color: var(--clr-accent);
}

.links-light {
	color: var(--clr-light);
}

.links-light:hover {
	color: var(--clr-accent);
}

.links-yellow {
	color: var(--clr-accent);
}

.links-yellow:hover {
	color: var(--clr-accent);
	text-decoration: underline;
}

.links-underline {
	color: var(--clr-light);
}

.links-underline:hover {
	color: var(--clr-light);
	text-decoration: underline;
}

/* ================
   components
   ================ */

input { 
	-webkit-border-radius: 0; 
}

button {
	background: var(--clr-primary);
	border: none;
	padding: 1em;
	font-size: 1rem;
	font-family: var(--ff-serif);
	color: var(--clr-light);
	font-weight: 300;
	cursor: pointer;
}
button:hover {
	background: var(--clr-accent);
	color: var(--clr-light);
}

.btn {
	padding: .5em 1em;
	background: transparent;
	font-family: var(--ff-serif);
	font-size: 1rem;
	color: var(--clr-accent);
	border: 1px dashed var(--clr-accent);
	border-radius: 5px;
	cursor: pointer;
}

.btn:hover {
	background: var(--clr-accent);
	color: var(--clr-light);
}

.yellow-btn {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	font-size: 2rem;
	font-family: var(--ff-cursive);
	color: var(--clr-accent);
	cursor: pointer;
}

.yellow-btn:hover {
	background: none;
	color: var(--clr-light);
}

.text-box {
	padding: .75em;
	background: transparent;
	border: 1px solid var(--clr-primary);
	font-size: .9rem;
	font-family: var(--ff-courier);
	color: var(--clr-primary);
	font-weight: 300;
	width: 100%;
	max-width: 500px;
}
.dark-text-box {
	padding: .75em;
	background: transparent;
	border: 1px solid var(--clr-dark);
	font-size: .9rem;
	font-family: var(--ff-courier);
	color: var(--clr-dark);
	font-weight: 300;
	width: 100%;
	max-width: 500px;
}

/* ================
   typography
   ================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

h1 {
	font-family: var(--ff-cursive);
	font-size: 1.4rem;
	font-weight: 300;
	letter-spacing: 3px;
	padding-bottom: .6em;
}

h2 {
	font-family: var(--ff-serif);
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: .5px;
}

h3 {
	font-family: var(--ff-cursive);
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 3px;
}

h4 {
	font-family: var(--ff-cursive);
	font-weight: 300;
	font-size: 1.4rem;
	letter-spacing: 3px;
}

h5 {
	font-family: var(--ff-serif);
	font-weight: 500;
	font-size: 1.1rem;
	letter-spacing: .1rem;
}

h6 {
	font-family: var(--ff-cursive);
	font-weight: 300;
	font-size: 1.1rem;
	letter-spacing: 3px;
}

p {
	font-family: var(--ff-serif);
	font-size: 1rem;
	font-weight: 200;
	letter-spacing: .05rem;
}

@media screen and (min-width: 600px) {
	h1 {
		font-size: 3rem;	
		font-weight: 400;
		padding-bottom: .5em;
	}
	h2 {
		font-size: 1rem;	
	}
	p {
		font-size: .9rem;
	}
}

/* ================
   layout
   ================ */

header {
	text-align: left;
	margin: 0 auto -80px;
	position: sticky;
	top: 0;
	padding: .5em .25em;
	width: 100%;
	background: rgba(25, 25, 25,0.8);
	box-shadow: 0px 10px 10px -7px rgba(0,0,0,.4);
	z-index: 999;
}

header.sticky {
  	
}

header:hover {
	background: rgba(25, 25, 25,1.0);
}

.store-header {
	font-family: var(--ff-cursive);
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: 300;
	color: white;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.logo {
	margin: 1em 0;
	transform: scale(.9);
}

.banner {
	height: 60px;
	width: 100%;
	background: var(--clr-primary);
	color: var(--clr-light);
	font-family: var(--ff-sans);
	letter-spacing: 2px;
	font-size: .85rem;
	font-weight: 200;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 9999;
}

.banner .shipping {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .2em;
}

.banner .loyalty {
	display: none;
}

.cart-qty {
	position: relative;
}

.cart-qty .child {
	position: absolute;
	top: -1em;
	right: -.5em;
    height: 20px;
    width: 20px;
    background: var(--clr-accent);
    border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: .9rem;
	font-family: var(--ff-sans);
	font-weight: 500;
	color: var(--clr-light);
	z-index: 999;
}

.search-bar {
	position: absolute;
	top: -2.5px;
	width: 100%;
	height: 6em;
	background: rgba(0,0,0,0.9);
	transform: scale(1,0);
	transform-origin: top;
	z-index: 9999;
}


.search-bar-fade {
	display: none;
}
.search-text {
	display: block;
	position: absolute;
	width: 60%;
	top: 30%;
	right: 4em;
	background: none;
	border: none;
	text-align: right;
	font-size: 1.4rem;
	font-family: var(--ff-serif);
	color: var(--clr-light);
}
.search-button {
	display: block;
	position: absolute;
	top: 32.5%;
	right: 3em;
	background: none;
	border: none;
	transform: scale(1.3);
	color: var(--clr-light);
}

.search-toggle:checked ~ .search-bar {
	transform: scale(1,1);
	transition-delay: .3s;
}
.search-toggle:checked ~ .search-bar-fade {
	display: block;
	position: absolute;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.3);
}
.cart-popup {
	position: fixed;
	padding: .5em 1em;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--clr-primary);
	transform: scale(0,1);
	transform-origin: right;
	color: var(--clr-light);
	z-index: 9999;
}
.cart-popup div {
	opacity: 0;
}
.cart-popup .content::-webkit-scrollbar {
  width: 10px;
}

/* Scroll Track */
.cart-popup .content::-webkit-scrollbar-track {
  background: #1f1f1f; 
}
 
/* Scroll Handle */
.cart-popup .content::-webkit-scrollbar-thumb {
  background: var(--clr-light); 
}
.cart-popup .header {
	width: 100%;
	padding: .5em 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.cart-popup .content {
	width: 100%;
	padding: .5em 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: .5em;
	flex-grow: 1;
	background: var(--clr-primary);
	overflow-y: auto;
}

.cart-popup .child {
	width: 95%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-gap: .4em;
	height: 95px;
}
.cart-popup .child .cell-1 {
	width: 130px;
	position: relative;
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	align-self: center;
	justify-self: center;
}
.cart-popup .child .cell-2 {
	position: relative;
	grid-column: 2 / 4;
	grid-row: 1;
	text-align: left;
	align-self: start;
}
.cart-popup .child a {
	text-transform: uppercase;
}
.cart-popup .child i {
	font-size: .8rem;
	color: darkgray;
}
.cart-popup .child .cell-3 {
	position: relative;
	grid-column: 2 / 3;
	grid-row: 2;
	text-align: left;
}
.cart-popup .child .cell-4 {
	position: relative;
	grid-column: 3 / 4;
	grid-row: 2;
	text-align: right;
}

.cart-popup .footer {
	position: relative;
	bottom: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: .25em;
}
.cart-popup .subtotal {
	width: 100%;
	padding: .5em 0 .1em;;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--clr-light);
	font-size: 1.6rem;
}
.cart-popup .checkout {
	height: 3em;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--clr-light);
	border-radius: 5px;
	color: var(--clr-primary);
	cursor: pointer;
}
.cart-popup .footer a {
	text-decoration: none;
}
.cart-toggle:checked ~ .cart-popup {
	transform: scale(1,1);
	transition-delay: .3s;
}
.cart-toggle:checked ~ .cart-popup div {
	opacity: 1;
	transition-delay: .7s;
}

.close {
	position: absolute;
	top: .25em;
	right: .35em;
	color: var(--clr-light);
	font-size: 1.8rem;
	cursor: pointer;
}

@media screen and (min-width: 600px) {
	.cart-popup {
		width: 30em;
	}
	.banner {
		font-size: .85rem;
	}
	.banner .loyalty {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: .2em;
	}
}
@media screen and (min-width: 850px) {
	header {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
	}
	.logo {
		transform: scale(1);
		margin: 1em;
	}
	.search-bar {
		height: 8em;
	}
	.search-text {
		width: 75%;
		font-size: 2.2rem;
	}
	.search-button {
		top: 37.5%;
		right: 5em;
		transform: scale(1.6);
	}
}

.nav-icons {
	position: absolute;
	top: 32%;
	right: 3.9em;
	gap: 5em;
	color: white;
	font-size: 1.1rem;
}

.nav-icons i {
	margin-left: .2em;
	opacity: 0.9;
	cursor: pointer;
	color: white;
}

.nav-toggle-label {
	position: absolute;
	top: 0;
	right: 1.5em;
	height: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
	display: block;
	background: white;
	height: 2px;
	width: 1.6em;
	border-radius: 3px;
	position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
	content: '';
	position: absolute;
}

.nav-toggle-label span::before {
	bottom: 8px;
}

.nav-toggle-label span::after {
	top: 8px;
}

nav {
	position: absolute;
	text-align: left;
	top: 100%;
	left: 0;
	background: rgba(25, 25, 25,1.0);
	font-family: var(--ff-sans);
	width: 100%;
	font-size: 1rem;
	box-shadow: 0px 10px 10px -7px rgba(0,0,0,.4);
	transform: scale(1, 0);
	transform-origin: top;
	transition: transform 200ms ease-in-out;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
}

nav ul li, nav ul ul li {
	display: block;
}
nav ul ul {
	position: static;
	display: none;
	opacity: 1;
	visibility: visible;
}

nav li {
	margin: 0 0 .75em .75em;
}

nav a {
	color: rgba(255, 255, 255,0.9);
	text-transform: uppercase;
	text-decoration: none;
}

nav a:hover {
	color: rgba(255, 255, 255,1.0);
}

input {
	display: none;
}

.show {
	display: block;
	color: white;
	text-transform: uppercase;
	cursor: pointer;
}

.show:hover {
	color: var(--clr-accent);
}

.nav-toggle:checked ~ nav ul {
	opacity: 1;
	transition: opacity 200ms ease-in-out 250ms;
}

.nav-toggle:checked ~ nav {
	transform: scale(1, 1);
}

.nav-toggle:checked ~ header {
	transform: scale(1, 1);
}

.show + a {
	display: none;
}

[id^=btn]:checked + ul {
	display: block;
}

@media screen and (min-width: 850px) {
	 .show,.nav-toggle-label {
		display: none;
	}
	.show + a {
		display: block;
	}
	nav {
		all: unset;
		position: relative;
		right: -3em;
		text-align: left;
		font-family: var(--ff-sans);
		font-size: 1rem;
		display: flex;
		justify-content: center;
	}
	nav ul{
		opacity: 1;
		display: flex;
		flex-direction: row;
		height: 100%;
	}
	nav ul li {
		height: 100%;
		display: flex;
		align-items: center;
	}
	nav ul ul {
		all: unset;
		position: absolute;
		display: flex;
		flex-direction: column;
		padding:  .5em 1em 1em  0;
		margin: 0;
		top: 100%;
		background: rgba(25, 25, 25,1.0);
		box-shadow: 0px 10px 10px -7px rgba(0,0,0,.4);
		min-width: 150px;
		transform: scale(1, 0);
		transform-origin: top;
		transition: transform 80ms ease-in-out;
	}
	nav ul ul a {
		opacity: 0;
		transition: opacity 100ms ease-in-out;
	}
	nav ul li:hover > ul a {
		opacity: 1;
		transition: opacity 130ms ease-in-out 150ms;
	}
	nav ul li:hover > ul {
		transform: scale(1, 1);
	}
	.nav-icons {
		all: unset;
		position: relative;
		right: -.5em;
		color: white;
		display: flex;
		align-items: center;
		font-size: 1.2rem;
	}
	.nav-icons i {
		margin-left: 1em;
	}
}

/* footer */

footer {
	display: flex;
	flex-direction: column;
	font-family: var(--ff-sans);
}

footer .container {
	position: relative;
	width: 100%;
	padding: 2em;
	color: var(--clr-grey);
	display: flex;
	flex-direction: column-reverse;
	background-image: url("images/logo-icon-fade.png");
	background-size: cover;
	background-position: top;
}
footer .copyright {
	width: 100%;
	padding: 1em 2em;
	border-top: 1px dashed rgba(90, 90, 90, 0.2);
	color: var(--clr-grey);
}
footer .parent.left {
	width: 100%;
	padding: 1em 0 0;
	display: flex;
	flex-direction: column;
}
footer .parent.right {
	width: 100%;
	padding: 1em 0;
	display: flex;
	flex-direction: column;
}
footer .child {
	width: 100%;
	display: flex;
}

footer .child h1 {
	font-size: .9rem;
	font-family: var(--ff-serif);
	letter-spacing: .05rem;
}

footer .child ul {
	list-style: none;
	width: 50%;
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.4rem;
	font-size: .8rem;
	padding: 0 1em 0 0;
	margin: 0 0 1em 0;
}
footer .child ul li {
	font-weight: 100;
}
footer .login {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: .4em;
}
footer .parent h4 {
	font-family: var(--ff-courier);
	font-weight: 500;
	color: var(--clr-grey);
	font-size: 1rem;
	padding: 0 0 .75em;
}
footer .parent p {
	font-size: .7rem;
}
footer .social {
	width: 90%;
	padding: .5em;
}

footer .social ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
}
footer .social a {
	font-family: 'Social Squares';
	font-size: 1.6rem;
	color: var(--clr-grey);
}
footer .social a:hover {
	transform: scale(1.1);
}
footer input {
	display: block;
}
footer .text-box {
	padding: .6em;
	background: transparent;
	border: 1px solid var(--clr-grey);
	font-size: .8rem;
	font-family: var(--ff-courier);
	color: var(--clr-grey);
	font-weight: 300;
	width: 100%;
}
footer button {
	grid-column: 1 / span 2;
	width: 100%;
	background: transparent;
	border: 1px dashed var(--clr-primary);
	color: var(--clr-primary);
	font-family: var(--ff-serif);
	font-size: .8rem;
	padding: .6em;
	cursor: pointer;
}
footer button:hover {
	background: var(--clr-primary);
	color: var(--clr-light);
}
footer .logout {
	width: 100%;
	background: transparent;
	border: 1px dashed var(--clr-accent);
	color: var(--clr-accent);
	font-family: var(--ff-serif);
	font-size: .8rem;
	text-decoration: none;
	text-align: center;
	padding: .6em;
	cursor: pointer;
}
footer .logout:hover {
	background: var(--clr-accent);
	color: var(--clr-light);
}
@media screen and (min-width: 850px) {
	footer .container  {
		flex-direction: row;
		background-image: url("images/logo-icon-fade-desktop.png");
		background-position: right;
	}
	footer .parent.left {
		width: 60%;
		padding: 1em 0;
		flex-direction: row;
	}
	footer .parent.right {
		width: 40%;
	}
	footer .child {
		width: 50%;
	}
	footer .child ul {
		margin: 0;
	}
}

.page-break {
	width: 100%;
	padding: 2em 3em;
	background: var(--clr-primary);
	text-align: center;
	color: var(--clr-light);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.page-break a {
	color: var(--clr-light);
	font-family: 'Social Squares';
	font-size: 2rem;
}
.page-break ul {
	padding: 0;
	list-style: none;
	display: flex;
	gap: 2.5em;
}
@media screen and (min-width: 800px) {
	.page-break {
		flex-direction: row;
		padding: 2em 2em;
	}
}

/* ================
   carousel
   ================ */

.carousel {
    height: 80vh;
    width: 100%;
    margin: 0 auto;
}

#carousel__track {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.background {
    background: red;
}

.carousel__slider {
    height: 100%;
    display: flex;
    width: 400%;
	color: white;
    transition: all 0.3s;
}
.carousel__slider div {
	padding: 0 2em;
    flex-basis: 100%;
    display: flex;
	flex-direction: column;
    justify-content: center;
	text-align: center;
    align-items: center;
}
.carousel__slider i {
	color: var(--clr-light);
	font-size: 2.4rem;
}

.carousel__slider h1 {
	margin: .2em 0 -.3em;
}

.carousel__slider button {
	margin-top: 1.5em;
}

.carousel__controls .carousel__arrow {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 888;
}
.carousel__controls .carousel__arrow::after {
	content: '';
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	border-radius: 50%;
	outline: 1px dashed red;
	outline-offset: -.5rem;
	z-index: 999;
}

.carousel__controls .carousel__arrow i {
	color: var(--clr-light);
    font-size: 2.6rem;
	margin-left: .05em;
}
.carousel__controls .carousel__arrow i:hover {
	color: var(--clr-accent);
}
.carousel__arrow.left {
    left: 1em;
}
.carousel__arrow.right {
    right: 1em;
}
.carousel__controls ul {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.carousel__controls ul li {
    width: 14px;
    height: 14px;
    border-radius: 50px;
	border: 1px solid white;
    margin: .5em;
    padding: 0;
    background: transparent;
    transform: scale(.5);
    cursor: pointer;
}
.carousel__controls ul li.selected {
    background: var(--clr-white);
    transform: scale(1);
    transition: all .2s;
    transition-delay: .3s;
}
.slide-1,
.slide-2,
.slide-3,
.slide-4{
	background: scroll no-repeat center center;
	background-size: cover;
}

.slide-1 {
	background-image: url('../images/1.jpg');
}
.slide-2 {
	background-image: url('../images/2.jpg');
}
.slide-3 {
	background-image: url('../images/3.jpg');
}
.slide-4 {
	background-image: url('../images/gear.jpg');
}

@media screen and (min-width: 700px) {
	.carousel {
		height: 100vh;
	}
	.carousel__slider div {
		padding: 0 4em;
	}
	.carousel__button {
		bottom: 25%;
	}
	.carousel__controls .carousel__arrow {
		top: 50%;
	}
	.carousel__slider i {
		color: var(--clr-light);
		font-size: 2.4rem;
	}
}

/* video */

.video-container {
    height: 450px;
    width: 100%;
    position: relative;
	border-top: 3em solid var(--clr-primary);
	border-bottom: 3em solid var(--clr-primary);
}

.video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}


/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  	z-index: 1;
	padding: 4em 3em;
  	position: relative;
  	color: var(--clr-light);
	font-size: 1rem;
	font-family: var(--ff-serif);
	letter-spacing: .5px;
	font-weight: 200;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
@media screen and (min-width: 700px) {
	.video-container {
		height: 700px;
		border-top: 5em solid var(--clr-primary);
		border-bottom: 5em solid var(--clr-primary);
	}
	.video-container .caption {
		font-size: 1.6rem;
		padding: 4em 5em;
	}
}

.notice {
	position: relative;
	width: 100%;
	padding: 2em 2em 2em;
	background: var(--clr-primary);
	text-align: center;
	color: var(--clr-light);
}

.notice-light {
	position: relative;
	width: 100%;
	padding: 2em 2em 2em;
	background: var(--clr-light);
	text-align: center;
	color: var(--clr-primary);
}

.latest-catches {
	position: relative;
	width: 100%;
	padding: 8em 2em 3em;
	background: var(--clr-light);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1em;
}
.latest-catches::after {
	content: 'LATEST CATCH REPORTS';
	position: absolute;
	width: 100%;
	top: 1.5em;
	left: 0;
	padding: 0 2em;
	text-align: center;
	font-family: var(--ff-serif);
	font-size: 1.6rem;
	letter-spacing: .1rem;
}
.latest-catches .child {
	width: 100%;
}
.latest-catches img {
	width: 100%;
	height: auto;
}
.latest-catches strong {
	font-weight: 500;
}

@media screen and (min-width: 700px) {
	.notice {
		padding: 3em 4em 3em;
	}
	 .latest-catches {
		flex-direction: row;
		padding: 8em 4em 6em;
		gap: 5em;
	}
	.latest-catches::after {
		top: 1.25em;
		font-size: 2rem;
	}
}

/* featured */

.featured {
	background: var(--clr-white);
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.featured .child-1,
.featured .child-2{
	padding: 1em;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.featured .item-1 {
	position: relative;
	background: var(--clr-light);
	height: 18em;
	width: 90%;
	margin: 1em;
}
.featured .text {
	padding: 2em;
	text-align: left;
	height: auto;
}
.featured .item-2 {
	position: relative;
	background: var(--clr-light);
	height: 14em;
	width: 90%;
	margin: 1em;
}
.featured .item-1 .overlay,
.featured .item-2 .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--clr-white);
    background: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    visibility: hidden;
    opacity: 0;
	cursor: pointer;
    transition: all .15s ease-out;
}

.featured .item-1:hover .overlay,
.featured .item-2:hover .overlay {
    visibility: visible;
    opacity: 1;
    transition: all .2s ease-in;
}

@media screen and (min-width: 500px) {
	.featured .child-1 {
		padding: 2em;
		flex-direction: row;
	}
	.featured .item-1 {
		width: 47%;
	}
}

@media screen and (min-width: 700px) {
	.featured {
		padding: 2em;
	}
	.featured .child-2 {
		padding: 2em;
		flex-direction: row;
	}
	.featured .item-2 {
		width: 30%;
		height: 10em;
	}
}
/* subscribe */

.subscribe {
	position: relative;
	width: 100%;
	padding: 2em;
	background: var(--clr-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1em;
}
.subscribe .header {
	width: 70%;
	text-align: center;
}
.subscribe .text {
	width: 90%;
	margin: 0;
	font-size: .9rem;
	letter-spacing: .5px;
	text-align: center;
}

#newsForm {
	width: 60%;
}
#email_container {
	width: 100%;
	display: flex;
}

.subscribe input {
	display: block;
}

.subscribe button {
	width: 15%;
	border: 1.5px solid var(--clr-primary);
	background: var(--clr-primary);
	color: var(--clr-light);
	display: flex;
	justify-content: center;
	cursor: pointer;
	align-items: center;
}

.subscribe .text-box {
	padding: 1.25em;
	border: 1.5px solid var(--clr-primary);
	background: transparent;
	font-size: .7rem;
	font-family: var(--ff-courier);
	color: var(--clr-primary);
	font-weight: 400;
	width: 85%;
}
@media screen and (min-width: 900px) {
	.subscribe {
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
	}
	.subscribe .header {
		width: 25%;
	}
	.subscribe .text {
		width: 40%;
		text-align: left;
	}

	#newsForm {
		width: 30%;
	}
}

/* content */

.content-hero {
	background: scroll no-repeat center center;
	background-size: cover;
	height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--clr-light);
}
.content-hero h1 {
	font-size: 3.2rem;
	text-transform: uppercase;
}

/* content */

.content {
	position: relative;
	padding: 3em 2em;
	display: flex;
	width: 100%;
	background: var(--clr-white);
}

.content input {
	display: block;
}

/* dashboard */

.dashboard-parent {
	display: flex;
	width: 100%;
	flex-direction: column;
	background: var(--clr-white);
}
.dashboard-login {
	display: flex;
	width: 100%;
	max-width: 600px;
	flex-direction: column;
}

.dashboard {
	position: relative;
	padding: 3em 2em;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.dashboard h4 {
	color: var(--clr-dark);
	padding: 1em 0 0;
}
.dashboard .form-field {
	font-size: .9rem;
}
.dashboard p {
	font-size: 1rem;
}
.dashboard-menu {
	background: rgba(90, 90, 90, 0.04);
	box-shadow: 0px 10px 10px -7px rgba(90,90,90,.2);
	width: 100%;
	min-width: 280px;
	height: 260px;
	padding: .75rem .5rem;
	font-family: var(--ff-serif);
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--clr-primary);
}

.dashboard-menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .3em;
}

.dashboard-menu a {
	color: var(--clr-primary);
}
.dashboard-menu a:hover {
	color: var(--clr-accent);
}

.dashboard-content {
	margin: 2em 0 0 0;
	width: 100%;
	padding: 1em;
	display: flex;
	flex-direction: column;
}
.dashboard-content a {
	color: var(--clr-grey);
}
.dashboard-content a:hover {
	text-decoration: underline;
}
.dashboard input {
	display: block;
}
.dashboard button {
	margin: 1em 0 0;
	padding: 1em 1.25em;
	background: var(--clr-primary);
	border: none;
	font-size: .9rem;
	font-family: var(--ff-serif);
	color: var(--clr-light);
	cursor: pointer;
}
.address {
	display: flex;
	flex-direction: column;
}
.address .child {
	width: 100%;
	margin: 1em 0 0 0;
}

.dashboard .order-history {
	width: 95%;
  	display: grid;
  	grid-template-columns: 15% 27.5% 17.5% 22.5% 17.5%;
	grid-gap: .75em;
	margin: 0 0 .75em 0;
	font-family: var(--ff-serif);
	font-size: .8rem;
	font-weight: 300;
	align-items: center;
}

.dashboard .order-history .button {
	background: var(--clr-primary);
	color: var(--clr-light);
	padding: .4em .8em;
	border-radius: 5px;
	font-weight: 500;
	font-size: .9rem;
}

.dashboard .order-summary {
	width: 95%;
  	display: grid;
  	grid-template-columns: auto 70px 70px;
	grid-gap: .75em;
	margin: 0 0 .75em 0;
	font-family: var(--ff-serif);
	font-size: .8rem;
	font-weight: 300;
}

.dashboard .cc-child {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5em 0;
}

.dashboard .cc-product {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: .5em 0;
}

.dashboard .cc-subtotal {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: .5em 0;
}
.dashboard .cart-summary .child {
	padding: .15em 0;
	font-family: var(--ff-serif);
	font-size: .9rem;
}
.dashboard .cart-summary .align-right {
	text-align: right;
}

.dashboard .delivery-details {
	

	width: 95%;
	margin: 3em 0 0;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.dashboard .delivery-details h1 {
	font-family: var(--ff-serif);
	font-size: .9rem;
	font-weight: 500;
}
.dashboard .notes {
	font-family: var(--ff-serif);
	font-size: .8rem;
	font-weight: 200;
}


@media screen and (min-width: 800px) {
	.dashboard {
		padding: 3em 5em;
		flex-direction: row;
	}
	.dashboard-menu {
		width: 25%;
	}
	.dashboard-content {
		margin: 0;
		width: 70%;
	}
	.address {
		flex-direction: row;
		justify-content: space-between;
	}
	.address .child {
		width: 45%;
		margin: 0;
	}
}
@media screen and (min-width: 850px) {
	.dashboard .delivery-details {
		flex-direction: row;
	}
}
.messages {
	width: 100%;
	background: rgba(90, 90, 90, 0.05);
	box-shadow: 0px 10px 10px -7px rgba(90,90,90,.2);
	padding: .3em 1.5em;
	display: flex;
	align-items: center;
	z-index: 888;
}
.messages i {
	margin-right: .5em;
	font-size: 1.2rem;
}
.messages p {
	font-size: .8rem;
}

/* ================
   store layout
   ================ */

/* quantity */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.number-input {
	width: 40%;
    border: none;
    display: inline-flex;
}

.number-input,
.number-input * {
    box-sizing: border-box;
}

.number-input button {
    outline:none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    cursor: pointer;
    margin: 0;
    position: relative;
    padding:0;
}

.number-input button:before,
.number-input button:after {
    display: inline-block;
    position: absolute;
    content: '';
    width: 0.5rem;
    height: 2px;
    background-color: var(--clr-primary);
    transform: translate(-50%, -50%);
}
.number-input button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
	border-radius: 5px;
    font-family: var(--ff-serif);
	font-size: .9rem;
    max-width: 4.5rem;
    padding: .7rem;
    border: 0;
    text-align: center;
    outline: none;
}

/* products */

.product {
	width: 100%;
	padding: 8em 2em 2em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1em;
	background: var(--clr-white);
	color: var(--clr-primary);
}

.product input {
	display: block;
}

.product .child {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.product .grey {
	background: var(--clr-light);
	padding: 2em;
}

.product .form {
	padding: 2em .5em;
	display: flex;
	flex-direction: column;
}
.product .dropdown {
	position: relative;
	-webkit-appearance: none;
    -moz-appearance: none;
	appearance: none;       /* Remove default arrow */
	background: transparent;
	width: 100%;
	padding: .6em;
	border: 1px solid var(--clr-primary);
	border-radius: 5px;
	font-size: .9rem;
	font-family: var(--ff-serif);
	color: var(--clr-primary);
	font-weight: 300;
	cursor: pointer;
}

.product .form .box {
	position: relative;
	margin: 0 0 .75em 0;
}
.product .form .arrows {
	position: absolute;
	color: var(--clr-primary);
	top: 50%;
	transform: translateY(-50%);
	right: .5em;
	font-size: 1.8rem;
}

.product .form .text-box {
	grid-column: 1 / 2;
	grid-row: 3;
	width: 40%;
	background: transparent;
	padding: .7em;
	border: none;
	border-radius: 5px;
	text-align: center;
	font-size: 1rem;
	font-family: var(--ff-serif);
	color: var(--clr-primary);
	font-weight: 500;
}

.product img {
	width: 100%;
	height: auto;
	border: 1px solid var(--clr-light);
}

.product .add {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.product .btn-holder {
	width: 57%;
}

.product .back {
	padding: 1em 0 0;
	color: var(--clr-primary);
	font-size: 1.2rem;
	font-family: var(--ff-serif);
	font-weight: 300;
}

.container-items {
	position: relative;
	margin: 0 auto;
    width: 100%;
	padding: 3em;
}
#items {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.items_slider {
	height: 100%;
    display: flex;
    width: 300%;
	color: white;
    transition: all 0.3s;
}

#items .item {
	width: 50%;
  text-align: center;
  padding: 10px;
}

#items .item h2,
#items .item h3 {
  margin: 0;
}

#items .item img {
  width: 100%;
}

.f_left {
	position: absolute;
	top: 5em;
	left: 0;
	color: red;
	cursor: pointer;
}

.f_right {
	position: absolute;
	top: 5em;
	right: 0;
	color: red;
	cursor: pointer;
}

@media screen and (min-width: 700px) {
	.items_slider {
		width: 150%;
	}
	#items .item {
		width: 25%;
	}
}

@media screen and (min-width: 500px) {
	.product .child {
		width: 80%;
	}
}

@media screen and (min-width: 850px) {
	.product {
		flex-direction: row;
		justify-content: space-between;
	}
	.product .child {
		width: 47.5%;
	}
}

/* categories */

.store-header {
	padding: 10em;
	text-align: center;
	color: white;
}

.store-hero {
	padding: 10em;
	text-align: center;
	color: var(--clr-primary);
	background: var(--clr-white);
}

.store {
	padding: 4em 3em 2em;
	color: var(--clr-primary);
	background: var(--clr-white);
}

.category-header {
	position: relative;
	padding: 16em 2em 4em;
	display: flex;
	justify-content: space-between;
	color: white;
}

.category-title {
	position: absolute;
	top: 3.4em;
	left: .6em;
	font-family: var(--ff-cursive);
	font-size: 3.4rem;
	font-weight: 500;
	letter-spacing: 3px;
	padding-bottom: .6em;
	text-transform: uppercase;
}

.category-header span {
	font-family: var(--ff-serif);
	font-size: 1rem;
	font-weight: 200;
	letter-spacing: .05rem;
}

.category-child-left {
	padding: .5em;
	width: 60%;
}

.category-child-right {
	padding: .5em;
	width: 35%;
}

.product-grid {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.product-tile {
	width: 100%;
	padding: 0 0 1em;
}

.product-child {
	width: 100%;
}

.product-child img {
	width: 100%;
	height: auto;
	border: 1px solid var(--clr-light);
	margin-bottom: 1.5em;
}

.product-child span {
	font-family: var(--ff-serif);
	font-size: .95rem;
	font-weight: 500;
	letter-spacing: .05rem;
	text-transform: uppercase;
}

@media screen and (min-width: 500px) {
	.product-tile {
		width: 50%;
		padding: 1em;
	}
}
	
@media screen and (min-width: 750px) {
	.product-tile {
		width: 33.33%;
		padding: 1em;
	}
}
	
/* cart */

.cart {
	padding: 1em;
	width: 100%;
	background: var(--clr-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-parent {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 2em;
	background: rgba(90, 90, 90, 0.04);
	color: var(--clr-primary);
}

.cart-container img {
	width: 100%;
	height: auto;
}

.cart-container {
	width: 100%;
  	display: grid;
  	grid-template-columns: 20px auto 70px 60px 70px;
	grid-gap: .75em;
	margin: 0 0 .75em 0;
	font-family: var(--ff-sans);
	font-size: 1.1rem;
}

.cart-container span {
	font-size: .9rem;
	color: darkgray;
}
.cart-container i {
	font-size: 1.4rem;
	font-weight: 700;
	color: red;
}
.cart-container input {
	display: block;
}
.cart-parent .cart-form {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.cart-container .text-box {
	padding: .75em;
	background: var(--clr-light);
	border: none;
	border-radius: 5px;
	font-size: .8rem;
	font-family: var(--ff-serif);
	color: var(--clr-grey);
	font-weight: 300;
	text-align: center;
	width: 80%;
}
.cart-parent .messages {
	background: rgba(70,70,70,0.3);
	box-shadow: none;
	width: 100%;
	padding: 1.5em 2em;
	margin: 0 0 2em 0;
	font-size: .8rem;
	font-weight: 300;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cart-parent .messages span {
	width: 75%;
}

.cart-container .cc-child {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5em 0;
}

.cart-container .cc-product {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	padding: .5em 0;
}
.cart-container .cc-img {
	display: none;
}
.cart-summary {
	width: 95%;
  	display: grid;
  	grid-template-columns: auto auto;
	grid-gap: .75em;
	font-family: var(--ff-serif);
	font-size: 1rem;
}
.cart-summary .child {
	padding: .15em 0;
}
.cart-summary .align-right {
	text-align: right;
}
.cart-summary p {
	margin: 0 0 .25em 0;
	font-family: var(--ff-cursive);
	font-size: 1rem;
}

@media screen and (min-width: 700px) {
	.cart-parent {
		width: 80%;
	}
	.cart-container {
		grid-template-columns: 50px 60px auto 70px 60px 70px;
	}
	.cart-container .cc-img {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: .5em 0;
	}
}

/* Checkout */


.checkout {
	padding: 1em;
	width: 100%;
	background: var(--clr-light);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.checkout input {
	display: block;
}
.address-container {
	width: 80%;
	position: relative;
	padding: 2em 1em;
	background: rgba(90, 90, 90, 0.04);
	color: var(--clr-primary);
	margin: 0 0 3em;
}
.order-container {
	width: 80%;
	position: relative;
	padding: 2em 1em;
	background: rgba(90, 90, 90, 0.04);
	color: var(--clr-primary);
}
.checkout .btn {
	background: transparent;
	border: none;
	font-family: var(--ff-serif);
	color: var(--clr-primary);
	font-size: .9rem;
	font-weight: 300;
	padding: .5em 0;
}
.characters {
	font-family: var(--ff-serif);
	font-size: .9rem;
	font-weight: 300;
	padding: .5em 0;
}
.checkout .btn:hover {
	color: var(--clr-accent);
}
.checkout .content {
  padding: 0 1em;
  max-height: 0;
  overflow: hidden;
	display: flex;
	flex-direction: column;
	background: transparent;
  transition: max-height 0.3s ease-out;
}

.checkout .order-summary {
	width: 100%;
  	display: grid;
  	grid-template-columns: auto 70px 70px;
	grid-gap: .75em;
	margin: 0 0 .75em 0;
	font-family: var(--ff-serif);
	font-size: .8rem;
	font-weight: 300;
}

.checkout .cc-child {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5em 0;
}

.checkout .cc-product {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: .5em 0;
}

.checkout .cc-subtotal {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: .5em 0;
}
.checkout .cart-summary {
	width: 100%;
  	display: grid;
  	grid-template-columns: auto auto;
	grid-gap: .75em;
	font-family: var(--ff-serif);
	font-size: .9rem;
	font-weight: 300;
}
.checkout .cart-summary .child {
	padding: .15em 0;
}
.checkout .cart-summary .align-right {
	text-align: right;
}
.checkout .cart-summary p {
	margin: 0 0 .25em 0;
	font-family: var(--ff-serif);
	font-size: .9rem;
}

.stripe-btn {
	background: var(--clr-primary);
	width: 100%;
	height: 34px;
	line-height: 10px;
	border: none;
	border-radius: 5px;
	padding: 1em;
	font-size: .8rem;
	font-family: var(--ff-serif);
	color: var(--clr-light);
	font-weight: 300;
	cursor: pointer;
}
.pay-options {
	padding: 1em 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.pay-options div {
	width: 27.5%;
	margin: 0 .5em;
}

/* payment-flow */

.dot-container::before {
	content: '';
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: var(--clr-dark);
	z-index: -1;
}
.dot-container {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 99;
}
.dot {
  	height: 32px;
  	width: 32px;
  	background-color: var(--clr-white);
	border: 1px solid var(--clr-dark);
  	border-radius: 50%;
	color: var(--clr-dark);
	display: flex;
	justify-content: center;
	align-items: center;
}

.highlighted-dot {
  	height: 32px;
  	width: 32px;
  	background-color: var(--clr-white);
	border: 1px solid var(--clr-primary);
  	border-radius: 50%;
	color: var(--clr-primary);
	display: flex;
	justify-content: center;
	align-items: center;
}

.dot-container span {
	font-family: var(--ff-serif);
	font-size: .9rem;
	font-weight: 500;
}

.faded-text {
	
}

/* FAQ */

.cross-box {
    position: absolute;
    top: 1.2em;
    right: 1em;
    width: 40px;
    height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
    border-radius: 50%;
    font-size: 24px;
	font-family: var(--ff-serif);
	font-weight: 300;
    color: rgba(240,240,240,1.0);
    background: var(--clr-primary);
    transition: all .4s ease-in-out;
}
.cross-toggle:checked ~ .cross-box {
    transform: rotate(135deg);
    transition: .4s;
}
.question {
    position: relative;
    padding: 1.5em 1em;
    width: 100%;
    background: rgba(240,240,240,1.0);
    margin: 1.5em 0;
	display: flex;
	flex-direction: column;
}
.cross-toggle-label {
    width: 80%;
    cursor: pointer;
	font-family: var(--ff-cursive);
	font-size: 1.2rem;
	font-weight: 200;
	letter-spacing: 3px;
}
@media screen and (min-width: 400px) {
	.cross-box {
		top: .65em;
	}
}
	
@media screen and (min-width: 600px) {
	.cross-box {
		top: 1.2em;
		right: 1.5em;
	}
	.cross-toggle-label {
		font-size: 1.6rem;
	}
	.question {
		padding: 2em 1.5em;
		width: 80%;
	}
}
