/**
 * Afridazzles editorial homepage — matches afridazzle.vercel.app
 */

:root {
	--ad-accent: #c9a227;
	--ad-accent-bright: #e8c547;
	--ad-black: #050505;
	--ad-cream: #f6f6f6;
	--ad-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--ad-sans: "Inter", system-ui, -apple-system, sans-serif;
	--ad-max: 1600px;
}

body.afridazzles-editorial-shell #wrapper,
body.afridazzles-editorial-shell .styler-preloader,
body.afridazzles-editorial-shell .scroll-to-top,
body.afridazzles-editorial-shell .styler-bottom-mobile-nav,
body.afridazzles-editorial-shell #styler-bottom-mobile-nav {
	display: none !important;
}

body.afridazzles-editorial-shell {
	margin: 0;
	background: #fff;
	color: var(--ad-black);
	font-family: var(--ad-sans);
}

/* WooCommerce pages using editorial header/footer */
body.afridazzles-editorial-shop .ad-shop-wrap {
	max-width: var(--ad-max);
	margin: 0 auto;
	padding: 2rem 1rem 4rem;
}

@media (min-width: 768px) {
	body.afridazzles-editorial-shop .ad-shop-wrap {
		padding: 2.5rem 2.5rem 5rem;
	}
}

.ad-app {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #fff;
	color: var(--ad-black);
}

.ad-announcement {
	background: var(--ad-black);
	color: #fff;
	text-align: center;
	padding: 0.65rem 1rem;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.ad-announcement__mobile {
	display: none;
}

.ad-marquee {
	overflow: hidden;
	border-bottom: 1px solid #e5e5e5;
	background: var(--ad-cream);
	padding: 0.5rem 0;
}

.ad-marquee__track {
	display: flex;
	width: max-content;
	gap: 3.5rem;
	animation: ad-marquee 40s linear infinite;
}

.ad-marquee__item {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #444;
	white-space: nowrap;
}

@keyframes ad-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.ad-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		gap: 0.75rem 1.5rem;
		padding: 0 1rem;
	}
}

.ad-region {
	text-align: right;
	padding: 0.45rem 1rem;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
	.ad-region { padding-right: 2.5rem; }
}

.ad-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
	transition: box-shadow 0.2s ease;
}

.ad-header.is-scrolled {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ad-skip-link {
	position: absolute;
	left: 1rem;
	top: 0.75rem;
	z-index: 200;
	background: var(--ad-black);
	color: #fff;
	padding: 0.5rem 0.75rem;
	text-decoration: none;
	transform: translateY(-200%);
	transition: transform 0.2s;
}

.ad-skip-link:focus {
	transform: translateY(0);
}

.ad-header__inner {
	max-width: var(--ad-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
	.ad-header__inner { padding: 1rem 2.5rem; }
}

.ad-header__left,
.ad-header__actions {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.ad-header__actions { justify-content: flex-end; }

.ad-search {
	display: flex;
	align-items: center;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: border-color 0.2s, background 0.2s;
}

.ad-search:focus-within {
	border-color: #d4d4d4;
	background: #fafafa;
}

.ad-search__icon {
	background: none;
	border: 0;
	padding: 0.55rem;
	cursor: pointer;
	color: var(--ad-black);
}

.ad-search__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.25;
}

.ad-search__input {
	border: 0;
	background: transparent;
	width: 0;
	padding: 0.5rem 0;
	font-size: 0.875rem;
	transition: width 0.2s, padding 0.2s;
}

.ad-search__input:focus {
	width: 8.5rem;
	padding-right: 0.75rem;
	outline: none;
}

@media (min-width: 640px) {
	.ad-search__input { width: 9rem; padding-right: 0.75rem; }
}

.ad-menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	border: 1px solid #d4d4d4;
	background: #fff;
	padding: 0.5rem 0.75rem;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--ad-black);
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.ad-menu-toggle:hover {
	border-color: var(--ad-accent-bright);
	color: var(--ad-accent-bright);
}

.ad-menu-toggle__icon {
	font-size: 1rem;
	line-height: 1;
	transform: translateY(1px);
}

@media (min-width: 1024px) {
	.ad-menu-toggle { display: none; }
}

.ad-logo {
	justify-self: center;
	display: flex;
	align-items: center;
}

.ad-logo__img {
	height: 56px;
	width: auto;
	max-height: 72px;
	object-fit: contain;
}

@media (min-width: 768px) {
	.ad-logo__img { height: 72px; max-height: 90px; }
}

.ad-icon-link {
	position: relative;
	display: inline-flex;
	padding: 0.55rem;
	color: var(--ad-black);
	transition: color 0.2s;
}

.ad-icon-link:hover { color: var(--ad-accent-bright); }

.ad-icon-link svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.25;
}

.ad-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	border-radius: 999px;
	background: var(--ad-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ad-nav {
	display: none;
	border-top: 1px solid #f0f0f0;
}

@media (min-width: 1024px) {
	.ad-nav { display: block; }
}

.ad-nav__list {
	max-width: var(--ad-max);
	margin: 0 auto;
	padding: 0.5rem 2.5rem 0.75rem;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 1.75rem;
	justify-content: center;
}

.ad-nav__item { position: relative; }

.ad-nav__item > a {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--ad-black);
	text-decoration: none;
}

.ad-nav__item > a:hover { color: var(--ad-accent-bright); }

.ad-nav__item.is-current > a,
.ad-nav__item.is-current > a:hover {
	color: var(--ad-accent);
}

.ad-nav__sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 0.5rem 0;
	list-style: none;
	z-index: 20;
}

.ad-nav__item--has-children:hover .ad-nav__sub { display: block; }

.ad-nav__sub a {
	display: block;
	padding: 0.4rem 1rem;
	font-size: 12px;
	text-decoration: none;
	color: #333;
}

.ad-nav__sub li.is-current a {
	color: var(--ad-accent);
	font-weight: 600;
}

.ad-mobile-nav {
	display: none;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	padding: 1rem;
}

.ad-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ad-mobile-nav__search {
	display: none;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
}

.ad-mobile-nav__search-input {
	width: 100%;
	border: 1px solid #d4d4d4;
	border-radius: 0;
	padding: 0.75rem 0.85rem;
	font-size: 0.9375rem;
	background: #fff;
}

.ad-mobile-nav__search-input:focus {
	outline: 2px solid var(--ad-accent);
	outline-offset: 1px;
}

.ad-mobile-nav__search-btn {
	width: 100%;
	min-height: 44px;
}

.ad-mobile-nav a {
	display: block;
	padding: 0.5rem 0;
	text-decoration: none;
	color: var(--ad-black);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 12px;
}

.ad-mobile-nav li.is-current > a {
	color: var(--ad-accent);
}

.ad-mobile-nav__sub li.is-current a {
	color: var(--ad-accent);
	font-weight: 600;
}

.ad-mobile-nav__sub {
	list-style: none;
	margin: 0 0 0.5rem;
	padding: 0 0 0 0.75rem;
	border-left: 1px solid #e5e5e5;
}

.ad-mobile-nav__sub a {
	font-weight: 500;
	font-size: 11px;
	color: #444;
	text-transform: none;
	letter-spacing: 0.04em;
}

.ad-header.is-nav-open .ad-mobile-nav {
	display: block;
}

body.ad-nav-open {
	overflow: hidden;
}

body.ad-nav-open .ad-whatsapp {
	z-index: 80;
}

body.ad-nav-open::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 90;
}

.ad-main { flex: 1; }

/* Hero — matches Vercel: tall portrait frame (min viewport height + aspect ratio) */
.ad-hero {
	position: relative;
	isolation: isolate;
	background: var(--ad-black);
	color: #fff;
	overflow: hidden;
	width: 100%;
	/* 3:4 portrait — height = max(72svh, width ÷ 3×4) */
	--ad-hero-h: max(72svh, calc(100vw * 4 / 3));
	min-height: var(--ad-hero-h);
	height: var(--ad-hero-h);
}

@media (min-width: 640px) {
	.ad-hero {
		--ad-hero-h: max(74svh, calc(100vw * 4 / 3));
	}
}

@media (min-width: 768px) {
	.ad-hero {
		/* 4:5 like Vercel md+ */
		--ad-hero-h: max(75vh, calc(100vw * 5 / 4));
	}
}

@media (min-width: 1024px) {
	.ad-hero {
		--ad-hero-h: max(92vh, calc(100vw * 5 / 4));
	}
}

@media (min-width: 1280px) {
	.ad-hero {
		/* xl: 3:4 again */
		--ad-hero-h: max(92vh, calc(100vw * 4 / 3));
	}
}

.ad-hero__slides {
	position: relative;
	height: 100%;
	min-height: inherit;
}

.ad-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s ease;
}

.ad-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ad-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 18%;
	background-repeat: no-repeat;
}

@media (min-width: 768px) {
	.ad-hero__media {
		background-position: center top;
	}
}

.ad-hero__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	height: 45%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.28) 55%,
		transparent 100%
	);
	pointer-events: none;
}

/* Editorial shell — never blur product/hero photography. */
body.afridazzles-editorial-shell img,
body.afridazzles-editorial-shell .ad-hero__media,
body.afridazzles-editorial-shell .ad-product-card__img,
body.afridazzles-editorial-shell .ad-spotlight__img {
	filter: none !important;
	-webkit-filter: none !important;
}

body.afridazzles-editorial-shell .ad-product-card__img {
	opacity: 1;
}

body.afridazzles-editorial-shell .ad-product-card__img--alt {
	opacity: 0;
}

@media (max-width: 639px) {
	.ad-hero__overlay { height: 60%; }
}

.ad-hero__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 6rem 1rem max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 3.5rem));
	pointer-events: none;
}

@media (min-width: 640px) {
	.ad-hero__content {
		padding: 7rem 1.5rem 7rem;
	}
}

@media (min-width: 768px) {
	.ad-hero__content {
		padding: 9rem 4rem 9rem;
	}
}

.ad-hero__copy {
	width: 100%;
	max-width: min(36rem, 92vw);
	text-align: left;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.42);
	pointer-events: auto;
}

.ad-hero__copy .ad-hero__eyebrow,
.ad-hero__copy .ad-hero__title {
	max-width: none;
	text-shadow: inherit;
}

.ad-hero__eyebrow {
	font-size: 0.75rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 0.65rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

@media (min-width: 640px) {
	.ad-hero__eyebrow {
		font-size: 0.8125rem;
		margin-bottom: 0.75rem;
	}
}

.ad-hero__title {
	font-family: var(--ad-serif);
	font-size: clamp(2rem, 9vw, 4.25rem);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 0;
	letter-spacing: -0.02em;
}

@media (min-width: 640px) {
	.ad-hero__title {
		font-size: clamp(2.25rem, 8vw, 4.25rem);
	}
}

.ad-hero__content .ad-btn--light {
	align-self: flex-start;
	width: 100%;
	min-width: 0;
	max-width: 20rem;
	min-height: 48px;
	margin-top: 1.75rem;
	padding: 0 1.5rem;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.3em;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
	.ad-hero__content .ad-btn--light {
		width: auto;
		margin-top: 2.25rem;
		padding: 0 2.5rem;
	}
}

@media (min-width: 768px) {
	.ad-hero__content .ad-btn--light { margin-top: 2.75rem; }
}

.ad-hero__meta {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: max(1rem, env(safe-area-inset-bottom, 0px));
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
}

@media (min-width: 768px) {
	.ad-hero__meta {
		left: 4rem;
		right: 4rem;
		bottom: 1.5rem;
	}
}

.ad-hero__meta > * {
	pointer-events: auto;
}

.ad-hero__counter {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.ad-hero__dots {
	display: flex;
	gap: 0.5rem;
}

.ad-hero__dots button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
}

.ad-hero__dots button[aria-selected="true"] {
	background: #fff;
	width: 24px;
}

/* Buttons */
.ad-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.6rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
}

.ad-btn--light {
	background: #fff;
	color: var(--ad-black);
	border-color: #fff;
}

.ad-btn--light:hover {
	background: var(--ad-accent-bright);
	border-color: var(--ad-accent-bright);
	color: var(--ad-black);
}

.ad-hero__content .ad-btn--light:hover {
	background: var(--ad-accent);
	border-color: var(--ad-accent);
	color: #fff;
}

.ad-btn--outline {
	background: transparent;
	color: var(--ad-black);
	border-color: var(--ad-black);
}

.ad-btn--outline:hover {
	background: var(--ad-black);
	color: #fff;
}

.ad-btn--dark {
	background: var(--ad-black);
	color: #fff;
	border-color: var(--ad-black);
}

.ad-btn--dark:hover {
	background: var(--ad-accent-bright);
	border-color: var(--ad-accent-bright);
	color: var(--ad-black);
}

/* Highlights — hidden on mobile like Vercel */
.ad-highlights {
	display: none;
	border-bottom: 1px solid #e5e5e5;
	background: #fff;
}

@media (min-width: 768px) {
	.ad-highlights {
		display: block;
	}
}

.ad-highlights ul {
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	border-top: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
	.ad-highlights ul {
		flex-direction: row;
		border-top: 0;
	}
}

.ad-highlights li {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ad-black);
	text-align: center;
	line-height: 1.45;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
	.ad-highlights li {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 4.25rem;
		padding: 0 1.25rem;
		border-bottom: 0;
		border-right: 1px solid #e5e5e5;
		font-size: 11px;
	}

	.ad-highlights li:last-child {
		border-right: 0;
	}
}

/* Sections */
.ad-collection,
.ad-spotlight,
.ad-reviews,
.ad-instagram,
.ad-featured {
	max-width: var(--ad-max);
	margin: 0 auto;
	padding: 3rem 1rem;
}

@media (min-width: 768px) {
	.ad-collection,
	.ad-spotlight,
	.ad-reviews,
	.ad-instagram,
	.ad-featured {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.ad-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ad-section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ad-section-title {
	font-family: var(--ad-serif);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	margin: 0;
	letter-spacing: -0.02em;
}

.ad-section-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ad-carousel-btn {
	width: 40px;
	height: 40px;
	border: 1px solid #d4d4d4;
	background: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	line-height: 1;
}

.ad-carousel-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.ad-link {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ad-black);
	text-decoration: none;
}

.ad-link:hover { color: var(--ad-accent); }

/* Product carousel */
.ad-collection__viewport {
	overflow: hidden;
}

.ad-collection__track {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: transform 0.45s ease;
	will-change: transform;
}

.ad-product-card {
	flex: 0 0 calc(50% - 0.5rem);
	min-width: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.ad-product-card { flex-basis: calc(33.333% - 0.67rem); }
}

@media (min-width: 1024px) {
	.ad-product-card { flex-basis: calc(25% - 0.75rem); }
}

.ad-product-card__media {
	position: relative;
	display: block;
	background: var(--ad-cream);
	aspect-ratio: 3/4;
	overflow: hidden;
	text-decoration: none;
}

.ad-product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	background: var(--ad-black);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.25rem 0.5rem;
}

.ad-product-card__images {
	position: relative;
	height: 100%;
}

.ad-product-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.35s ease;
}

.ad-product-card__img--alt {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.ad-product-card__media:hover .ad-product-card__img--alt { opacity: 1; }
.ad-product-card__media:hover .ad-product-card__img:not(.ad-product-card__img--alt) { opacity: 0; }

.ad-product-card__nav {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.35rem;
	opacity: 0;
	transition: opacity 0.2s;
	pointer-events: none;
}

.ad-product-card__media:hover .ad-product-card__nav {
	opacity: 1;
	pointer-events: auto;
}

.ad-product-card__arrow {
	width: 32px;
	height: 32px;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	font-size: 1.1rem;
	cursor: pointer;
}

.ad-product-card__body { padding-top: 0.75rem; }

.ad-product-card__quick {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ad-accent);
	text-decoration: none;
}

.ad-product-card__title {
	font-family: var(--ad-serif);
	font-size: 1.05rem;
	font-weight: 500;
	margin: 0.35rem 0;
}

.ad-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.ad-product-card__price {
	font-size: 0.875rem;
	color: #333;
}

.ad-product-card__price del {
	opacity: 0.55;
	margin-right: 0.35rem;
}

/* Spotlight */
.ad-spotlight {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.ad-spotlight {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 3rem;
	}
}

.ad-spotlight__gallery {
	position: relative;
	background: var(--ad-cream);
	aspect-ratio: 4/5;
	overflow: hidden;
}

.ad-spotlight__figure {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.ad-spotlight__figure.is-active { opacity: 1; }

.ad-spotlight__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ad-spotlight__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 0;
	background: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
	cursor: pointer;
	z-index: 2;
}

.ad-spotlight__arrow--prev { left: 0.75rem; }
.ad-spotlight__arrow--next { right: 0.75rem; }

.ad-spotlight__count {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.9);
	padding: 0.25rem 0.5rem;
}

.ad-spotlight__badge,
.ad-spotlight__cat {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
}

.ad-spotlight__title {
	font-family: var(--ad-serif);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0 0 1rem;
	font-weight: 500;
}

.ad-spotlight__excerpt {
	color: #444;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ad-spotlight__price {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.ad-spotlight__cart .single_add_to_cart_button {
	background: var(--ad-black);
	color: #fff;
	border: 0;
	padding: 0.9rem 1.5rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	width: 100%;
	max-width: 320px;
	cursor: pointer;
}

.ad-spotlight__form {
	margin: 0;
}

.ad-spotlight__cart .quantity,
.ad-spotlight__cart .styler-wishlist-btn,
.ad-spotlight__cart .styler-compare-btn,
.ad-spotlight__cart .styler-btn-buynow {
	display: none !important;
}

.ad-spotlight__cart .variations {
	margin: 0 0 1rem;
}

.ad-spotlight__cart .variations td,
.ad-spotlight__cart .variations th {
	display: block;
	padding: 0;
	border: 0;
}

.ad-spotlight__cart .variations label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.ad-spotlight__cart .variations select {
	width: 100%;
	max-width: none;
	border: 1px solid #d4d4d4;
	border-radius: 0;
	padding: 0.65rem 0.75rem;
	background: #fff;
}

.ad-spotlight__note a {
	font-size: 12px;
	color: #666;
}

/* Reviews */
.ad-reviews {
	background: var(--ad-cream);
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.ad-reviews > .ad-section-head,
.ad-reviews__wrap {
	max-width: var(--ad-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 768px) {
	.ad-reviews > .ad-section-head,
	.ad-reviews__wrap {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.ad-reviews__meta {
	margin: 0;
	font-size: 12px;
	color: #666;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ad-reviews .cr-reviews-slider,
.ad-reviews .cr-slider-review {
	font-family: var(--ad-sans);
}

.ad-reviews .cr-reviews-slider {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: 0 1rem;
}

.ad-reviews .cr-review-card {
	border: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.ad-reviews .cr-slider-review-content {
	font-size: 1rem;
	line-height: 1.65;
	color: #444;
}

.ad-reviews .cr-slider-review-title,
.ad-reviews .cr-slider-review-author {
	font-family: var(--ad-sans);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
}

.ad-reviews .cr-reviews-slider .crstar-rating-svg {
	justify-content: center;
	margin: 0.5rem auto 1rem;
}

.ad-reviews .cr-reviews-slider .slick-prev,
.ad-reviews .cr-reviews-slider .slick-next {
	width: 2.5rem;
	height: 2.5rem;
	z-index: 2;
}

.ad-reviews .cr-reviews-slider .slick-prev::before,
.ad-reviews .cr-reviews-slider .slick-next::before {
	color: var(--ad-black);
	opacity: 0.85;
}

.ad-reviews-fallback {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.75rem;
	max-width: 720px;
	margin: 0 auto;
}

.ad-reviews-fallback__track {
	min-width: 0;
}

.ad-reviews-fallback .ad-review {
	display: none;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.ad-reviews-fallback .ad-review.is-active { display: block; }

.ad-reviews__prev,
.ad-reviews__next {
	flex-shrink: 0;
}

.ad-reviews__prev:disabled,
.ad-reviews__next:disabled {
	opacity: 0.35;
	cursor: default;
}

.ad-reviews__dots {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.ad-reviews__dots button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: 0;
	background: #d4d4d4;
	cursor: pointer;
	padding: 0;
}

.ad-reviews__dots button[aria-selected="true"] {
	background: var(--ad-black);
	width: 24px;
}

.ad-review__stars { color: var(--ad-accent); letter-spacing: 0.15em; }
.ad-review__title { font-family: var(--ad-serif); font-size: 1.5rem; margin: 0.5rem 0; }
.ad-review__body { color: #444; line-height: 1.6; margin-bottom: 1rem; }

.ad-review footer {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #666;
}

.ad-review cite {
	font-style: normal;
	font-weight: 700;
	color: var(--ad-black);
}

/* Instagram */
.ad-instagram {
	text-align: center;
}

.ad-instagram__panel {
	max-width: 42rem;
	margin: 1.5rem auto 0;
	padding: 3rem 1.5rem;
	border: 1px dashed #d4d4d4;
	background: var(--ad-cream);
}

.ad-instagram__note {
	max-width: 36rem;
	margin: 0 auto 1.5rem;
	color: #555;
	line-height: 1.6;
}

.ad-instagram__embed {
	max-width: 960px;
	margin: 1.5rem auto 0;
	overflow: hidden;
}

.ad-instagram__embed iframe {
	width: 100%;
	min-height: 420px;
	border: 0;
}

.ad-instagram__follow {
	margin-top: 1.25rem;
	text-align: center;
}

.ad-instagram__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.ad-instagram__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ad-instagram__grid img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

/* Featured grid */
.ad-featured__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0;
	color: var(--ad-accent);
}

.ad-featured__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.ad-featured__grid { grid-template-columns: repeat(4, 1fr); }
}

.ad-featured__grid .ad-product-card { flex-basis: auto; }

.ad-collection__empty,
.ad-featured__empty {
	color: #666;
	font-style: italic;
	padding: 1rem 1.5rem 2rem;
}

/* Footer */
.ad-footer {
	background: #0a0a0a;
	color: rgba(255, 255, 255, 0.82);
	padding: 3rem 1rem 2rem;
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.ad-footer { padding: 3rem 2.5rem 2rem; }
}

.ad-footer__grid {
	max-width: var(--ad-max);
	margin: 0 auto 2rem;
	display: grid;
	gap: 2rem;
}

@media (min-width: 900px) {
	.ad-footer__grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
}

.ad-footer__name {
	font-family: var(--ad-serif);
	font-size: 1.5rem;
	color: #fff;
	margin: 0 0 0.75rem;
}

.ad-footer__heading {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 1rem;
}

.ad-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ad-footer a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 14px;
}

.ad-footer a:hover { color: var(--ad-accent-bright); }

.ad-footer li { margin-bottom: 0.35rem; }

.ad-newsletter {
	display: flex;
	gap: 0.5rem;
	margin: 1rem 0;
}

.ad-newsletter input {
	flex: 1;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: transparent;
	color: #fff;
	padding: 0.65rem 0.75rem;
}

.ad-newsletter button {
	background: var(--ad-accent);
	border: 0;
	color: #000;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.65rem 1rem;
	cursor: pointer;
}

.ad-footer__fine { font-size: 12px; color: rgba(255, 255, 255, 0.55); }

.ad-footer__notice {
	margin: 0.75rem 0 0;
	font-size: 12px;
	color: var(--ad-accent-bright);
}

.ad-footer__notice--error {
	color: #ffb4b4;
}

@media (max-width: 639px) {
	.ad-header__actions .ad-icon-link:not(.ad-icon-link--cart) {
		display: none;
	}
}

@media (max-width: 1023px) {
	.ad-header__left .ad-search {
		display: none;
	}

	.ad-mobile-nav__search {
		display: flex;
	}

	.ad-mobile-nav {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: var(--ad-mobile-nav-top, 7rem);
		z-index: 120;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 1rem 1.25rem max(1.5rem, env(safe-area-inset-bottom));
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	}

	.ad-header.is-nav-open .ad-mobile-nav {
		display: block;
	}

	.ad-header.is-nav-open {
		z-index: 130;
	}
}

@media (max-width: 767px) {
	.ad-app {
		overflow-x: hidden;
	}

	.ad-announcement {
		padding: 0.5rem 0.75rem;
		font-size: 9px;
		letter-spacing: 0.14em;
		line-height: 1.45;
	}

	.ad-announcement__desktop {
		display: none;
	}

	.ad-announcement__mobile {
		display: block;
	}

	.ad-marquee {
		display: none;
	}

	.ad-region {
		display: none;
	}

	.ad-header__inner {
		grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
		padding: 0.6rem 0.75rem;
		gap: 0.35rem;
		min-height: 56px;
	}

	.ad-header__left {
		gap: 0;
		min-width: 0;
	}

	.ad-header__actions {
		gap: 0;
		min-width: 0;
	}

	.ad-menu-toggle {
		padding: 0.45rem 0.6rem;
		font-size: 9px;
		letter-spacing: 0.2em;
		white-space: nowrap;
	}

	.ad-nav {
		display: none;
	}

	.ad-logo {
		justify-self: center;
		min-width: 0;
		max-width: 100%;
	}

	.ad-logo__img {
		height: 44px;
		max-height: 48px;
		width: auto;
		max-width: min(140px, 42vw);
	}

	.ad-icon-link {
		padding: 0.45rem;
	}

	.ad-icon-link svg {
		width: 20px;
		height: 20px;
	}

	.ad-hero__content {
		padding: 4.5rem 1rem max(5rem, calc(env(safe-area-inset-bottom, 0px) + 3rem));
	}

	.ad-hero__content .ad-btn--light {
		margin-top: 1.75rem;
	}

	.ad-hero__meta {
		left: 1rem;
		right: 1rem;
		bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
	}

	.ad-hero__counter {
		font-size: 10px;
	}

	.ad-collection,
	.ad-spotlight,
	.ad-reviews,
	.ad-instagram,
	.ad-featured {
		padding: 3.5rem 1.25rem;
	}

	.ad-section-head {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.ad-featured .ad-section-head,
	.ad-collection .ad-section-head {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.ad-section-actions,
	.ad-featured .ad-link,
	.ad-collection .ad-link {
		margin-left: auto;
	}

	.ad-collection__track {
		gap: 1.5rem;
	}

	.ad-instagram__panel {
		padding: 2rem 1rem;
	}

	.ad-spotlight {
		gap: 1.5rem;
	}

	.ad-featured__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.ad-newsletter {
		flex-direction: column;
	}

	.ad-newsletter button {
		width: 100%;
	}

	.ad-footer {
		padding: 2.25rem 0.85rem max(4.5rem, calc(env(safe-area-inset-bottom, 0px) + 1.5rem));
	}

	.ad-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ad-whatsapp {
		width: 46px;
		height: 46px;
	}
}

.ad-footer__trust {
	max-width: var(--ad-max);
	margin: 0 auto 1.5rem;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
}

.ad-footer__payments {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.25rem;
	max-width: var(--ad-max);
	margin: 0 auto 1.25rem;
	padding: 0 1rem;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.ad-footer__legal {
	max-width: var(--ad-max);
	margin: 0 auto 1rem;
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.ad-footer__copy {
	max-width: var(--ad-max);
	margin: 0 auto;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
}

.ad-whatsapp {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	z-index: 120;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ad-whatsapp svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

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