/*
 * AngeliasEye foundation layer.
 * Page-specific agents should compose on these tokens instead of redefining
 * the visual system.
 */

:root {
	--ae-ink: #080807;
	--ae-ink-soft: #171411;
	--ae-ivory: #f7f1ea;
	--ae-blush: #eee1d6;
	--ae-card: #fbf7f2;
	--ae-white: #fff;
	--ae-border: #d8cec4;
	--ae-border-dark: rgba(255, 255, 255, .18);
	--ae-text: #1b1713;
	--ae-muted: #746a61;
	--ae-gold: #b69a67;
	--ae-gold-light: #d1ba8a;
	--ae-success: #587360;
	--ae-shell-width: 1240px;
	--ae-gutter: clamp(20px, 4vw, 52px);
	--ae-radius: 0;
	--ae-shadow: 0 18px 44px rgba(27, 23, 19, .08);
	--ae-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--ae-body: "Montserrat", "Inter", Arial, sans-serif;
	--ae-ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
	scroll-behavior: smooth;
}

body.ae-theme {
	margin: 0;
	background: var(--ae-ivory);
	color: var(--ae-text);
	font-family: var(--ae-body);
	font-size: 14px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.ae-theme img {
	max-width: 100%;
	height: auto;
}

body.ae-theme a {
	color: inherit;
	text-decoration-thickness: .06em;
	text-underline-offset: .2em;
}

body.ae-theme button,
body.ae-theme input,
body.ae-theme select,
body.ae-theme textarea {
	font: inherit;
}

.ae-shell {
	width: min(100% - (var(--ae-gutter) * 2), var(--ae-shell-width));
	margin-inline: auto;
}

.screen-reader-text,
.ae-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ae-skip-link:focus {
	z-index: 1000;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 9px 14px;
	margin: 0;
	clip: auto;
	background: var(--ae-gold);
	color: var(--ae-ink);
	font-weight: 700;
	text-decoration: none;
}

.ae-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.35;
	stroke-linecap: round;
	stroke-linejoin: round;
	vertical-align: middle;
}

.ae-eyebrow {
	margin: 0 0 10px;
	color: var(--ae-gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .23em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ae-section-title {
	margin: 0;
	color: var(--ae-text);
	font-family: var(--ae-display);
	font-size: clamp(34px, 4vw, 60px);
	font-weight: 400;
	letter-spacing: .015em;
	line-height: .98;
	text-transform: uppercase;
}

.ae-section-title + p {
	max-width: 560px;
	margin: 15px auto 0;
	color: var(--ae-muted);
}

.ae-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 24px;
	border: 1px solid var(--ae-ink);
	background: var(--ae-ink);
	color: var(--ae-white) !important;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background-color .25s var(--ae-ease), color .25s var(--ae-ease), border-color .25s var(--ae-ease), transform .25s var(--ae-ease);
}

.ae-btn:hover,
.ae-btn:focus-visible {
	border-color: var(--ae-gold);
	background: var(--ae-gold);
	color: var(--ae-ink) !important;
	transform: translateY(-1px);
}

.ae-btn--outline {
	background: transparent;
	color: var(--ae-ink) !important;
}

.ae-btn--outline:hover,
.ae-btn--outline:focus-visible {
	background: var(--ae-ink);
	color: var(--ae-white) !important;
}

.ae-btn--small {
	min-height: 40px;
	padding: 10px 16px;
}

.ae-field {
	width: 100%;
	min-height: 46px;
	padding: 11px 14px;
	border: 1px solid var(--ae-border);
	border-radius: 0;
	background: rgba(255, 255, 255, .55);
	color: var(--ae-text);
	outline: 0;
}

.ae-field:focus {
	border-color: var(--ae-gold);
	box-shadow: 0 0 0 2px rgba(182, 154, 103, .16);
}

/* Header */

.ae-site-header {
	position: relative;
	z-index: 100;
	background: var(--ae-ink);
	color: var(--ae-white);
}

.ae-site-header.is-scrolled {
	box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.ae-utility-bar {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .68);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ae-utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 28px;
	gap: 20px;
}

.ae-utility-bar p {
	margin: 0;
}

.ae-utility-bar__links {
	display: flex;
	gap: 10px;
}

.ae-utility-bar a {
	color: inherit;
	text-decoration: none;
}

.ae-utility-bar a:hover,
.ae-utility-bar a:focus-visible {
	color: var(--ae-gold-light);
}

.ae-brand-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 64px;
}

.ae-brand-lockup {
	justify-self: center;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 48px;
	object-fit: contain;
}

.ae-wordmark,
.ae-footer-brand__logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ae-gold-light) !important;
	font-family: var(--ae-display);
	font-size: 22px;
	letter-spacing: .055em;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
}

.ae-wordmark__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: var(--ae-gold);
	font-size: 14px;
	transform: rotate(45deg);
}

.ae-wordmark__name {
	display: inline-block;
}

.ae-header-actions {
	display: flex;
	justify-self: end;
	align-items: center;
	gap: 8px;
}

.ae-header-action,
.ae-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ae-white);
	cursor: pointer;
	text-decoration: none;
}

.ae-header-action:hover,
.ae-header-action:focus-visible,
.ae-menu-toggle:hover,
.ae-menu-toggle:focus-visible {
	color: var(--ae-gold-light);
}

.ae-cart-action {
	position: relative;
}

.ae-cart-count {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	border-radius: 99px;
	background: var(--ae-gold);
	color: var(--ae-ink);
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
}

.ae-menu-toggle {
	display: none;
	justify-self: start;
}

.ae-nav-row {
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.ae-menu {
	display: block;
}

.ae-menu__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 3.1vw, 48px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ae-menu__link {
	display: block;
	padding: 14px 0 15px;
	color: rgba(255, 255, 255, .82) !important;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .075em;
	line-height: 1.15;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: color .25s var(--ae-ease);
}

.ae-menu__item.is-current > .ae-menu__link,
.ae-menu__link:hover,
.ae-menu__link:focus-visible {
	color: var(--ae-gold-light) !important;
}

.ae-search-panel {
	border-top: 1px solid rgba(255, 255, 255, .1);
	background: var(--ae-ink-soft);
}

.ae-search-form {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 0;
}

.ae-search-form__input {
	flex: 1;
	min-height: 44px;
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	border-radius: 0;
	background: transparent;
	color: var(--ae-white);
	outline: 0;
}

.ae-search-form__input::placeholder {
	color: rgba(255, 255, 255, .52);
}

.ae-search-form__input:focus {
	border-color: var(--ae-gold);
}

.ae-search-form__close {
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ae-white);
	cursor: pointer;
}

.ae-mobile-nav[hidden],
.ae-search-panel[hidden] {
	display: none;
}

.ae-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 300;
}

.ae-mobile-nav__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .52);
}

.ae-mobile-nav__panel {
	position: relative;
	width: min(86vw, 390px);
	height: 100%;
	padding: 24px;
	background: var(--ae-ivory);
	color: var(--ae-text);
	box-shadow: 18px 0 50px rgba(0, 0, 0, .2);
}

.ae-mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.ae-mobile-nav__title {
	color: var(--ae-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.ae-mobile-nav .ae-header-action {
	color: var(--ae-ink);
}

.ae-mobile-nav .ae-menu__list {
	display: block;
}

.ae-mobile-nav .ae-menu__item {
	border-bottom: 1px solid var(--ae-border);
}

.ae-mobile-nav .ae-menu__link {
	padding: 14px 0;
	color: var(--ae-text) !important;
	font-size: 12px;
}

.ae-mobile-nav__meta {
	display: flex;
	gap: 18px;
	margin-top: 28px;
	color: var(--ae-muted);
	font-size: 11px;
}

body.ae-menu-is-open {
	overflow: hidden;
}

/* Shared product and content primitives */

.ae-product-card {
	position: relative;
	min-width: 0;
	border: 1px solid transparent;
	background: transparent;
	transition: border-color .25s var(--ae-ease), background-color .25s var(--ae-ease), transform .25s var(--ae-ease);
}

.ae-product-card:hover {
	border-color: var(--ae-border);
	background: var(--ae-card);
	transform: translateY(-2px);
}

.ae-product-card__media {
	position: relative;
	overflow: hidden;
	background: var(--ae-card);
}

.ae-product-card__image-link {
	display: block;
	aspect-ratio: 1 / 1.08;
}

.ae-product-card__image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .6s var(--ae-ease);
}

.ae-product-card:hover .ae-product-card__image {
	transform: scale(1.035);
}

.ae-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 8px;
	background: var(--ae-ink);
	color: var(--ae-white);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ae-product-card__wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: rgba(247, 241, 234, .84);
	color: var(--ae-ink);
	cursor: pointer;
}

.ae-product-card__wishlist .ae-icon {
	width: 15px;
	height: 15px;
}

.ae-product-card__body {
	padding: 16px 12px 18px;
}

.ae-product-card__category {
	display: block;
	min-height: 16px;
	color: var(--ae-muted);
	font-size: 9px;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ae-product-card__category a {
	text-decoration: none;
}

.ae-product-card__title {
	margin: 5px 0;
	color: var(--ae-text) !important;
	font-family: var(--ae-display);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.05;
}

.ae-product-card__title a {
	color: var(--ae-text) !important;
	text-decoration: none;
}

.ae-product-card__rating {
	min-height: 18px;
	color: var(--ae-gold);
	font-size: 11px;
}

.ae-product-card__rating .star-rating {
	float: none;
	display: inline-block;
	margin: 0;
}

.ae-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 11px;
}

.ae-price {
	color: var(--ae-text);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .03em;
}

.ae-price del {
	color: var(--ae-muted);
	font-weight: 400;
}

.ae-price ins {
	text-decoration: none;
}

.ae-card-add {
	display: inline-flex;
	align-items: center;
	min-height: 33px;
	padding: 8px 10px;
	border: 1px solid var(--ae-ink);
	background: var(--ae-ink);
	color: var(--ae-white) !important;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
}

.ae-card-add:hover,
.ae-card-add:focus-visible {
	border-color: var(--ae-gold);
	background: var(--ae-gold);
	color: var(--ae-ink) !important;
}

/* Footer */

.ae-newsletter-band {
	padding: 48px 0;
	background: var(--ae-blush);
}

.ae-newsletter-band__inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 34px;
}

.ae-newsletter-band h2 {
	max-width: 470px;
	margin: 0;
	font-family: var(--ae-display);
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 400;
	line-height: .98;
}

.ae-newsletter-form {
	display: flex;
	align-items: center;
	width: min(100%, 440px);
	gap: 8px;
}

.ae-newsletter-form .ae-field {
	background: transparent;
}

.ae-site-footer {
	background: var(--ae-ink);
	color: rgba(255, 255, 255, .75);
}

.ae-site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: clamp(26px, 4vw, 70px);
	padding-top: 58px;
	padding-bottom: 45px;
}

.ae-footer-brand__logo {
	margin-bottom: 18px;
}

.ae-footer-brand p {
	max-width: 280px;
	margin: 0;
	color: rgba(255, 255, 255, .55);
	font-size: 12px;
	line-height: 1.65;
}

.ae-footer-column h2 {
	margin: 4px 0 14px;
	color: var(--ae-gold-light);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .19em;
	text-transform: uppercase;
}

.ae-footer-menu .ae-menu__list {
	display: block;
}

.ae-footer-menu .ae-menu__link {
	padding: 4px 0;
	color: rgba(255, 255, 255, .61) !important;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .03em;
	text-transform: none;
}

.ae-footer-email {
	display: inline-block;
	margin-top: 14px;
	color: var(--ae-gold-light) !important;
	font-size: 11px;
	text-decoration: none;
}

.ae-social-links {
	display: flex;
	gap: 9px;
	margin-top: 23px;
}

.ae-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid var(--ae-border-dark);
	color: var(--ae-gold-light);
	text-decoration: none;
}

.ae-social-links a:hover,
.ae-social-links a:focus-visible {
	border-color: var(--ae-gold);
	background: var(--ae-gold);
	color: var(--ae-ink);
}

.ae-social-links .ae-icon {
	width: 13px;
	height: 13px;
}

.ae-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 16px;
	padding-bottom: 20px;
	border-top: 1px solid var(--ae-border-dark);
	color: rgba(255, 255, 255, .45);
	font-size: 9px;
	letter-spacing: .05em;
}

.ae-site-footer__bottom p {
	margin: 0;
}

.ae-payment-list {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ae-gold-light);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .05em;
}

@media (max-width: 860px) {
	.ae-brand-row {
		grid-template-columns: 1fr auto 1fr;
	}

	.ae-menu-toggle {
		display: inline-flex;
	}

	.ae-nav-row {
		display: none;
	}

	.ae-site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	:root {
		--ae-gutter: 18px;
	}

	.ae-utility-bar__inner {
		min-height: 28px;
	}

	.ae-utility-bar__message {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.ae-utility-bar__links {
		display: none;
	}

	.ae-brand-row {
		min-height: 64px;
	}

	.custom-logo {
		max-width: 145px;
		max-height: 40px;
	}

	.ae-wordmark {
		font-size: 16px;
		letter-spacing: .045em;
	}

	.ae-header-actions {
		gap: 1px;
	}

	.ae-header-action,
	.ae-menu-toggle {
		width: 34px;
		height: 34px;
	}

	.ae-search-form {
		flex-wrap: wrap;
	}

	.ae-search-form__input {
		flex: 1 1 calc(100% - 52px);
	}

	.ae-search-form .ae-btn {
		order: 3;
		width: 100%;
	}

	.ae-newsletter-band__inner,
	.ae-newsletter-form,
	.ae-site-footer__bottom {
		align-items: stretch;
		flex-direction: column;
	}

	.ae-newsletter-form {
		width: 100%;
	}

	.ae-site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 34px 22px;
	}

	.ae-footer-brand {
		grid-column: 1 / -1;
	}

	.ae-payment-list {
		flex-wrap: wrap;
	}
}
