/* ==========================================================================
   Blockshop (beauty preset) recreation styles for Astra child theme
   ========================================================================== */

:root {
	--bs-dark: #161514;
	--bs-dark-2: #1f1d1b;
	--bs-light: #ffffff;
	--bs-light-2: #f6f3f0;
	--bs-accent: #ca3434;
	--bs-text-on-dark: rgba(255, 255, 255, 0.92);
	--bs-text-muted: rgba(255, 255, 255, 0.65);
	--bs-border: rgba(255, 255, 255, 0.12);
	--bs-font-heading: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
	--bs-font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
	--bs-container: 1400px;
	--bs-container-narrow: 1080px;
}

/* Global front-page resets ------------------------------------------------ */
.bs-front-page .site-content {
	background: var(--bs-dark);
}
.bs-front-page #content .ast-container {
	max-width: none;
	padding: 0;
}
.bs-front-page .entry-header {
	display: none;
}
.bs-front-page .ast-featured-post .ast-article-single {
	background: transparent;
}

/* Skip link */
.skip-link:focus {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background: #fff;
	color: #000;
	padding: 8px 16px;
}

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

/* Icons */
.icon--root {
	display: inline-block;
	vertical-align: middle;
	fill: currentColor;
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announcement--root {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
	padding: 10px 20px;
	font-family: var(--bs-font-body);
	font-size: 13px;
	line-height: 1.4;
}
.announcement--root .social-icons--items {
	display: flex;
	gap: 14px;
}
.announcement--root .social-icons--items a {
	color: #fff;
	opacity: 0.85;
	transition: opacity 0.2s;
}
.announcement--root .social-icons--items a:hover {
	opacity: 1;
}
.announcement--center {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-align: center;
}
.announcement--blocks {
	position: relative;
	height: 20px;
}
.announcement--block-wrapper {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0;
	transition: opacity 0.6s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.announcement--block-wrapper.is-active {
	opacity: 1;
}
.announcement--block-wrapper img {
	width: 18px;
	height: 18px;
}
.announcement--text {
	font-size: 13px;
	letter-spacing: 0.02em;
}
.announcement--right {
	position: relative;
}

/* Localization dropdown (static) */
.disclosure--root {
	position: relative;
}
.disclosure--toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	color: inherit;
	font-size: 13px;
	cursor: pointer;
	padding: 2px 4px;
}
.disclosure--toggle .icon--chevron-down {
	transition: transform 0.2s;
}
.disclosure--root.is-open .disclosure--toggle .icon--chevron-down {
	transform: rotate(180deg);
}
.disclosure--form {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	min-width: 190px;
	max-height: 260px;
	overflow: auto;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	background: #fff;
	color: #1b1a1a;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	border-radius: 2px;
}
.disclosure--root.is-open .disclosure--form {
	display: block;
}
.disclosure--option {
	padding: 6px 16px;
	font-size: 13px;
	cursor: pointer;
}
.disclosure--option:hover,
.disclosure--option[aria-current="true"] {
	color: var(--bs-accent);
}

/* ==========================================================================
   Split announcements (USP strip)
   ========================================================================== */
.split-announcements--root {
	background: var(--bs-dark-2);
	color: var(--bs-text-on-dark);
	border-top: 1px solid var(--bs-border);
}
.split-announcements--container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	max-width: var(--bs-container);
	margin: 0 auto;
	padding: 12px 20px;
}
.split-announcements--container a {
	color: inherit;
}
.split-announcements--block {
	display: flex;
	align-items: center;
	gap: 12px;
}
.split-announcements--icon img {
	width: 34px;
	height: 34px;
}
.split-announcements--description {
	font-size: 14px;
	letter-spacing: 0.03em;
}
.split-announcements--container[data-mq="small"] {
	display: none;
	text-align: center;
}

/* ==========================================================================
   Header (center-below layout, sticky)
   ========================================================================== */
.header--root {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bs-dark);
	color: #fff;
	border-bottom: 1px solid var(--bs-border);
	font-family: var(--bs-font-body);
}
.header--container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	max-width: var(--bs-container);
	margin: 0 auto;
	padding: 14px 20px;
}
.header--logo {
	margin: 0;
	font-size: 0;
	line-height: 0;
}
.header--logo img {
	height: 50px;
	width: auto;
	display: block;
}
.header--primary-nav {
	justify-self: center;
}
.header--icons {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header--search-toggle,
.header--drawer-toggle {
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 4px;
	display: inline-flex;
	align-items: center;
}
.header--account,
.header--cart {
	position: relative;
	color: #fff;
	display: inline-flex;
	align-items: center;
}
.header--account:hover,
.header--cart:hover,
.header--search-toggle:hover {
	opacity: 0.75;
}
.header--cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 16px;
	height: 16px;
	border-radius: 8px;
	background: var(--bs-accent);
	color: #fff;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	padding: 0 4px;
}
.header--drawer-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}
.header--drawer-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
}

/* Primary menu (desktop) */
.bs-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
}
.bs-menu--level-1 > li {
	position: relative;
}
.bs-menu--level-1 a {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 18px 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: opacity 0.2s;
}
.bs-menu--level-1 a:hover {
	opacity: 0.7;
}
.bs-menu--sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 55;
	min-width: 230px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	border-radius: 2px;
	padding: 10px 0;
}
.bs-menu--has-sub:hover .bs-menu--sub,
.bs-menu--has-sub:focus-within .bs-menu--sub {
	display: block;
}
.bs-menu--level-2 {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bs-menu--level-2 a {
	color: #1b1a1a;
	font-size: 13px;
	text-transform: none;
	padding: 8px 18px;
	display: block;
	white-space: nowrap;
}
.bs-menu--level-2 a:hover {
	color: var(--bs-accent);
	opacity: 1;
}
.bs-menu .icon--chevron-down {
	width: 9px;
	height: 6px;
}

/* Search drawer */
.header--search-drawer {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 49;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	padding: 24px 20px;
}
.header--search-drawer-inner {
	max-width: var(--bs-container-narrow);
	margin: 0 auto;
	position: relative;
}
.header--search-drawer form {
	display: flex;
}
.header--search-drawer input[type="search"],
.header--search-drawer input[type="text"],
.header--search-drawer .woocommerce-product-search input {
	flex: 1;
	border: 0;
	border-bottom: 1px solid #1b1a1a;
	padding: 10px 4px;
	font-size: 15px;
	outline: none;
	background: transparent;
}
.header--search-drawer button[type="submit"] {
	background: #1b1a1a;
	color: #fff;
	border: 0;
	padding: 10px 22px;
	cursor: pointer;
	font-size: 13px;
	text-transform: uppercase;
}
.header--search-close {
	position: absolute;
	top: -14px;
	right: 0;
	background: none;
	border: 0;
	font-size: 22px;
	cursor: pointer;
	color: #1b1a1a;
}
.woocommerce-product-search {
	display: flex;
	width: 100%;
}

/* ==========================================================================
   Mobile drawer
   ========================================================================== */
.bs-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	pointer-events: none;
}
.bs-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}
.bs-drawer--overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.3s;
}
.bs-drawer.is-open .bs-drawer--overlay {
	opacity: 1;
}
.bs-drawer--panel {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(320px, 86vw);
	background: var(--bs-dark);
	color: #fff;
	padding: 20px;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}
.bs-drawer.is-open .bs-drawer--panel {
	transform: translateX(0);
}
.bs-drawer--close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
}
.bs-drawer--menu .bs-menu {
	flex-direction: column;
	gap: 0;
}
.bs-drawer--menu .bs-menu a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--bs-border);
	font-size: 14px;
}
.bs-drawer--menu .bs-menu--sub {
	display: block;
	position: static;
	transform: none;
	background: transparent;
	box-shadow: none;
	padding: 0 0 0 14px;
}
.bs-drawer--menu .bs-menu--level-2 a {
	color: var(--bs-text-muted);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding: 8px 0;
	white-space: normal;
}
.bs-drawer--utility {
	display: flex;
	gap: 20px;
	margin: 20px 0;
}
.bs-drawer--utility a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 14px;
}
.bs-drawer--localization {
	margin-top: 16px;
}
.bs-drawer--localization .social-icons--items {
	display: flex;
	gap: 14px;
}
.bs-drawer--localization .social-icons--items a {
	color: #fff;
}

/* ==========================================================================
   Slideshow
   ========================================================================== */
.slideshow--root {
	background: var(--bs-dark);
}
.carousel--root {
	position: relative;
	overflow: hidden;
}
.carousel--container {
	display: flex;
	height: 550px;
	transition: transform 0.6s ease;
}
.carousel--block {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	height: 100%;
}
.slideshow--image,
.carousel--block picture {
	position: absolute;
	inset: 0;
}
.slideshow--image img,
.carousel--block picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.carousel--block::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}
.stacked-text--root {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	padding: 0 8%;
	pointer-events: none;
}
.stacked-text--wrapper {
	max-width: 520px;
	pointer-events: auto;
	color: #fff;
}
.stacked-text--root[data-text-color="white"] .stacked-text--wrapper {
	color: #fff;
}
.stacked-text--title {
	font-family: var(--bs-font-heading);
	font-size: clamp(30px, 5vw, 54px);
	line-height: 1.1;
	margin: 0 0 12px;
	color: inherit;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.stacked-text--description {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: inherit;
}
.stacked-text--description p {
	margin: 0;
}
.stacked-text--button {
	display: inline-block;
	border: 1px solid currentColor;
	color: inherit;
	padding: 10px 26px;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.25s, color 0.25s;
}
.stacked-text--button:hover {
	background: #fff;
	color: #1b1a1a;
}

/* Carousel dots */
.carousel--dot-container {
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
}
.carousel--dot-nav {
	display: flex;
	gap: 10px;
}
.carousel--dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #fff;
	background: transparent;
	cursor: pointer;
	padding: 0;
}
.carousel--dot span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: transparent;
	transition: background 0.2s;
}
.carousel--dot[data-active="true"] span {
	background: #fff;
}

/* ==========================================================================
   Featured grid (category grid / spotlight grid / text columns)
   ========================================================================== */
.featured-grid--root {
	padding: 56px 20px;
	max-width: var(--bs-container);
	margin: 0 auto;
}
.featured-grid--root[data-background-color="dark"] {
	color: var(--bs-text-on-dark);
}
.featured-grid--header {
	text-align: center;
	margin-bottom: 36px;
}
.featured-grid--heading,
.featured-collection--title,
.newsletter--root .stacked-text--title,
.reviews--carousel-title {
	font-family: var(--bs-font-heading);
	font-size: clamp(24px, 3.4vw, 34px);
	margin: 0 0 10px;
	color: inherit;
	letter-spacing: 0.02em;
}
.featured-grid--description {
	font-size: 14px;
	font-weight: 400;
	color: rgba(27, 26, 26, 0.7);
	margin: 0;
}
.featured-grid--root[data-background-color="dark"] .featured-grid--description {
	color: var(--bs-text-muted);
}
.featured-grid--body {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, 1fr);
}
.featured-grid--body[data-columns="3"] {
	grid-template-columns: repeat(3, 1fr);
}
.featured-grid--item--link-wrapper {
	display: block;
	color: inherit;
	text-decoration: none;
}
.featured-grid--item--container {
	position: relative;
	overflow: hidden;
}
.featured-grid--item--image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #ece7e2;
}
.featured-grid--item--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.featured-grid--item--link-wrapper:hover .featured-grid--item--image img {
	transform: scale(1.06);
}
.featured-grid--item--text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	padding: 16px;
	color: #fff;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
}
.featured-grid--item--text[data-text-style="text-shadow"] {
	background: rgba(0, 0, 0, 0.28);
}
.featured-grid--item--title {
	font-family: var(--bs-font-heading);
	font-size: 17px;
	line-height: 1.3;
	margin: 0;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.featured-grid--item--link-container {
	display: inline-block;
	border: 1px solid #fff;
	padding: 6px 18px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	transition: background 0.25s, color 0.25s;
}
.featured-grid--item--link-wrapper:hover .featured-grid--item--link-container,
.featured-grid--item--link-container:hover {
	background: #fff;
	color: #1b1a1a;
}
.featured-grid--item-wide {
	grid-column: span 2;
	grid-row: span 2;
}

/* Text columns variant (image above, text below) */
.featured-grid--text-cols .featured-grid--item--container {
	overflow: visible;
}
.featured-grid--text-cols .featured-grid--item--image {
	border-radius: 0;
}
.featured-grid--text-cols .featured-grid--item--text {
	position: static;
	background: none;
	color: inherit;
	padding: 18px 0 0;
	gap: 8px;
}
.featured-grid--text-cols .featured-grid--item--title {
	color: inherit;
	text-shadow: none;
	font-size: 18px;
}
.featured-grid--text-cols .featured-grid--item--link-container {
	border-color: currentColor;
	color: inherit;
}
.featured-grid--text-cols .featured-grid--item--link-container:hover {
	background: #fff;
	color: #1b1a1a;
}

/* ==========================================================================
   Image with text sections
   ========================================================================== */
.image-with-text--root {
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
}
.featured-content--root {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: 0;
	max-width: var(--bs-container);
	margin: 0 auto;
	min-height: 380px;
}
.image-with-text--reverse .featured-content--root {
	grid-template-columns: 1fr 1.2fr;
}
.featured-content--image {
	display: block;
	line-height: 0;
	overflow: hidden;
}
.featured-content--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.image-with-text--root .stacked-text--root {
	position: static;
	padding: 40px 60px;
	pointer-events: auto;
}
.image-with-text--root .stacked-text--wrapper {
	max-width: 460px;
}
.image-with-text--root .stacked-text--title {
	font-size: clamp(22px, 3vw, 34px);
	text-shadow: none;
}

/* ==========================================================================
   Featured products
   ========================================================================== */
.featured-collection--root {
	background: var(--bs-light-2);
	color: #1b1a1a;
	padding: 56px 20px;
	max-width: var(--bs-container);
	margin: 0 auto;
}
.featured-collection--header {
	text-align: center;
	margin-bottom: 32px;
}
.featured-collection--products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px 20px;
}
.product--root {
	text-align: center;
}
.product--root > a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.product--image-wrapper {
	position: relative;
	overflow: hidden;
	background: #fff;
	aspect-ratio: 3 / 2;
}
.product--image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.4s ease;
}
.product--hover-image {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.product--root:hover .product--hover-image {
	opacity: 1;
}
.product--quick-add {
	position: absolute;
	right: 8px;
	bottom: 8px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s, transform 0.25s;
}
.product--root:hover .product--quick-add {
	opacity: 1;
	transform: translateY(0);
}
.product--quick-add--button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	color: #1b1a1a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.product--details {
	padding: 14px 4px 0;
}
.product--title {
	margin: 0 0 6px;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1b1a1a;
}
.product--from {
	font-size: 12px;
	color: rgba(27, 26, 26, 0.6);
	margin-right: 6px;
}
.product--price {
	font-size: 14px;
	color: #1b1a1a;
}

/* Star ratings */
.product-rating--root,
.reviews--item-stars,
.reviews--rating .reviews--stars {
	display: inline-block;
	position: relative;
	font-size: 13px;
	line-height: 1;
	color: #d8d3cd;
}
.product-rating--stars {
	display: inline-block;
}
.product-rating--stars::before {
	content: "\2605\2605\2605\2605\2605";
	letter-spacing: 2px;
	color: inherit;
}
.product-rating--stars::after {
	content: "\2605\2605\2605\2605\2605";
	letter-spacing: 2px;
	position: absolute;
	left: 0;
	top: 0;
	width: calc(var(--rating, 5) / 5 * 100%);
	overflow: hidden;
	white-space: nowrap;
	color: #e8a33d;
}

/* ==========================================================================
   Scrolling marquees
   ========================================================================== */
.scrolling-content--root {
	overflow: hidden;
	padding: 10px 0;
	border-top: 1px solid var(--bs-border);
}
.scrolling-content--wrapper {
	display: flex;
	width: max-content;
}
.scrolling-content--container {
	display: flex;
	gap: 12px;
	padding-right: 12px;
	flex-shrink: 0;
}
.scrolling-content--block {
	display: block;
	height: 100px;
	width: auto;
	line-height: 0;
}
.scrolling-content--block img {
	height: 100%;
	width: auto;
	object-fit: cover;
}
.scrolling-content--root[data-direction="left"] .scrolling-content--wrapper {
	animation: bs-marquee-left 40s linear infinite;
}
.scrolling-content--root[data-direction="right"] .scrolling-content--wrapper {
	animation: bs-marquee-right 40s linear infinite;
}
.scrolling-content--root:hover .scrolling-content--wrapper {
	animation-play-state: paused;
}
@keyframes bs-marquee-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@keyframes bs-marquee-right {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

/* ==========================================================================
   Reviews section
   ========================================================================== */
.apps--root {
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
	padding: 48px 20px;
}
.apps--wrapper {
	max-width: var(--bs-container-narrow);
	margin: 0 auto;
	text-align: center;
}
.reviews--rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}
.reviews--count {
	font-size: 14px;
	color: var(--bs-text-muted);
}
.reviews--carousel-title {
	margin: 0 0 4px;
}
.reviews--carousel-sub {
	display: block;
	font-size: 13px;
	color: var(--bs-text-muted);
	margin-bottom: 26px;
}
.reviews--carousel-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	text-align: left;
}
.reviews--item {
	background: var(--bs-dark-2);
	border: 1px solid var(--bs-border);
	border-radius: 4px;
	padding: 18px;
	font-size: 14px;
}
.reviews--item-stars {
	display: block;
	margin-bottom: 10px;
	color: #3a3733;
}
.reviews--item-title {
	font-weight: 700;
	margin-bottom: 6px;
}
.reviews--item-body {
	color: var(--bs-text-muted);
	line-height: 1.6;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.reviews--item-name {
	font-size: 13px;
	color: var(--bs-text-on-dark);
}

/* ==========================================================================
   Featured video
   ========================================================================== */
.featured-video--root {
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
	max-width: var(--bs-container-narrow);
	margin: 0 auto;
	padding: 56px 20px;
	text-align: center;
}
.featured-video--header h2 {
	font-family: var(--bs-font-heading);
	font-size: clamp(24px, 3.4vw, 34px);
	margin: 0 0 8px;
}
.featured-video--description {
	font-size: 15px;
	color: var(--bs-text-muted);
	margin-bottom: 26px;
}
.featured-video--description p {
	margin: 0;
}
.featured-video--wrapper video {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	display: block;
	background: #000;
}

/* ==========================================================================
   Newsletter section
   ========================================================================== */
.newsletter--root {
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
	text-align: center;
	padding: 60px 20px 70px;
}
.newsletter--wrapper {
	max-width: 560px;
	margin: 0 auto 28px;
}
.newsletter--root .stacked-text--root {
	position: static;
	padding: 0;
}
.newsletter--root .stacked-text--wrapper {
	max-width: none;
	margin: 0 auto;
}
.newsletter--body {
	max-width: 460px;
	margin: 0 auto;
}

/* Subscribe form (shared: footer / newsletter / popup) */
.subscribe-form {
	display: flex;
	border-bottom: 1px solid currentColor;
	padding-bottom: 4px;
}
.subscribe-form--input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: none;
	color: inherit;
	font-size: 14px;
	padding: 8px 4px;
}
.subscribe-form--input::placeholder {
	color: inherit;
	opacity: 0.6;
}
.subscribe-form--submit {
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	padding: 4px 8px;
	display: inline-flex;
	align-items: center;
}
.subscribe-form--submit:hover {
	opacity: 0.7;
}
.bs-subscribed-msg {
	margin-top: 12px;
	font-size: 13px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer--root {
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
	border-top: 1px solid var(--bs-border);
	font-family: var(--bs-font-body);
	font-size: 14px;
}
.footer--blocks {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: 40px;
	max-width: var(--bs-container);
	margin: 0 auto;
	padding: 56px 20px 40px;
}
.footer--block--heading {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.footer--about-text {
	color: var(--bs-text-muted);
	line-height: 1.7;
	margin-bottom: 18px;
	font-size: 13px;
}
.footer--about-text p {
	margin: 0;
}
.footer--menu {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 1;
}
.footer--menu li {
	margin-bottom: 8px;
}
.footer--menu a {
	color: var(--bs-text-muted);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s;
}
.footer--menu a:hover {
	color: #fff;
}
.footer--subscribe--info {
	color: var(--bs-text-muted);
	margin-bottom: 14px;
	font-size: 13px;
	line-height: 1.6;
}
.footer--subscribe--info p {
	margin: 0;
}
.footer--root .social-icons--items {
	display: flex;
	gap: 14px;
}
.footer--root .social-icons--items a {
	color: #fff;
	opacity: 0.8;
}
.footer--root .social-icons--items a:hover {
	opacity: 1;
}
.footer--sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: var(--bs-container);
	margin: 0 auto;
	padding: 18px 20px 26px;
	border-top: 1px solid var(--bs-border);
	font-size: 12px;
	color: var(--bs-text-muted);
}
.footer--sub a {
	color: inherit;
}
.footer--sub--sep {
	margin: 0 10px;
	opacity: 0.5;
}

/* ==========================================================================
   Newsletter popup
   ========================================================================== */
.popup--root {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.popup--root[hidden] {
	display: none;
}
.popup--overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}
.popup--block {
	position: relative;
	z-index: 1;
	width: min(380px, 92vw);
	margin: 0 24px 24px 0;
	background: var(--bs-dark);
	color: var(--bs-text-on-dark);
	border: 1px solid var(--bs-border);
	padding: 34px 28px 28px;
	text-align: center;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
	animation: bs-popup-in 0.35s ease;
}
@keyframes bs-popup-in {
	from { opacity: 0; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1); }
}
.popup--block--heading {
	font-family: var(--bs-font-heading);
	font-size: 22px;
	margin-bottom: 10px;
}
.popup--block--description {
	font-size: 13px;
	color: var(--bs-text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}
.popup--block .social-icons--root {
	margin-top: 20px;
}
.popup--block .social-icons--items {
	display: flex;
	justify-content: center;
	gap: 14px;
}
.popup--block .social-icons--items a {
	color: #fff;
	opacity: 0.8;
}
.layout--close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 32px;
	height: 32px;
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-size: 0;
}
.layout--close::before,
.layout--close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: currentColor;
}
.layout--close::before { transform: translate(-50%, -50%) rotate(45deg); }
.layout--close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1023px) {
	.header--primary-nav {
		display: none;
	}
	.header--drawer-toggle {
		display: inline-flex;
	}
	.header--container {
		grid-template-columns: auto 1fr auto;
	}
	.header--logo {
		justify-self: center;
	}
	.announcement--left,
	.announcement--right {
		display: none;
	}
	.split-announcements--container[data-mq="medium-large"] {
		display: none;
	}
	.split-announcements--container[data-mq="small"] {
		display: flex;
	}
	.carousel--container {
		height: 440px;
	}
	.featured-collection--products {
		grid-template-columns: repeat(2, 1fr);
	}
	.reviews--carousel-track {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer--blocks {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 767px) {
	.featured-grid--body,
	.featured-grid--body[data-columns="4"] {
		grid-template-columns: repeat(2, 1fr);
	}
	.featured-grid--body[data-columns="3"],
	.featured-grid--text-cols .featured-grid--body {
		grid-template-columns: 1fr;
	}
	.featured-grid--item-wide {
		grid-column: span 2;
		grid-row: span 1;
	}
	.featured-content--root,
	.image-with-text--reverse .featured-content--root {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.image-with-text--root .stacked-text--root {
		padding: 28px 20px;
		text-align: center;
	}
	.image-with-text--root .stacked-text--wrapper {
		margin: 0 auto;
	}
	.carousel--container {
		height: 400px;
	}
	.stacked-text--root {
		align-items: flex-end;
		padding-bottom: 46px;
		justify-content: center;
		text-align: center;
	}
	.scrolling-content--block {
		height: 70px;
	}
	.reviews--carousel-track {
		grid-template-columns: 1fr;
	}
	.footer--blocks {
		grid-template-columns: 1fr;
	}
	.footer--sub {
		flex-direction: column;
		text-align: center;
	}
	.featured-collection--products {
		gap: 20px 12px;
	}
}
