/* AR Outlet — luxury design system */

:root {
	--aro-black: #050505;
	--aro-black-soft: #0B0B0B;
	--aro-card: #111111;
	--aro-purple: #8A2BE2;
	--aro-purple-lux: #B04CFF;
	--aro-pink: #E83E9F;
	--aro-gold: #D4AF37;
	--aro-gold-soft: #F1D48A;
	--aro-white: #FFFFFF;
	--aro-muted: #B8B8B8;
	--aro-line: rgba(212, 175, 55, 0.28);
	--aro-glass: rgba(255, 255, 255, 0.04);
	--aro-glass-border: rgba(255, 255, 255, 0.12);
	--aro-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--aro-sans: "Outfit", system-ui, sans-serif;
	--aro-radius: 18px;
	--aro-header-h: 118px;
	--aro-hero-h: 600px;
	--aro-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--aro-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
	--aro-max: 1240px;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body.aroutlet-theme {
	margin: 0;
	background: var(--aro-black);
	color: var(--aro-white);
	font-family: var(--aro-sans);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.aroutlet-theme::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(900px 500px at 10% -10%, rgba(138, 43, 226, 0.22), transparent 55%),
		radial-gradient(700px 400px at 100% 0%, rgba(176, 76, 255, 0.12), transparent 50%);
}

body.aroutlet-theme > * {
	position: relative;
	z-index: 1;
}

body.aroutlet-theme > .aro-announce {
	z-index: 90;
}

body.aroutlet-theme > .aro-header {
	z-index: 100;
	overflow: visible;
}

body.aroutlet-theme > .aro-drawer {
	z-index: 200;
	position: fixed;
}

body.aroutlet-theme > .aro-top {
	position: fixed;
	z-index: 180;
}

body.aroutlet-theme > .aro-wa-float {
	position: fixed;
	z-index: 220;
	pointer-events: auto;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--aro-ease), opacity 0.25s var(--aro-ease);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--aro-serif);
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

button,
input,
select,
textarea {
	font-family: inherit;
}

.aro-container {
	width: min(var(--aro-max), calc(100% - 40px));
	margin-inline: auto;
}

.aro-main {
	min-height: 40vh;
}

.aro-main--full {
	width: 100%;
}

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

.skip-link:focus {
	clip: auto;
	height: auto;
	width: auto;
	z-index: 100000;
	background: var(--aro-gold);
	color: var(--aro-black);
	padding: 8px 16px;
}

/* Buttons & UI */

.aro-kicker {
	color: var(--aro-gold);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-size: 0.72rem;
	font-weight: 500;
	margin: 0 0 12px;
}

.aro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: transparent;
	font-family: var(--aro-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.3s var(--aro-ease), box-shadow 0.3s var(--aro-ease), background 0.3s var(--aro-ease), border-color 0.3s var(--aro-ease);
}

.aro-btn--purple,
.aro-btn--primary {
	background: linear-gradient(135deg, var(--aro-purple), var(--aro-purple-lux));
	color: var(--aro-white);
	box-shadow: 0 10px 30px rgba(138, 43, 226, 0.35);
}

.aro-btn--purple:hover,
.aro-btn--primary:hover {
	transform: translateY(-2px);
	color: var(--aro-white);
	filter: brightness(1.06);
}

.aro-btn--gold {
	background: linear-gradient(135deg, var(--aro-gold-soft), var(--aro-gold));
	color: #1a1200;
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.aro-btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.aro-btn--ghost {
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--aro-white);
	background: transparent;
}

.aro-btn--ghost:hover {
	border-color: var(--aro-purple-lux);
	background: rgba(176, 76, 255, 0.1);
	color: var(--aro-white);
}

.aro-btn--dark {
	background: #1a1216;
	color: var(--aro-white);
	border-color: #2a2a2a;
}

.aro-btn--dark:hover {
	background: #241820;
	transform: translateY(-1px);
}

.aro-btn--buy-now {
	min-height: 48px;
}

.aro-link {
	color: var(--aro-gold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.aro-link:hover {
	color: var(--aro-gold-soft);
}

.aro-icon-btn {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--aro-glass-border);
	border-radius: 50%;
	background: var(--aro-glass);
	color: var(--aro-white);
	cursor: pointer;
	padding: 0;
}

.aro-icon-btn svg,
.aro-icon {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: -0.15em;
}

/* Announcement */

.aro-announce {
	background: linear-gradient(90deg, #1a0828, #3b0f63 50%, #1a0828);
	border-bottom: 1px solid var(--aro-line);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	overflow: hidden;
	height: 38px;
}

.aro-announce__viewport {
	overflow: hidden;
	height: 38px;
}

.aro-announce__track {
	display: flex;
	align-items: center;
	width: max-content;
	height: 38px;
	animation: aro-announce-scroll 32s linear infinite;
}

.aro-announce__group {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0 48px;
	white-space: nowrap;
	color: #fff;
}

.aro-announce__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--aro-gold);
	flex-shrink: 0;
}

.aro-announce__help {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	white-space: nowrap;
}

.aro-announce__help svg {
	width: 14px;
	height: 14px;
	color: #25d366;
}

.aro-announce:hover .aro-announce__track {
	animation-play-state: paused;
}

@keyframes aro-announce-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.aro-announce__track {
		animation: none;
	}
}

/* Header */

.aro-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 5, 5, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--aro-glass-border);
}

html.admin-bar .aro-header {
	top: 32px;
}

body.aro-drawer-open,
body.aro-filters-open {
	overflow: hidden;
}

.aro-shop-sidebar__close {
	display: none;
	margin-bottom: 12px;
}

.aro-header__bar {
	width: min(var(--aro-max), calc(100% - 32px));
	margin: 0 auto;
	min-height: 96px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.aro-header__toggle,
.aro-header__search-toggle {
	display: none;
	flex-shrink: 0;
}

.aro-header__brand {
	flex-shrink: 0;
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.aro-header__brand .custom-logo,
.aro-header__brand img,
.custom-logo {
	height: 88px;
	max-height: 88px;
	width: auto;
	max-width: 320px;
	object-fit: contain;
}

.aro-search {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	background: var(--aro-white);
	border: 0;
	border-radius: 999px;
	overflow: hidden;
}

.aro-search__cats select,
.aro-search input {
	background: transparent;
	color: #222;
	border: 0;
	font-family: inherit;
	font-size: 0.9rem;
	outline: none;
}

.aro-search__cats {
	border-right: 1px solid #e5e5e5;
	flex-shrink: 0;
}

.aro-search__cats select {
	padding: 12px 14px;
	max-width: 150px;
}

.aro-search input[type="search"] {
	flex: 1;
	padding: 12px 14px;
	min-width: 0;
}

.aro-search input::placeholder {
	color: #888;
}

.aro-search__submit {
	background: var(--aro-purple);
	border: 0;
	color: var(--aro-white);
	width: 52px;
	height: 46px;
	border-radius: 0 999px 999px 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.aro-search__submit svg {
	width: 18px;
	height: 18px;
}

.aro-search.is-open {
	display: flex;
}

.aro-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.aro-header__wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	background: #128c4a;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.aro-header__wa svg {
	width: 18px;
	height: 18px;
}

.aro-header__action {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 0.68rem;
	color: var(--aro-white);
	min-width: 52px;
}

.aro-header__action svg {
	width: 18px;
	height: 18px;
}

.aro-header__cart {
	position: relative;
	display: inline-flex;
}

.aro-cart-count,
.aro-wishlist-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 99px;
	background: var(--aro-purple-lux);
	color: var(--aro-white);
	font-size: 0.65rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aro-cart-count.is-empty,
.aro-wishlist-count.is-empty,
.is-empty.aro-cart-count,
.is-empty.aro-wishlist-count {
	display: none;
}

/* Nav */

.aro-nav {
	background: linear-gradient(90deg, #6b1cc0, #8A2BE2 40%, #B04CFF);
	width: 100%;
	min-height: 48px;
	border-top: 0;
	display: block;
	overflow: visible;
	position: relative;
	z-index: 5;
}

.aro-nav__inner {
	width: min(var(--aro-max), calc(100% - 32px));
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
}

.aro-nav .aro-cats {
	position: relative;
}

.aro-cats__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 16px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	font-family: inherit;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
}

.aro-cats__btn[aria-expanded="true"] {
	background: rgba(0, 0, 0, 0.55);
}

.aro-cats__btn svg {
	width: 16px;
	height: 16px;
}

.aro-cats__menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 400;
	min-width: min(320px, 86vw);
	max-height: min(70vh, 480px);
	overflow: auto;
	background: #0B0710;
	border: 1px solid rgba(176, 76, 255, 0.35);
	padding: 8px 0;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.aro-cats__menu[hidden] {
	display: none !important;
}

.aro-cats__menu a {
	display: block;
	padding: 10px 16px;
	color: #fff;
	font-size: 0.9rem;
}

.aro-cats__menu a:hover {
	background: var(--aro-purple);
}

.aro-nav__list {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	gap: 8px 26px;
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.aro-nav__list a {
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
}

.aro-nav__list a:hover,
.aro-nav__list .current-menu-item > a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 6px;
}

.aro-nav__social {
	display: flex;
	gap: 10px;
}

.aro-nav__social a,
.aro-nav__social span {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	color: #fff;
	pointer-events: auto;
	cursor: pointer;
}

.aro-nav__social svg {
	width: 16px;
	height: 16px;
}

.aro-nav__social .is-placeholder {
	opacity: 0.45;
}

/* Drawer */

.aro-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(0, 0, 0, 0.72);
}

.aro-drawer[hidden] {
	display: none !important;
}

.aro-drawer__panel {
	width: min(360px, 88vw);
	height: 100%;
	background: #0b0710 !important;
	color: #fff;
	padding: 24px;
	overflow: auto;
	box-shadow: 12px 0 40px rgba(0, 0, 0, 0.4);
	position: relative;
	z-index: 2;
}

.aro-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.aro-drawer__head strong {
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-family: var(--aro-sans);
	font-size: 0.78rem;
	color: #fff;
}

.aro-drawer__panel .aro-icon-btn {
	background: var(--aro-purple);
	border: 0;
	color: #fff;
}

.aro-drawer__list {
	list-style: none;
	padding: 16px 0 0;
	margin: 0;
}

.aro-drawer__list a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

.aro-drawer__list a:hover {
	color: var(--aro-gold);
}

.aro-drawer__cats {
	margin-top: 28px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aro-drawer__cats h3 {
	color: var(--aro-gold);
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.aro-drawer__cats a {
	display: block;
	padding: 10px 0;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.92rem;
}

.aro-drawer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aro-drawer__social a,
.aro-drawer__social span {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: #fff;
	pointer-events: auto;
}

.aro-drawer__social a[href*="whatsapp"],
.aro-drawer__social a[data-aro-whatsapp] {
	background: #128c4a;
}

/* Hero */

.aro-hero {
	position: relative;
	height: var(--aro-hero-h, var(--aro-hero-height, 600px));
	overflow: hidden;
	background: var(--aro-black);
	color: var(--aro-white);
}

.aro-hero__track,
.aro-hero__slide {
	height: 100%;
}

.aro-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	background: var(--aro-card) center / cover no-repeat;
	transition: opacity 0.7s var(--aro-ease);
	pointer-events: none;
}

.aro-hero__slide.is-active {
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.aro-hero__media,
.aro-hero__placeholder,
.aro-hero__overlay {
	position: absolute;
	inset: 0;
}

.aro-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

.aro-hero__overlay {
	background: linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.25));
}

.aro-hero__placeholder {
	background:
		radial-gradient(circle at 70% 40%, rgba(176, 76, 255, 0.35), transparent 42%),
		radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.18), transparent 40%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.2), #050505);
}

.aro-hero__content {
	position: relative;
	z-index: 2;
	max-width: var(--aro-max);
	margin: 0 auto;
	padding: 4rem 1.25rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.aro-hero__label {
	letter-spacing: 0.28em;
	font-size: 0.72rem;
	color: var(--aro-purple-lux);
	margin: 0 0 0.8rem;
}

.aro-hero__heading,
.aro-hero h1 {
	font-family: var(--aro-serif);
	font-size: clamp(2.1rem, 4.6vw, 4.2rem);
	line-height: 0.92 !important;
	font-weight: 500;
	margin: 0 0 0.7rem;
	white-space: normal;
}

.aro-hero__heading br {
	line-height: 0;
}

.aro-hero__text {
	max-width: 32rem;
	color: var(--aro-muted);
	margin: 0 0 1.5rem;
	font-size: 1.05rem;
}

.aro-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.aro-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1.2rem;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 0.45rem;
}

.aro-hero__dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.aro-hero__dots button.is-active {
	background: var(--aro-purple-lux);
}

.aro-hero__arrow,
.aro-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
	display: grid;
	place-items: center;
}

.aro-hero__arrow--prev,
.aro-hero__nav--prev {
	left: 18px;
}

.aro-hero__arrow--next,
.aro-hero__nav--next {
	right: 18px;
}

/* Sections */

.aro-section {
	padding: 88px 0;
}

.aro-section__head,
.aro-section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 36px;
	gap: 16px;
}

.aro-section__head h2,
.aro-section-head h2,
.aro-page-banner h1 {
	font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.aro-section-head {
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
}

/* Trust / benefits */

.aro-trust,
.aro-benefits {
	background: var(--aro-black-soft);
	border-top: 1px solid var(--aro-glass-border);
	border-bottom: 1px solid var(--aro-glass-border);
	padding: 22px 0;
}

.aro-trust__grid,
.aro-benefits__grid {
	width: min(var(--aro-max), calc(100% - 40px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.aro-trust__item,
.aro-benefits__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.82rem;
	color: var(--aro-white);
}

.aro-trust__item strong,
.aro-benefits__item strong {
	display: block;
	color: var(--aro-white);
}

.aro-trust__item span,
.aro-benefits__item span {
	display: block;
	color: var(--aro-muted);
}

.aro-trust__icon,
.aro-benefits__icon {
	color: var(--aro-purple-lux);
	font-size: 1.35rem;
	flex-shrink: 0;
}

/* Category cards */

.aro-categories__grid,
.aro-cats__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

section.aro-categories,
.aro-products {
	padding: 3rem 1.25rem;
	max-width: var(--aro-max);
	margin: 0 auto;
}

.aro-cat-card,
.aro-cats__card,
.aro-categories__card {
	position: relative;
	min-height: 380px;
	min-width: 0;
	border-radius: 28px;
	overflow: hidden;
	display: flex;
	align-items: end;
	box-shadow: var(--aro-shadow);
	background: var(--aro-card) center / cover no-repeat;
}

.aro-cat-card img,
.aro-cat-card__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aro-cat-card--jewelry {
	background:
		radial-gradient(circle at 30% 20%, #fff, transparent 40%),
		linear-gradient(160deg, #fff5f8 0%, #f3c1d0 45%, #d48aa3 100%);
}

.aro-cat-card--gifts {
	background:
		radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.35), transparent 35%),
		linear-gradient(160deg, #1b1224, #3a2060);
}

.aro-cat-card__body,
.aro-cats__overlay,
.aro-categories__overlay {
	position: relative;
	z-index: 2;
	padding: 36px;
	width: 100%;
	background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.78));
	color: var(--aro-white);
}

.aro-cat-card--jewelry .aro-cat-card__body {
	background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.72));
	color: #fff;
}

.aro-cat-card--jewelry .aro-kicker {
	color: #9a4060;
}

.aro-cat-card:hover img,
.aro-cat-card:hover {
	transform: none;
}

.aro-cat-card:hover img,
.aro-cats__card:hover,
.aro-categories__card:hover {
	filter: brightness(1.05);
}

.aro-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.aro-products__grid > *,
.aro-benefits__item,
.aro-categories__card,
.aro-paypromo__card {
	min-width: 0;
}

.aro-products__grid ul.products {
	display: contents;
}

/* Payment glass */

.aro-pay-or,
.aro-paypromo,
.aro-pay-benefits__grid {
	max-width: var(--aro-max);
	margin: 0 auto 2.5rem;
	padding: 0 1.25rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.aro-pay-or {
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	padding: 8px;
	border: 1px solid rgba(176, 76, 255, 0.45);
	border-radius: 28px;
	box-shadow: 0 0 40px rgba(138, 43, 226, 0.2);
}

.aro-pay-or__badge {
	align-self: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--aro-purple);
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--aro-white);
}

.aro-glass-card,
.aro-paypromo__card {
	padding: 40px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(176, 76, 255, 0.12), rgba(255, 255, 255, 0.03));
	border: 1px solid var(--aro-glass-border);
	backdrop-filter: blur(16px);
	color: var(--aro-white);
}

.aro-glass-card--alt {
	background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.03));
}

.aro-glass-card ul {
	padding-left: 18px;
	color: var(--aro-muted);
}

.aro-glass-card__note {
	color: var(--aro-gold);
}

.aro-paypromo__card span {
	color: var(--aro-purple-lux);
	font-size: 1.6rem;
}

.aro-paypromo__card h3 {
	margin: 0.6rem 0;
}

/* Instagram */

.aro-instagram,
.aro-insta {
	max-width: var(--aro-max);
	margin: 0 auto 3rem;
	padding: 0 1.25rem;
}

.aro-instagram__row {
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 16px;
	align-items: stretch;
}

.aro-instagram__grid,
.aro-insta__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.aro-instagram__item,
.aro-instagram__item--ph,
.aro-insta__grid img,
.aro-insta__grid a,
.aro-insta__grid span {
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(145deg, #1b1028, #3a1860);
	border: 1px solid var(--aro-glass-border);
	display: block;
}

.aro-instagram__item img,
.aro-insta__grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
	aspect-ratio: auto;
}

.aro-instagram__cta {
	background: linear-gradient(180deg, #8A2BE2, #4b0e8a);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	color: var(--aro-white);
}

/* Footer */

.aro-footer {
	margin-top: 40px;
	padding-top: 72px;
	background: #07050a;
	border-top: 1px solid var(--aro-line);
}

.aro-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
	gap: 32px;
}

.aro-footer-widget__title {
	font-size: 1.35rem;
	color: var(--aro-gold);
}

.aro-footer-logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.aro-footer-logo img,
.aro-footer-logo .custom-logo {
	height: 110px;
	max-height: 110px;
	width: auto;
	max-width: 340px;
	object-fit: contain;
	margin-bottom: 12px;
}

.aro-footer p,
.aro-footer li {
	color: var(--aro-muted);
	font-size: 0.92rem;
}

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

.aro-footer li + li {
	margin-top: 8px;
}

.aro-footer a:hover {
	color: var(--aro-gold);
}

.aro-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.aro-footer__social a,
.aro-footer__social span {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--aro-line);
	border-radius: 50%;
	color: var(--aro-gold);
	pointer-events: auto;
	cursor: pointer;
}

.aro-footer__social svg {
	width: 16px;
	height: 16px;
}

.aro-newsletter {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--aro-white);
}

.aro-newsletter__row {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.aro-newsletter input[type="email"] {
	flex: 1;
	min-width: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--aro-glass-border);
	color: #fff;
	border-radius: 999px;
	padding: 12px 16px;
}

.aro-footer__bottom {
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
}

.aro-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.aro-pay-icons {
	display: flex;
	gap: 8px;
}

.aro-pay-icon {
	min-width: 52px;
	height: 32px;
	display: grid;
	place-items: center;
	border: 1px solid var(--aro-glass-border);
	border-radius: 6px;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	color: var(--aro-gold);
}

/* Floats */

.aro-wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 220;
	pointer-events: auto;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.aro-wa-float svg {
	width: 28px;
	height: 28px;
}

.aro-top {
	position: fixed;
	right: 20px;
	left: auto;
	bottom: 88px;
	z-index: 180;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--aro-purple);
	color: #fff;
	cursor: pointer;
	font-size: 1.1rem;
}

/* Pages */

.aro-page {
	padding: 48px 0 80px;
}

.aro-page__content {
	color: var(--aro-muted);
	max-width: 760px;
}

body.woocommerce-cart .aro-page__content,
body.woocommerce-checkout .aro-page__content,
body.woocommerce-account .aro-page__content,
body.woocommerce-page .aro-page__content,
.page-contact-us .aro-page__content,
.page-wishlist .aro-page__content,
.page-track-order .aro-page__content,
.aro-page__content:has(.woocommerce),
.aro-page__content:has(.aro-contact),
.aro-page__content:has(.aro-wishlist),
.aro-page__content:has(.aro-track) {
	max-width: none;
	width: 100%;
}

.aro-page__content h1,
.aro-page__content h2,
.aro-page__content h3 {
	color: var(--aro-white);
}

.aro-page--elementor,
.aro-main--full .aro-page {
	padding: 0;
	width: 100%;
	max-width: none;
}

.aro-page-banner {
	background:
		linear-gradient(90deg, rgba(74, 14, 138, 0.92), rgba(5, 5, 5, 0.75)),
		#111 center / cover;
	padding: 48px 0;
	margin-bottom: 8px;
}

.aro-page-banner h1 {
	color: var(--aro-white);
}

.aro-breadcrumb,
.woocommerce-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--aro-muted);
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.aro-breadcrumb a,
.woocommerce-breadcrumb a {
	color: var(--aro-gold);
}

.aro-404,
.aro-empty {
	min-height: 40vh;
	padding: 80px 1rem;
	text-align: center;
	color: var(--aro-muted);
}

.aro-404 h1 {
	color: var(--aro-white);
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.aro-empty p {
	margin-bottom: 1.5rem;
}

/* Contact */

.aro-contact-layout,
.aro-contact {
	display: grid;
	grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
	gap: 48px;
	padding: 8px 0 40px;
	color: var(--aro-white);
	width: 100%;
	max-width: none;
}

.aro-contact-form,
.aro-contact__form {
	max-width: none;
	width: 100%;
}

.aro-contact-form label,
.aro-contact__form label,
.aro-contact-form label {
	display: block;
	margin-bottom: 6px;
	color: var(--aro-gold);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aro-contact-form input,
.aro-contact-form textarea,
.aro-contact input,
.aro-contact textarea,
.aro-track input {
	width: 100%;
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--aro-glass-border);
	color: #fff;
	border-radius: 12px;
	padding: 12px 14px;
	font-family: inherit;
}

.aro-contact-meta,
.aro-contact__meta ul {
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--aro-muted);
}

.aro-contact-meta a,
.aro-contact__meta a {
	color: var(--aro-purple-lux);
}

.aro-map-placeholder {
	min-height: 240px;
	border-radius: 20px;
	border: 1px dashed var(--aro-glass-border);
	background:
		radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.2), transparent 50%),
		var(--aro-card);
	display: grid;
	place-items: center;
	color: var(--aro-muted);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
}

.aro-form-msg {
	margin-top: 0.75rem;
	color: var(--aro-purple-lux);
}

.aro-form-msg.is-error {
	color: var(--aro-pink);
}

.aro-wishlist,
.aro-track {
	max-width: var(--aro-max);
	margin: 0 auto;
	padding: 2rem 1.25rem;
	color: var(--aro-white);
}

.comments-area {
	max-width: 760px;
	margin: 2rem auto;
	color: var(--aro-muted);
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	background: var(--aro-card);
	border: 1px solid var(--aro-glass-border);
	color: #fff;
	border-radius: 10px;
	padding: 12px;
	margin-bottom: 12px;
}

@keyframes aroFade {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}

.aro-reveal {
	animation: aroFade 0.8s var(--aro-ease) both;
}
