body {
	margin: 0;
	color: black;
	background-color: white;
	display: flex;
	flex-direction: column;
	background: #1D2436;
	container-type: scroll-state;
	container-name: navbar-container;
	overflow-y: auto;
	overflow-x: hidden;
}

* {
	font-family: "Exo 2", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: white;
	scroll-behavior: smooth;
	text-decoration: none;
}

nav {
	width: 100%;
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	--t: 0;
	border-bottom: 1px solid rgba(100, 100, 100, var(--t));
	box-shadow: 0px 0px 0.75vh rgba(55, 55, 55, var(--t));
	background-color: rgba(29, 36, 54, var(--t));
	height: calc(5rem - var(--t) * 1.2rem);
	padding-left: 10rem;
	padding-right: 10rem;
	box-sizing: border-box;
	z-index: 100;
}


main:nth-child(1) {
	padding-top: 5rem;
}

.nav-section {
	--local-t: var(--t);
	display: flex;
	flex-direction: row;
	vertical-align: middle;
}

.navbar-item-large {
	--local-t: var(--t);
	padding-top: calc(2rem - var(--local-t) * 1rem);
	padding-bottom: calc(2rem - var(--local-t) * 1rem);
	padding-left:  3rem;
	padding-right:  3rem;
	font-size: calc(1.5rem - var(--local-t) * .2rem);
	text-decoration: none;
	color: white;
	display: flex;
	flex-direction: column;
	position: relative;
}

.navbar-item-large:not(.hollow) span {
	position: relative;
}

.navbar-item-large span {
	display: table;
	vertical-align: middle;
	gap: .5rem;
	margin: auto;
}

.navbar-item-large span .caret {
	transition: transform .25s ease-in-out;
	margin-top: .25rem;
}

.navbar-item-large:hover span .caret {
	transform: scaleY(-1);
}

.navbar-item-large:hover .dropdown {
	border: 1px solid rgba(100, 100, 100, 1);
	box-shadow: 0px 0px 0.75vh rgba(55, 55, 55, 1);
	height: 20rem;
}
.dropdown {
	background: #1d2436;
	position: absolute;
	top: 110%;
	width: fit-content;
	height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	gap: 2rem;
	border-radius: 1rem;
	transition: height .25s ease-in-out, border .25s, box-shadow .25s;
	border: 0 solid rgba(100, 100, 100, 1);
	box-shadow: none;
}

.dropdown-inner {
	padding: 1rem; /* padding lives here */
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.dropdown-col {
	display: flex;
	flex-direction: column;
	min-width: 10rem;
	width: fit-content;
}

.dropdown-option {
	padding: 1rem;
	font-size: 1.1rem;
	width: fit-content;
	text-decoration: none;
}

.dropdown-col h2 {
	padding: 1rem;
	font-size: 1.5rem;
	margin: 0;
}

.card {
	min-height: calc(100vh);
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	position: relative;
}

.hero {
	background: #1D2436;
	display: flex;
}

.card-center {
	margin: auto;
	display: flex;
	flex-direction: row;
	width: 100%;
}

.medias {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}

.media-icon {
	padding: .75rem;
	font-size: 1.25rem;
	border: .125rem solid orangered;
	color: white;
	border-radius: 5rem;
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	text-decoration: none;
	transition: 0.25s all ease-in-out;
}

.media-icon:hover {
	background-color: orangered;
	color: white;
}

.media-icon i {
	margin: auto;
}

.hero-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 13rem;
	height: 100%;
	box-sizing: border-box;
}

.hero-right {
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.hollow {
	border: .125rem solid orangered;
	color: white;
	border-radius: 5rem;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: 0.25s all ease-in-out;
	height: fit-content;
	width: fit-content;
}

.hollow:hover {
	background-color: orangered;
	color: white;
}

.hero-bottom {
	padding-bottom: 3rem;
	display: flex;
	flex-direction: row;
	gap: 3rem;
}

.card-inner {
	width: 100%;
	display:flex;
	flex-direction: column;
	gap: 1rem;
	padding: 13rem;
	box-sizing: border-box;
}

.card-content {
	width: 100%;
	padding: 5rem 13rem;
	display:flex;
	flex-direction: column;
	box-sizing: border-box;
	gap: 1rem;
}

.large-title {
	font-size: xx-large;
}

.carousel {
	display: flex;
	flex-direction: row;
	width: 100%;
	overflow-x: hidden;
	padding: 3rem 0rem;
	gap: 3rem;
	justify-content: space-between;
}

.carousel-focus {
	scale: 1.1;
}

.carousel-focus:hover {
	scale: 1.2 !important;
}

.blogs-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
	width: 100%;
	gap: 3rem;
	justify-content: space-between;
}
.store-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, 13rem);
	width: 100%;
	gap: 3rem;
	justify-content: space-between;
}
.store-container::after {
	content: "";
	flex: auto;
}
/* .blogs-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex-wrap: wrap;
	gap: 3rem;
	justify-content: space-between;
} */

.article-wrapper {
  flex: 0 0 calc((100% - 6rem) / 3);
  display: flex;
  justify-content: center;
}

.article-item {
	position: relative;
	transition: all 250ms ease-in-out;
	filter: blur(0px);
	border-radius: 2rem;
	overflow: hidden;
	min-width: 25rem;
	aspect-ratio: 1.428571429;
	/* max-width: calc(33% - 2rem); */
	/* max-height: calc(33% - 2rem); */
	flex: 1;
}

.carousel.moving .article-item {
	transition: all 1s ease-in-out;
	pointer-events: none;
}

.article-item:hover {
	scale: 1.1;
}

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

.article-cover {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	top: 0;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: end;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.nav-hamburger {
	display: none;
}

.mobile-card {
	display: none;
	padding: 2rem;
	gap: 5rem;
	margin: auto;
}
.desktop-card, .mobile-card {
	z-index: 2;
}

.navbar-item-dropdown {
	padding: 1rem 2rem;
	text-decoration: none;
	font-size: 1.2rem;
}

.navbar-item-dropdown span {
	margin: 0;
}

.carousel .article-item:not(.carousel-focus) {
	filter: blur(2px);
	scale: .9;
}
.carousel .article-item:not(.carousel-focus):hover {
	scale: 1;
	filter: brightness(.9) !important;
}

.carousel .article-item {
	min-width: 15rem;
}

.carousel-edge {
	scale: 0.5 !important;
	filter: blur(20px) !important;
}

.hero-bg {
	position: absolute;
	z-index: 1;
}

.blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.blob {
  position: absolute;
  width: 30vw;  /* bigger than your previous tiny dots */
  height: 30vw;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none; /* so it doesn’t interfere */
  animation-name: float, scale;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 1.5rem;
}

p {
	font-size: 1.5rem;
}

.card p {
	max-width: 40rem;
	text-align: justify;
}

.article-inner {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 10rem 20rem;
	justify-content: end;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.4) 100%);
	position: absolute;
	box-sizing: border-box;
}

.article-details {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 1rem;
}

.author-info img {
	height: 3rem;
	border-radius: 50%;
}

.author-info, .written-by {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
}

.author-info {
	gap: 0.4rem;
}

.article-inner p {
	margin: 0;
}

.article-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2rem 40rem;
	box-sizing: border-box;
	width: 100%;
}

.article-content p {
	max-width: unset !important;
	width: 100%;
	margin: 0;
	color: black;
}


.article-content .image-block {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 1rem;
	cursor: pointer;
}

.article-content .image-block img, iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.article-content .caption {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.4) 100%);
	padding: 1rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.article-content .caption span {
	color: white;
}

.article-content .fa-icon {
	width: 1.5rem;
	height: 1.5rem;
	display: flex;
	transition: inherit;
}
.article-content .fa-icon i {
	margin: auto;
	color: black;
	transition: inherit;
}

.article-content .inline-link,
.article-content .product-link {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	border: .125rem solid orangered;
	border-radius: .5rem;
	padding: 1rem 2rem;
	text-decoration: none;
	transition: 0.25s all ease-in-out;
	height: fit-content;
	width: fit-content;
	align-items: center;
	color: black;
}

.article-content .inline-link:hover,
.article-content .product-link:hover {
	background-color: orangered;
	color: white;
}
.article-content .inline-link:hover i,
.article-content .product-link:hover i {
	color: white;
}

.article h2 {
	font-weight: 600;
	font-size: 2.5rem;
	margin: 0;
}

.product-wrapper .product-preview * {
	color: white;
}

.product-wrapper .product-preview {
	/* display: none; */
	opacity: 0;
	position: absolute;
	top: calc(100% + 1rem);
	width: 30rem;
	transition: all 0.25s ease-in-out;
	background: #1a1a1a;
	color: #fff;
	border-radius: 0.5rem;
	overflow: hidden;
	z-index: 10;
	text-align: center;
	pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
	.product-wrapper a:hover + .product-preview {
		/* display: block; */
		opacity: 1;
	}
}

.product-wrapper {
	width: fit-content;
	position: relative;
	display: inline-block;
}

.preview-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.product-wrapper .product-preview img {
	width: 100%;
	height: auto;
}

.product-wrapper .product-cover {
	position: absolute;
	display: flex;
	flex-direction: column;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.4) 100%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	gap: 1rem;
	justify-content: end;
	align-items: baseline;
	padding: 1rem;
	box-sizing: border-box;
}

.preview-product-info-row {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
}

.price-label {
	display: flex;
	flex-direction: row;
}

.price-label span {
	font-size: .65rem;
	margin-bottom: auto;
}

.whitecard {
	background-color: white;
	color: black !important;
}

.whitecard * {
	color: black;
}

footer {
	display: flex;
	flex-direction: column;
}

.footer-links {
	background-color: hsl(223, 30%, 24%);
	width: 100%;
	padding: 1rem;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
	box-sizing: border-box;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: orangered;
}

.footer-copyright {
	background-color: #1D2436;
	width: 100%;
	padding: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	box-sizing: border-box;
	text-align: center;
}

.article-actions {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.article-actions div {
	display: flex;
	flex-direction: row;
	gap: .5rem;
}

.article-actions a {
	padding: .5rem;
	border-radius: .5rem;
	transition: all 0.25s ease-in-out;
}

.article-actions a:hover {
	background-color: #eee;
}

.article-actions i {
	color: black;
	font-size: 1.5rem;
}

.article-end {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.article-end h2 {
	font-size: 2rem;
}

.separator {
	width: auto;
	margin: 0rem 4rem;
	height: .25rem;
	border-radius: .1rem;
	background-color: orangered;
	box-sizing: border-box;
}

.card a:active {
	scale: .8;
}

.collection {
	/* position: relative; */
	display: flex;
	flex-direction: row;
	grid-template-columns: 2fr 1fr;
	gap: 0.5rem;
	max-width: 100%;
	margin: 2rem auto;
	cursor: pointer;
}

.collection-main img,
.collection-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collection-main {
	flex: 1;
	border-radius: 0.75rem;
	display: flex;
	overflow: hidden;
	position: relative;
}

.collection-side {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 33%;
	max-height: 40vh;
	overflow: hidden;
}

.collection img {
	transition: transform 0.25s ease, filter 0.25s ease;
	filter: brightness(.75);
	border-radius: 0.75rem;
	min-height: 14rem;
}

.lightbox {
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: all .25s ease-in-out;
}

.lightbox-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
}

.lightbox.hidden {
	opacity: 0;
	pointer-events: none;
}

.lightbox-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.lightbox img {
	width: 80vw;
	max-width: 100rem;
	/* max-height: 50vh; */
	object-fit: cover;
	border-radius: 2rem;
	transition: all .25s ease-in-out;
}

.lightbox.hidden img {
	width: 0vw;
}

.lightbox .nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: white;
	font-size: 3rem;
	cursor: pointer;
	padding: 0 1rem;
	opacity: 0.8;
}

.lightbox .prev { left: -3rem; }
.lightbox .next { right: -3rem; }

.lightbox.single .nav {
	display: none;
}

.caption {
	pointer-events: none;
}
.lightbox-header {
	position: absolute;
	text-align: center;
	bottom: calc(100% + 1rem);
	height: fit-content;
	width: 100%;
	display: flex;
	justify-content: space-between;
	color: white;
	opacity: 0.85;
	font-size: 1.75rem;
}
.lightbox-header * {
	width: 100%;
}
.lightbox-footer {
	position: absolute;
	bottom: -3rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	color: white;
	opacity: 0.85;
	font-size: 1.75rem;
}

#lightbox-title {
	font-weight: 500;
}

#lightbox-counter {
	font-variant-numeric: tabular-nums;
}

.product-item {
	display: flex;
	margin: auto;
	flex-direction: column;
	padding: 1.5rem;
	background-color: white;
	border-radius: .5rem;
	width: min-content;
	gap: .5rem;
	transition: all .25s ease-in-out;
	position: relative;
	width: 12rem;
}

.product-item:hover {
	scale: 1.1;
}

.product-image {
	width: 100%;
	aspect-ratio: 1;
}

.product-desc {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product-name {
	text-overflow: ellipsis;
	overflow-x: hidden;
	white-space: nowrap;
	font-size: 1rem;
	width: 100%;
	color: #222;
}

.price {
	color: #444;
}