/**
 * BAZX — main stylesheet
 * Colors & structure inspired by Official Sinner (LTR English).
 */

:root {
	--color-background: 0 0 0;
	--color-foreground: 255 255 255;
	--color-heading: 255 255 255;
	--color-accent: 192 192 192; /* silver / chrome — matches BAZX logo */
	--color-border: 255 255 255;
	--font-body: "Roboto", Arial, sans-serif;
	--font-display: "Roboto", Arial, sans-serif;
	--font-slogan: "Splash", cursive;
	--container: 1440px;
	--gap: 1.5rem;
	--header-h: 72px;
	--marquee-dir: 1;
}

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

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.6rem;
	line-height: 1.5;
	background: rgb(var(--color-background));
	color: rgb(var(--color-foreground));
	-webkit-font-smoothing: antialiased;
	direction: ltr;
	text-align: left;
}

img,
video,
iframe {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: rgb(var(--color-accent));
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	color: rgb(var(--color-heading));
	margin: 0 0 0.5em;
	letter-spacing: 0.02em;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button,
input {
	font: inherit;
	color: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container-fluid {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 2rem;
}

@media (min-width: 1024px) {
	.container-fluid {
		padding-inline: 4rem;
	}
}

.section-padding {
	padding-block: 4rem;
}

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

.section__heading {
	text-align: center;
	font-size: clamp(2rem, 3vw, 2.8rem);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
}

.section__button {
	text-align: center;
	margin-bottom: 2.5rem;
}

.admin-hint {
	text-align: center;
	opacity: 0.6;
	font-size: 1.4rem;
	padding: 2rem;
	border: 1px dashed rgba(255, 255, 255, 0.25);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: 1px solid transparent;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 1.3rem;
	font-weight: 600;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--accent {
	background: linear-gradient(180deg, #f0f0f0 0%, #c0c0c0 45%, #8a8a8a 100%);
	border-color: #c0c0c0;
	color: #000;
}

.btn--accent:hover {
	background: #fff;
	border-color: #fff;
	color: #000;
}

.btn--outline {
	background: transparent;
	border-color: rgb(var(--color-accent));
	color: #fff;
}

.btn--outline:hover {
	background: rgb(var(--color-accent));
	color: #000;
}

/* ========== Announcement ========== */
.announcement-bar {
	background: #000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	position: relative;
	z-index: 101;
}

.announcement-bar__inner {
	padding: 1rem 1.5rem;
}

/* ========== Header (Sinner-style: menu | logo | icons) ========== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgb(var(--color-background));
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.header--transparent {
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

.site-header.header--transparent.is-sticky,
.site-header.header--transparent:hover {
	background: rgba(0, 0, 0, 0.95);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header__in {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-template-areas: "left logo icons";
	align-items: center;
	min-height: var(--header-h);
	column-gap: 1rem;
	padding-block: 1rem;
}

.header__left {
	grid-area: left;
	display: flex;
	align-items: center;
	justify-self: start;
	min-width: 0;
	z-index: 2;
}

.header__logo {
	grid-area: logo;
	justify-self: center;
	text-align: center;
	line-height: 0;
	z-index: 1;
	/* True optical center on mobile (ignore unequal side widths) */
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	max-width: 46vw;
	pointer-events: none;
}

.header__logo a,
.header__logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
}

.header__logo img,
.header__logo .custom-logo,
.header__logo-img {
	display: block;
	width: auto;
	max-width: min(180px, 46vw);
	height: auto;
	max-height: 28px;
}

@media (min-width: 900px) {
	.header__in {
		column-gap: 1.5rem;
		padding-block: 1.2rem;
	}

	.header__logo {
		position: static;
		transform: none;
		max-width: none;
		pointer-events: auto;
	}

	.header__logo img,
	.header__logo .custom-logo,
	.header__logo-img {
		max-height: 40px;
		max-width: 240px;
	}
}

.site-title {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #c0c0c0;
}

.header__inline-menu {
	display: none;
}

@media (min-width: 900px) {
	.header__inline-menu {
		display: block;
	}

	.header__menu-toggle {
		display: none !important;
	}
}

.header__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 2.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header__menu a {
	display: inline-flex;
	align-items: center;
	min-height: 4rem;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

.header__menu a:hover {
	color: rgb(var(--color-accent));
}

.header__icons {
	grid-area: icons;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	gap: 0;
	column-gap: 0;
	z-index: 2;
}

.header__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	padding: 0;
	border: 0;
	background: none;
	color: #fff;
	cursor: pointer;
	flex-shrink: 0;
}

.header__icon:hover {
	color: rgb(var(--color-accent));
}

.header__icon svg {
	display: block;
	width: 1.8rem;
	height: 1.8rem;
}

/* Hide account on mobile — keep search + cart only */
.header__icon--account {
	display: none;
}

@media (min-width: 900px) {
	.header__icons {
		column-gap: 0.6rem;
	}

	.header__icon {
		width: 4rem;
		height: 4rem;
	}

	.header__icon svg {
		width: 2.2rem;
		height: 2.2rem;
	}

	.header__icon--account {
		display: inline-flex;
	}
}

.cart-count {
	position: absolute;
	top: 0.2rem;
	right: 0;
	min-width: 1.4rem;
	height: 1.4rem;
	padding: 0 0.3rem;
	border-radius: 999px;
	background: rgb(var(--color-accent));
	color: #000;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4rem;
	text-align: center;
}

@media (min-width: 900px) {
	.cart-count {
		top: 0.4rem;
		right: 0.2rem;
		min-width: 1.6rem;
		height: 1.6rem;
		font-size: 1rem;
		line-height: 1.6rem;
	}
}

.header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 1.8rem;
	height: 1.2rem;
}

.header__hamburger span {
	display: block;
	height: 1.5px;
	width: 100%;
	background: currentColor;
}

/* Search panel */
.header-search {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: #000;
	padding: 1.5rem 2rem 2rem;
}

.header-search[hidden] {
	display: none;
}

.header-search__form {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 720px;
	margin-inline: auto;
}

.header-search__form input[type="search"] {
	flex: 1;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	padding: 1rem 0;
	outline: none;
	font-size: 1.6rem;
}

.header-search__form input[type="search"]:focus {
	border-bottom-color: rgb(var(--color-accent));
}

.header-search__close {
	border: 0;
	background: none;
	color: #fff;
	font-size: 2.8rem;
	line-height: 1;
	cursor: pointer;
	padding: 0 0.4rem;
}

.header-search__close:hover {
	color: rgb(var(--color-accent));
}

/* Mobile drawer menu */
.mobile-menu {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 2rem 2.5rem;
	background: #000;
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu__list,
.mobile-menu .header__menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.mobile-menu a {
	display: block;
	padding: 1.2rem 0;
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	width: 100%;
}

.mobile-menu__account {
	display: inline-flex !important;
	margin-top: 2rem;
	padding: 1rem 0 !important;
	border: 0 !important;
	font-size: 1.4rem !important;
	opacity: 0.75;
}

@media (min-width: 900px) {
	.mobile-menu {
		display: none !important;
	}
}

/* ========== Hero / YouTube ========== */
.home-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

/* Mobile: match video aspect ratio (no black bars) */
@media (max-width: 899px) {
	.home-hero {
		aspect-ratio: 16 / 9;
		max-height: none;
	}

	.home-hero__video iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: 0;
		pointer-events: none;
	}
}

/* Desktop: full-bleed cover video */
@media (min-width: 900px) {
	.home-hero {
		min-height: min(92vh, 900px);
		aspect-ratio: auto;
		max-height: none;
	}

	.home-hero__video iframe {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100vw;
		height: 56.25vw;
		min-height: 100%;
		min-width: 177.77%;
		transform: translate(-50%, -50%);
		border: 0;
		pointer-events: none;
	}
}

.home-hero__media {
	position: absolute;
	inset: 0;
}

.home-hero__video {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.home-hero__fallback {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at center, rgba(192, 192, 192, 0.18), transparent 55%),
		linear-gradient(160deg, #111 0%, #000 100%);
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--hero-overlay, 0.35));
	pointer-events: none;
}

.home-hero__content {
	position: relative;
	z-index: 2;
	height: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1.5rem;
}

@media (min-width: 900px) {
	.home-hero__content {
		min-height: inherit;
		padding: 4rem 2rem;
	}
}

.home-hero__heading {
	font-size: clamp(2.4rem, 6vw, 5.6rem);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.home-hero__text {
	max-width: 40rem;
	margin: 1rem auto 0;
	opacity: 0.85;
	font-size: 1.6rem;
}

/* ========== Glitch slogan (from Official Sinner custom.css) ========== */
.home-slogan {
	padding: 1rem 0 0.5rem;
}

.spacey-glitch-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	background: rgb(var(--color-background, 0 0 0));
}

.spacey-img-glitch {
	position: relative;
	width: var(--w, 200px);
	aspect-ratio: var(--ar, 1 / 1);
	background-image: var(--src);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.spacey-img-glitch:before,
.spacey-img-glitch:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: var(--src);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgb(var(--color-background, 0 0 0));
	clip: rect(0, 900px, 0, 0);
	will-change: clip, transform;
}

.spacey-img-glitch:before {
	left: calc(var(--tear, 2px) * -1);
	animation: spacey-noise-before 3s infinite linear alternate-reverse;
}

.spacey-img-glitch:after {
	left: var(--tear, 2px);
	animation: spacey-noise-after 2s infinite linear alternate-reverse;
}

@keyframes spacey-noise-before {
	0% { clip: rect(61px, 9999px, 52px, 0); }
	5% { clip: rect(33px, 9999px, 144px, 0); }
	10% { clip: rect(121px, 9999px, 115px, 0); }
	15% { clip: rect(144px, 9999px, 162px, 0); }
	20% { clip: rect(62px, 9999px, 180px, 0); }
	25% { clip: rect(34px, 9999px, 42px, 0); }
	30% { clip: rect(147px, 9999px, 179px, 0); }
	35% { clip: rect(99px, 9999px, 63px, 0); }
	40% { clip: rect(188px, 9999px, 122px, 0); }
	45% { clip: rect(154px, 9999px, 14px, 0); }
	50% { clip: rect(63px, 9999px, 37px, 0); }
	55% { clip: rect(161px, 9999px, 147px, 0); }
	60% { clip: rect(109px, 9999px, 175px, 0); }
	65% { clip: rect(157px, 9999px, 88px, 0); }
	70% { clip: rect(173px, 9999px, 131px, 0); }
	75% { clip: rect(62px, 9999px, 70px, 0); }
	80% { clip: rect(24px, 9999px, 153px, 0); }
	85% { clip: rect(138px, 9999px, 40px, 0); }
	90% { clip: rect(79px, 9999px, 136px, 0); }
	95% { clip: rect(25px, 9999px, 34px, 0); }
	to { clip: rect(173px, 9999px, 166px, 0); }
}

@keyframes spacey-noise-after {
	0% { clip: rect(26px, 9999px, 33px, 0); }
	5% { clip: rect(140px, 9999px, 198px, 0); }
	10% { clip: rect(184px, 9999px, 89px, 0); }
	15% { clip: rect(121px, 9999px, 6px, 0); }
	20% { clip: rect(181px, 9999px, 99px, 0); }
	25% { clip: rect(154px, 9999px, 133px, 0); }
	30% { clip: rect(134px, 9999px, 169px, 0); }
	35% { clip: rect(26px, 9999px, 187px, 0); }
	40% { clip: rect(147px, 9999px, 137px, 0); }
	45% { clip: rect(31px, 9999px, 52px, 0); }
	50% { clip: rect(191px, 9999px, 109px, 0); }
	55% { clip: rect(74px, 9999px, 54px, 0); }
	60% { clip: rect(145px, 9999px, 75px, 0); }
	65% { clip: rect(153px, 9999px, 198px, 0); }
	70% { clip: rect(99px, 9999px, 136px, 0); }
	75% { clip: rect(118px, 9999px, 192px, 0); }
	80% { clip: rect(1px, 9999px, 83px, 0); }
	85% { clip: rect(145px, 9999px, 98px, 0); }
	90% { clip: rect(121px, 9999px, 154px, 0); }
	95% { clip: rect(156px, 9999px, 44px, 0); }
	to { clip: rect(67px, 9999px, 122px, 0); }
}

/* Text glitch (editable slogan) */
.spacey-text-glitch {
	position: relative;
	display: inline-block;
	padding: 0.4em 0.2em;
	font-family: var(--font-slogan);
	font-size: clamp(4rem, 12vw, 9.5rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-transform: none;
	color: rgb(var(--color-accent));
	text-align: center;
	background: linear-gradient(180deg, #f5f5f5 0%, #c0c0c0 40%, #7a7a7a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.spacey-text-glitch__main {
	position: relative;
	z-index: 1;
}

.spacey-text-glitch::before,
.spacey-text-glitch::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	padding: inherit;
	overflow: hidden;
	background: #000;
	color: #c0c0c0;
	-webkit-text-fill-color: #c0c0c0;
	clip: rect(0, 900px, 0, 0);
	will-change: clip, transform;
}

.spacey-text-glitch::before {
	left: -3px;
	text-shadow: 2px 0 #fff;
	animation: spacey-noise-before 3s infinite linear alternate-reverse;
}

.spacey-text-glitch::after {
	left: 3px;
	text-shadow: -2px 0 rgba(255, 255, 255, 0.55);
	animation: spacey-noise-after 2s infinite linear alternate-reverse;
}

/* ========== Products ========== */
.products-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gap);
}

@media (min-width: 640px) {
	.products-grid {
		grid-template-columns: repeat(var(--cols, 3), 1fr);
	}
}

.product-card__media {
	position: relative;
	overflow: hidden;
	background: #111;
	aspect-ratio: 4 / 5;
}

.product-card__img,
.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-card__img,
.product-card:hover .product-card__media img {
	transform: scale(1.04);
}

.product-card__quick {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 1.2rem;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	font-size: 1.2rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.product-card:hover .product-card__quick {
	transform: translateY(0);
}

.product-card__info {
	padding: 1.4rem 0.2rem 0;
	text-align: center;
}

.product-card__title {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 0.4rem;
}

.product-card__price {
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}

.product-card__price del {
	opacity: 0.45;
	margin-inline-start: 0.4rem;
}

.product-card__price ins {
	text-decoration: none;
	color: rgb(var(--color-accent));
}

/* ========== Marquee ========== */
.home-marquee {
	padding-block: 2.5rem 1rem;
	overflow: hidden;
}

.scrolling-text__wrap {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	color: #fff;
}

.scrolling-text__wrap:hover {
	color: #fff;
}

.scrolling-text__animation {
	display: flex;
	align-items: center;
	width: max-content;
	animation: direction-left var(--duration, 48s) linear infinite;
	will-change: transform;
}

.scrolling-text__item {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	padding-inline-end: 3.5rem;
}

@media (min-width: 900px) {
	.scrolling-text__item {
		gap: 5rem;
		padding-inline-end: 5rem;
	}
}

.scrolling-text__content {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3.2vw, 2.4rem);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
}

.scrolling-text__sep {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.8rem;
	height: 2.8rem;
}

.scrolling-text__sep img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

@media (min-width: 900px) {
	.scrolling-text__sep {
		width: 3.6rem;
		height: 3.6rem;
	}
}

@keyframes direction-left {
	0% { transform: translate(0); }
	to { transform: translate(calc(var(--marquee-dir) * -100%)); }
}

/* ========== Video slider (Sinner-style highlight + muted autoplay) ========== */
.home-videos {
	overflow: hidden;
	padding-inline: 0;
}

.video-slider {
	position: relative;
	display: block;
	width: 100%;
}

.video-slider__viewport {
	width: 100%;
	overflow: hidden;
}

.video-slider__track {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding: 2rem 0;
}

.video-slider__track::-webkit-scrollbar {
	display: none;
}

.video-slider__item {
	flex: 0 0 min(70vw, 280px);
	scroll-snap-align: center;
	transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
	opacity: 0.45;
	filter: brightness(0.65);
	transform: scale(0.92);
}

@media (min-width: 900px) {
	.video-slider__track {
		gap: 2.5rem;
		padding: 2.5rem 0;
	}

	.video-slider__item {
		flex-basis: 320px;
	}
}

.video-slider__item.is-active {
	opacity: 1;
	filter: none;
	transform: scale(1);
	z-index: 2;
}

.video-slider__frame {
	position: relative;
	aspect-ratio: 9 / 16;
	background: #111;
	overflow: hidden;
}

.video-slider__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.4s ease;
}

.video-slider__item.is-loaded .video-slider__poster {
	opacity: 0;
	pointer-events: none;
}

.video-slider__embed {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.video-slider__embed iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	min-width: 180%;
	min-height: 180%;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.video-slider__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-slider__item:not(.is-active) .video-slider__shade {
	background: rgba(0, 0, 0, 0.25);
}

.video-slider__controls {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	pointer-events: none;
}

.video-slider__item.is-active .video-slider__controls {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.video-slider__ctrl {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: background 0.2s ease;
}

.video-slider__ctrl:hover {
	background: rgba(0, 0, 0, 0.55);
}

.video-slider__ctrl .icon-play,
.video-slider__ctrl .icon-unmuted {
	display: none;
}

.video-slider__ctrl--play.is-paused .icon-play {
	display: block;
}

.video-slider__ctrl--play.is-paused .icon-pause {
	display: none;
}

.video-slider__ctrl--play.is-playing .icon-pause {
	display: block;
}

.video-slider__ctrl--play.is-playing .icon-play {
	display: none;
}

.video-slider__ctrl--mute.is-muted .icon-muted {
	display: block;
}

.video-slider__ctrl--mute.is-muted .icon-unmuted {
	display: none;
}

.video-slider__ctrl--mute.is-unmuted .icon-unmuted {
	display: block;
}

.video-slider__ctrl--mute.is-unmuted .icon-muted {
	display: none;
}

.video-slider__nav {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	backdrop-filter: blur(6px);
}

.video-slider__nav--prev {
	left: 1.5rem;
}

.video-slider__nav--next {
	right: 1.5rem;
}

@media (min-width: 900px) {
	.video-slider__nav {
		display: inline-flex;
	}
}

.video-slider__nav:hover {
	border-color: rgb(var(--color-accent));
	color: rgb(var(--color-accent));
}

.video-slider__dots {
	display: flex;
	justify-content: center;
	gap: 0.6rem;
	margin-top: 1.5rem;
}

.video-slider__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
}

.video-slider__dot.is-active {
	background: rgb(var(--color-accent));
}

/* ========== Instagram ========== */
.instagram-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8rem;
}

@media (min-width: 768px) {
	.instagram-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.2rem;
	}
}

.instagram-grid__item {
	aspect-ratio: 1;
	overflow: hidden;
	background: #111;
}

.instagram-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.instagram-grid__item:hover img {
	transform: scale(1.05);
	opacity: 0.85;
}

.home-mid-logo {
	padding: 3rem 0 1rem;
}

/* ========== Footer ========== */
.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 2rem;
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.footer-blocks {
	display: grid;
	gap: 3rem;
}

@media (min-width: 900px) {
	.footer-blocks {
		grid-template-columns: 1.2fr 1fr 1fr;
		gap: 4rem;
		padding-bottom: 4rem;
	}
}

.footer-block__heading {
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 1.5rem;
}

.footer-newsletter__row {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.footer-newsletter input[type="email"] {
	flex: 1;
	min-width: 180px;
	background: transparent;
	border: 1px solid rgb(var(--color-accent));
	padding: 1rem 1.2rem;
	outline: none;
}

.footer-newsletter input:focus {
	border-color: #fff;
}

.footer-newsletter__note {
	margin: 1rem 0 0;
	font-size: 1.2rem;
	opacity: 0.55;
}

.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer-menu a {
	font-size: 1.4rem;
	opacity: 0.85;
}

.footer-block--text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 1.5rem;
	line-height: 0;
}

.footer-logo img {
	width: 100px;
	height: auto;
	display: block;
}

@media (min-width: 900px) {
	.footer-logo img {
		width: 120px;
	}
}

.footer-tagline {
	font-size: 1.5rem;
	opacity: 0.75;
	margin: 0 0 1.5rem;
}

.footer-social {
	display: flex;
	gap: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 1.3rem;
}

.footer__content-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 2rem;
	margin-top: 2rem;
}

.footer__copyright {
	margin: 0;
	font-size: 1.3rem;
	opacity: 0.55;
}

/* ========== Inner pages / Woo ========== */
.site-main:not(.site-main--home):not(.site-main--shop):not(.site-main--product):not(.site-main--woo-page) {
	padding-block: 3rem 5rem;
	min-height: 50vh;
}

.woo-content .woocommerce-products-header__title,
.page .entry-title {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2.5rem;
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}
