/**
 * Amora — Perfume store theme styles
 */

:root {
	--amora-black: #111111;
	--amora-charcoal: #1e1e1e;
	--amora-gold: #b8956a;
	--amora-gold-light: #d4b896;
	--amora-cream: #f8f6f2;
	--amora-white: #ffffff;
	--amora-gray-100: #f3f1ed;
	--amora-gray-200: #e8e4dd;
	--amora-gray-500: #7a756d;
	--amora-gray-700: #4a4640;
	--amora-text: #2a2824;
	--amora-font-display: "Cormorant Garamond", Georgia, serif;
	--amora-font-body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
	--amora-radius: 4px;
	--amora-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
	--amora-transition: 0.25s ease;
	--amora-container: 1200px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--amora-font-body);
	font-size: 15px;
	line-height: 1.6;
	color: var(--amora-text);
	background: var(--amora-cream);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--amora-transition);
}

a:hover {
	color: var(--amora-gold);
}

.container {
	width: min(100% - 2rem, var(--amora-container));
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - 2rem, 760px);
}

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

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248, 246, 242, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--amora-gray-200);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1rem 1.5rem;
	min-height: 80px;
}

.site-logo img {
	width: auto;
	max-height: 52px;
	filter: brightness(0);
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.site-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--amora-black);
	transition: var(--amora-transition);
}

.site-navigation {
	justify-self: center;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.primary-nav .sub-menu {
	display: none;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-header__account {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 0.85rem;
	border: 1px solid var(--amora-gray-200);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.amora-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.85rem;
	border: 1px solid var(--amora-black);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
}

.amora-cart-link__count {
	min-width: 1.2rem;
	text-align: center;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.75rem;
	border: 1px solid transparent;
	border-radius: var(--amora-radius);
	font-family: var(--amora-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--amora-transition);
}

.btn--primary {
	background: var(--amora-black);
	color: var(--amora-white);
	border-color: var(--amora-black);
}

.btn--primary:hover {
	background: var(--amora-gold);
	border-color: var(--amora-gold);
	color: var(--amora-white);
}

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

.btn--outline:hover {
	background: var(--amora-black);
	color: var(--amora-white);
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 78vh;
	padding: 5rem 0;
	background-color: var(--amora-charcoal);
	color: var(--amora-white);
}

.hero:not(.hero--banner) {
	background:
		linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(30, 30, 30, 0.78)),
		radial-gradient(circle at 80% 20%, rgba(184, 149, 106, 0.25), transparent 40%),
		var(--amora-charcoal);
}

.hero--banner {
	background-image:
		linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.72) 38%, rgba(17, 17, 17, 0.28) 62%, rgba(17, 17, 17, 0.08) 100%),
		linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.45) 100%),
		var(--hero-banner);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 70% 30%, rgba(184, 149, 106, 0.18), transparent 55%);
}

.hero--banner .hero__overlay {
	background:
		radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.12), transparent 45%),
		radial-gradient(circle at 85% 40%, rgba(184, 149, 106, 0.1), transparent 50%);
}

.hero__content {
	position: relative;
	max-width: 640px;
}

.hero__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--amora-gold-light);
}

.hero__title {
	margin: 0 0 1.25rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2.8rem, 6vw, 4.8rem);
	font-weight: 600;
	line-height: 1.05;
}

.hero__text {
	margin: 0 0 2rem;
	max-width: 520px;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.88);
}

/* Sections */
.section {
	padding: 5rem 0;
}

.section__header {
	max-width: 560px;
	margin-bottom: 2.5rem;
	text-align: center;
	margin-inline: auto;
}

.section__header h2 {
	margin: 0 0 0.75rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
}

.section__header p {
	margin: 0;
	color: var(--amora-gray-500);
}

.section__footer {
	margin-top: 2.5rem;
	text-align: center;
}

.categories-section {
	background: var(--amora-white);
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.category-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 160px;
	padding: 1.5rem;
	background: var(--amora-gray-100);
	border: 1px solid var(--amora-gray-200);
	transition: all var(--amora-transition);
}

.category-card:hover {
	transform: translateY(-4px);
	border-color: var(--amora-gold);
	color: var(--amora-text);
	box-shadow: var(--amora-shadow);
}

.category-card__name {
	font-family: var(--amora-font-display);
	font-size: 1.5rem;
	font-weight: 600;
}

.category-card__count {
	margin-top: 0.35rem;
	font-size: 0.78rem;
	color: var(--amora-gray-500);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Products grid */
.products-grid,
ul.products.products-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	float: none;
	clear: both;
	width: 100%;
}

ul.products.products-grid::before,
ul.products.products-grid::after {
	display: none;
	content: none;
}

ul.products.products-grid > li.product {
	width: auto !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
}

.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
	transition: all var(--amora-transition);
}

.product-card:hover {
	box-shadow: var(--amora-shadow);
	border-color: var(--amora-gold-light);
}

.product-card__link {
	flex: 1;
	display: flex;
	flex-direction: column;
	color: inherit;
}

.product-card__image {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--amora-gray-100);
}

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

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

.product-card__body {
	padding: 1.25rem 1.25rem 0.75rem;
}

.product-card__title {
	margin: 0 0 0.5rem;
	font-family: var(--amora-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
}

.product-card__price {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--amora-gold);
}

.product-card__price del {
	color: var(--amora-gray-500);
	font-weight: 400;
}

.product-card__actions {
	padding: 0 1.25rem 1.25rem;
}

.product-card__actions .button,
.product-card__actions .added_to_cart {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	padding: 0.65rem 1rem !important;
	border: 1px solid var(--amora-black) !important;
	border-radius: var(--amora-radius) !important;
	background: transparent !important;
	color: var(--amora-black) !important;
	font-size: 0.72rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.product-card__actions .button:hover,
.product-card__actions .added_to_cart:hover {
	background: var(--amora-black) !important;
	color: var(--amora-white) !important;
}

/* Promo */
.promo-section {
	background: var(--amora-black);
	color: var(--amora-white);
}

.promo-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 720px;
}

.promo-section h2 {
	margin: 0 0 1rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 2.8rem);
}

.promo-section p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.8;
}

/* Shop */
.site-main--shop {
	padding: 3rem 0 5rem;
}

.shop-header {
	margin-bottom: 2rem;
	text-align: center;
}

.shop-header__title {
	margin: 0 0 0.5rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
}

/* Shop layout & filters */
.shop-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.shop-filters-toggle {
	display: none;
	margin-bottom: 1rem;
}

.shop-filters {
	position: sticky;
	top: 96px;
	padding: 1.5rem;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
}

.shop-filters__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.shop-filters__title {
	margin: 0;
	font-family: var(--amora-font-display);
	font-size: 1.5rem;
}

.shop-filters__clear {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--amora-gold);
}

.shop-filter-group + .shop-filter-group {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--amora-gray-200);
}

.shop-filter-group__title {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--amora-gray-500);
}

.shop-filter-group__empty {
	margin: 0;
	font-size: 0.9rem;
	color: var(--amora-gray-500);
}

.shop-filter-list {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 280px;
	overflow: auto;
}

.shop-filter-check {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.45rem 0;
	cursor: pointer;
}

.shop-filter-check input {
	accent-color: var(--amora-black);
}

.shop-filter-check__label {
	flex: 1;
	font-size: 0.92rem;
}

.shop-filter-check__count {
	font-size: 0.75rem;
	color: var(--amora-gray-500);
}

.shop-price-filter__inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.shop-price-filter__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--amora-gray-500);
}

.shop-price-filter__field input {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--amora-gray-200);
	background: var(--amora-cream);
	font-family: inherit;
}

.shop-price-filter .price_slider_wrapper {
	margin-top: 0.5rem;
}

.shop-price-filter .ui-slider {
	position: relative;
	height: 4px;
	margin: 1rem 0.5rem 0.5rem;
	background: var(--amora-gray-200);
	border-radius: 999px;
}

.shop-price-filter .ui-slider-range {
	position: absolute;
	height: 100%;
	background: var(--amora-gold);
	border-radius: 999px;
}

.shop-price-filter .ui-slider-handle {
	position: absolute;
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	margin-left: -8px;
	background: var(--amora-black);
	border: 2px solid var(--amora-white);
	border-radius: 50%;
	cursor: pointer;
}

.shop-filters__submit {
	width: 100%;
	margin-top: 1.5rem;
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--amora-gray-200);
}

.shop-toolbar__count {
	font-size: 0.88rem;
	color: var(--amora-gray-500);
}

.shop-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.shop-toolbar__sort-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--amora-gray-500);
	white-space: nowrap;
}

.shop-toolbar__sort-select {
	min-width: 210px;
	padding: 0.65rem 2rem 0.65rem 0.85rem;
	border: 1px solid var(--amora-gray-200);
	background: var(--amora-white);
	font-family: inherit;
	font-size: 0.88rem;
	cursor: pointer;
}

.shop-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.shop-active-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.75rem;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
	border-radius: 999px;
	font-size: 0.78rem;
}

.shop-active-filters__chip:hover {
	border-color: var(--amora-gold);
	color: var(--amora-text);
}

.shop-active-filters__clear {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.75rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--amora-gold);
}

.shop-layout__content .woocommerce-info,
.shop-layout__content .woocommerce-no-products-found {
	padding: 2rem;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
	text-align: center;
}

.woocommerce-result-count,
.woocommerce-ordering {
	display: none !important;
}

.woocommerce-result-count,
.woocommerce-ordering {
	margin-bottom: 1.5rem;
}

.woocommerce-ordering select {
	padding: 0.5rem 2rem 0.5rem 0.75rem;
	border: 1px solid var(--amora-gray-200);
	background: var(--amora-white);
	font-family: inherit;
}

.woocommerce-pagination {
	margin-top: 3rem;
	text-align: center;
}

.woocommerce-pagination ul {
	display: inline-flex;
	gap: 0.5rem;
	padding: 0;
	list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border: 1px solid var(--amora-gray-200);
	background: var(--amora-white);
}

.woocommerce-pagination .current {
	background: var(--amora-black);
	color: var(--amora-white);
	border-color: var(--amora-black);
}

/* Single product */
.single-product .product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	gap: 3rem;
	padding: 3rem 0 5rem;
}

.single-product .product > .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 1;
	width: 100%;
	min-width: 0;
}

.single-product .product > .summary {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

.single-product .product > .onsale {
	grid-column: 1;
	grid-row: 1;
	z-index: 4;
	justify-self: start;
	align-self: start;
	margin: 1.75rem 0 0 1.75rem;
	pointer-events: none;
	display: inline-block;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: var(--amora-black);
	color: var(--amora-white);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.single-product .product > .woocommerce-tabs,
.single-product .product > .related.products,
.single-product .product > .upsells.products {
	grid-column: 1 / -1;
	width: 100%;
	min-width: 0;
}

/* Product gallery */
.woocommerce-product-gallery {
	position: relative;
	align-self: start;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.woocommerce-product-gallery.images {
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
	padding: 1rem;
}

.woocommerce-product-gallery__wrapper {
	margin: 0;
	padding: 0;
}

.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image ~ .woocommerce-product-gallery__image {
	display: none;
}

.woocommerce-product-gallery .flex-viewport {
	overflow: hidden;
	margin-bottom: 1rem;
}

.woocommerce-product-gallery .flex-viewport .slides,
.woocommerce-product-gallery .flex-viewport .slides li,
ol.flex-control-thumbs,
ol.flex-control-thumbs li,
ol.flex-control-nav,
ol.flex-control-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-product-gallery__image {
	position: relative;
}

.woocommerce-product-gallery__image a {
	display: block;
	line-height: 0;
}

.woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.woocommerce-product-gallery__image--placeholder {
	border: 1px solid var(--amora-gray-200);
}

.flex-viewport .zoomImg {
	background: var(--amora-white);
}

ol.flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 1rem;
}

ol.flex-control-thumbs li {
	cursor: pointer;
	border: 1px solid transparent;
	transition: border-color var(--amora-transition), opacity var(--amora-transition);
}

ol.flex-control-thumbs li img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0.55;
	border: 1px solid transparent;
	transition: opacity var(--amora-transition), border-color var(--amora-transition);
}

ol.flex-control-thumbs li:hover img,
ol.flex-control-thumbs li img.flex-active {
	opacity: 1;
	border: 1px solid var(--amora-gold);
}

.woocommerce-product-gallery__trigger {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--amora-gray-200);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--amora-black);
	text-decoration: none;
}

.woocommerce-product-gallery__trigger::before {
	content: "+";
	font-size: 1.4rem;
	line-height: 1;
}

.woocommerce-product-gallery__trigger img {
	display: none;
}

.woocommerce-product-gallery--columns-3 ol.flex-control-thumbs {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce-product-gallery--columns-5 ol.flex-control-thumbs {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.single-product .summary {
	align-self: start;
}

.single-product .product_title {
	margin: 0 0 1rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
}

.single-product .price {
	margin-bottom: 1.5rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--amora-gold);
}

.single-product .woocommerce-product-details__short-description {
	margin-bottom: 1.5rem;
	color: var(--amora-gray-700);
}

/* Inspired-by / dupe block */
.amora-dupe {
	margin: 0 0 1.75rem;
	padding: 1.25rem;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
}

.amora-dupe__eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amora-gray-500);
}

.amora-dupe__card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.amora-dupe__media {
	flex: 0 0 auto;
}

.amora-dupe__image {
	display: block;
	width: 72px;
	height: 92px;
	object-fit: contain;
}

.amora-dupe__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.amora-dupe__brand {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--amora-gray-500);
}

.amora-dupe__name {
	font-family: var(--amora-font-display);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--amora-black);
}

.amora-dupe__similarity {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 0.45rem;
}

.amora-dupe__similarity-ring {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
}

.amora-dupe__similarity-ring svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.amora-dupe__similarity-track,
.amora-dupe__similarity-fill {
	fill: none;
	stroke-width: 2.8;
}

.amora-dupe__similarity-track {
	stroke: var(--amora-gray-200);
}

.amora-dupe__similarity-fill {
	stroke: var(--amora-gold);
	stroke-dasharray: 100;
	stroke-dashoffset: calc(100 - var(--amora-dupe-percent, 0));
	stroke-linecap: round;
}

.amora-dupe__similarity-value {
	position: absolute;
	font-size: 0.62rem;
	font-weight: 700;
	color: var(--amora-black);
}

.amora-dupe__similarity-label {
	font-size: 0.78rem;
	color: var(--amora-gray-700);
}

/* Fragrance details (pyramid + seasons, full width below purchase area) */
.amora-product-fragrance {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	margin-top: 1rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--amora-gray-200);
}

.amora-product-fragrance > .amora-pyramid:only-child,
.amora-product-fragrance > .amora-seasons:only-child {
	grid-column: 1 / -1;
	max-width: 640px;
	margin-inline: auto;
	width: 100%;
}

/* Olfactory pyramid */
.amora-pyramid {
	margin: 0;
	padding: 1.5rem;
	height: 100%;
	background: linear-gradient(180deg, var(--amora-gray-100) 0%, var(--amora-white) 100%);
	border: 1px solid var(--amora-gray-200);
}

.amora-pyramid__title {
	margin: 0 0 1.25rem;
	font-family: var(--amora-font-display);
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
}

.amora-pyramid__visual {
	position: relative;
	max-width: 680px;
	margin: 0 auto;
	padding: 0.5rem 0 0;
}

.amora-pyramid__triangle {
	display: none;
}

.amora-pyramid__tier {
	position: relative;
	z-index: 1;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.amora-pyramid__tier--top {
	max-width: 100%;
}

.amora-pyramid__tier--heart {
	max-width: 100%;
}

.amora-pyramid__tier--base {
	max-width: 100%;
}

.amora-pyramid__tier-label {
	margin: 0 0 0.75rem;
}

.amora-pyramid__tier-name {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--amora-gray-200);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amora-gray-500);
}

.amora-pyramid__notes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amora-pyramid__note {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	min-width: 78px;
	max-width: 112px;
}

.amora-pyramid__note-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 0;
	box-shadow: 0 2px 10px rgba(17, 17, 17, 0.08);
}

.amora-pyramid__note-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.amora-pyramid__note-name {
	font-size: 0.78rem;
	line-height: 1.25;
	color: var(--amora-text);
	text-align: center;
}

/* Seasons */
.amora-seasons {
	margin: 0;
	padding: 1rem 1rem 0.875rem;
	height: 100%;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
}

.amora-seasons__title {
	margin: 0 0 0.75rem;
	font-family: var(--amora-font-display);
	font-size: 1.35rem;
	font-weight: 600;
	text-align: center;
}

.amora-seasons__group + .amora-seasons__group {
	margin-top: 0.875rem;
	padding-top: 0.875rem;
	border-top: 1px solid var(--amora-gray-200);
}

.amora-seasons__group-title {
	margin: 0 0 0.2rem;
	font-family: var(--amora-font-display);
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	color: var(--amora-text);
}

.amora-seasons__subtitle {
	margin: 0 0 0.5rem;
	text-align: center;
	font-size: 0.8rem;
	color: var(--amora-gray-500);
}

.amora-seasons__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.5rem;
}

.amora-seasons__grid--time {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 320px;
	margin-inline: auto;
}

.amora-seasons__grid--occasions {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amora-seasons__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	padding: 0.55rem 0.35rem 0.5rem;
	border: 1px solid var(--amora-gray-200);
	border-radius: var(--amora-radius);
	background: var(--amora-gray-100);
	text-align: center;
	transition: all var(--amora-transition);
}

.amora-seasons__item.is-active {
	background: var(--amora-white);
	border-color: var(--amora-gold);
	box-shadow: var(--amora-shadow);
}

.amora-seasons__item.is-inactive {
	opacity: 0.38;
}

.amora-seasons__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
}

.amora-seasons__icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.amora-seasons__name {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.amora-seasons__badge {
	display: inline-block;
	padding: 0.1rem 0.4rem;
	border-radius: 999px;
	background: var(--amora-black);
	color: var(--amora-white);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.single-product .quantity input {
	width: 70px;
	padding: 0.65rem;
	border: 1px solid var(--amora-gray-200);
	text-align: center;
}

.single-product .single_add_to_cart_button {
	min-height: 48px;
	padding: 0.85rem 2rem !important;
	background: var(--amora-black) !important;
	color: var(--amora-white) !important;
	border-radius: var(--amora-radius) !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
}

.single-product .single_add_to_cart_button:hover {
	background: var(--amora-gold) !important;
}

.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 2rem;
}

.single-product .related.products,
.single-product .upsells.products {
	grid-column: 1 / -1;
	width: 100%;
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--amora-gray-200);
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	margin: 0 0 1.75rem;
	font-family: var(--amora-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 600;
	text-align: center;
}

.single-product .related.products > ul.products,
.single-product .upsells.products > ul.products {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
	float: none;
	clear: both;
}

.single-product .related.products > ul.products::before,
.single-product .related.products > ul.products::after,
.single-product .upsells.products > ul.products::before,
.single-product .upsells.products > ul.products::after {
	display: none;
	content: none;
}

.single-product .related.products > ul.products > li,
.single-product .upsells.products > ul.products > li {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
}

.single-product .related.products > ul.products > li:only-child,
.single-product .upsells.products > ul.products > li:only-child {
	grid-column: 1 / -1;
	max-width: min(100%, 420px);
	margin-inline: auto;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 1rem;
	padding: 0;
	margin: 0 0 1.5rem;
	list-style: none;
	border-bottom: 1px solid var(--amora-gray-200);
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.75rem 0;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}


/* Blog */
.site-main--blog {
	padding: 3rem 0 5rem;
}

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

.blog-header__title {
	margin: 0 0 0.75rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
}

.blog-header__intro {
	margin: 0 auto;
	max-width: 36rem;
	color: var(--amora-gray-600);
	line-height: 1.7;
}

.posts-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid var(--amora-gray-200);
	border-radius: 16px;
	background: #fff;
}

.post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--amora-gray-100, #f2f0eb);
}

.post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 1.35rem 1.35rem 1.5rem;
}

.post-card__category,
.single-post__category {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amora-gold);
}

.post-card__title {
	margin: 0 0 0.4rem;
	font-family: var(--amora-font-display);
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	line-height: 1.25;
}

.post-card__title a:hover {
	color: var(--amora-gold);
}

.post-card__meta,
.single-post__meta {
	margin: 0;
	font-size: 0.82rem;
	color: var(--amora-gray-600);
}

.post-card__excerpt {
	margin: 0.9rem 0 1.1rem;
	color: var(--amora-gray-700, #4a4a4a);
	line-height: 1.7;
}

.post-card__excerpt p {
	margin: 0;
}

.post-card__more {
	margin-top: auto;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-post__header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.single-post__thumbnail {
	margin: 0 0 2rem;
	overflow: hidden;
	border-radius: 16px;
}

.single-post__thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post__body {
	font-size: 1.05rem;
	line-height: 1.85;
}

.single-post__footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--amora-gray-200);
}

.single-post__back {
	font-size: 0.84rem;
	font-weight: 600;
}

.no-results {
	padding: 2rem 0;
	text-align: center;
}

.navigation.pagination {
	margin-top: 2.5rem;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	min-height: 2.4rem;
	padding: 0 0.75rem;
	border: 1px solid var(--amora-gray-200);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: var(--amora-black);
	border-color: var(--amora-black);
	color: #fff;
}

@media (max-width: 900px) {
	.posts-list {
		grid-template-columns: 1fr;
	}
}

/* Pages */
.page-content,
.single-post,
.not-found {
	padding: 4rem 0;
}

.page-content__title,
.single-post__title,
.not-found h1 {
	margin: 0 0 1rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
}

.entry-content > *:first-child {
	margin-top: 0;
}

/* Footer */
.site-footer {
	background: var(--amora-black);
	color: rgba(255, 255, 255, 0.82);
	padding: 4rem 0 2rem;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.site-footer .site-logo img {
	filter: brightness(0) invert(1);
	max-height: 48px;
}

.site-footer__tagline {
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__links h4,
.footer-widget__title {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amora-gold-light);
}

.site-footer__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links li + li {
	margin-top: 0.5rem;
}

.site-footer__links a:hover {
	color: var(--amora-gold-light);
}

.site-footer__bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
}

/* WooCommerce notices & cart/checkout basics */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	border-left: 4px solid var(--amora-gold);
	background: var(--amora-white);
	list-style: none;
}

.woocommerce-error {
	border-left-color: #c0392b;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: var(--amora-white);
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	padding: 1rem;
	border-bottom: 1px solid var(--amora-gray-200);
	text-align: left;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--amora-black) !important;
	color: var(--amora-white) !important;
	border-radius: var(--amora-radius) !important;
	font-weight: 600 !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--amora-gold) !important;
}

/* Product search */
.site-header__brand {
	flex-shrink: 0;
}

.site-header__search--desktop {
	flex: 0 1 260px;
	min-width: 180px;
	max-width: 320px;
}

.site-navigation {
	flex: 1 1 auto;
	justify-self: auto;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-header__actions {
	flex-shrink: 0;
}

.site-header__search-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--amora-gray-200);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
}

.site-header__search-panel {
	display: none;
	padding: 1rem 0;
	border-top: 1px solid var(--amora-gray-200);
	background: var(--amora-cream);
}

.site-header__search-panel.is-open {
	display: block;
}

.product-search-form {
	width: 100%;
}

.product-search-form__field {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--amora-gray-200);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.product-search-form__input {
	flex: 1;
	min-width: 0;
	border: 0;
	padding: 0.65rem 1rem;
	background: transparent;
	font-size: 0.9rem;
}

.product-search-form__input:focus {
	outline: none;
}

.product-search-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: var(--amora-black);
	color: #fff;
	padding: 0 1rem;
	cursor: pointer;
}

.product-search-form--compact .product-search-form__input {
	font-size: 0.82rem;
	padding: 0.5rem 0.85rem;
}

.product-search-form--compact .product-search-form__submit {
	padding: 0 0.85rem;
}

.product-search-form__combobox {
	position: relative;
	width: 100%;
}

.product-search-form__suggestions {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	right: 0;
	z-index: 120;
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--amora-gray-200);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
	max-height: 320px;
	overflow-y: auto;
}

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

.product-search-form__suggestion {
	margin: 0;
}

.product-search-form__suggestion-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.85rem;
	color: inherit;
	text-decoration: none;
}

.product-search-form__suggestion-link:hover,
.product-search-form__suggestion.is-active .product-search-form__suggestion-link {
	background: rgba(17, 17, 17, 0.04);
}

.product-search-form__suggestion-media {
	flex-shrink: 0;
	width: 42px;
	height: 52px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--amora-gray-100, #f2f0eb);
}

.product-search-form__suggestion-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-search-form__suggestion-meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
	flex: 1 1 auto;
}

.product-search-form__suggestion-title {
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.3;
}

.product-search-form__suggestion-subtitle {
	font-size: 0.74rem;
	color: var(--amora-gray-600);
	line-height: 1.3;
}

.product-search-form__suggestion-price {
	font-size: 0.78rem;
	font-weight: 600;
}

.product-search-form__suggestion--empty {
	padding: 0.85rem;
	font-size: 0.84rem;
	color: var(--amora-gray-600);
}

.product-search-form__view-all {
	margin: 0;
	border-top: 1px solid var(--amora-gray-200);
}

.product-search-form__view-all-link {
	display: block;
	padding: 0.75rem 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: inherit;
	text-decoration: none;
}

.product-search-form__view-all-link:hover {
	background: rgba(17, 17, 17, 0.04);
}

.product-search-form__hint {
	margin: 0.5rem 0 0;
	font-size: 0.82rem;
	color: var(--amora-gray-600);
}

/* Responsive */
@media (max-width: 900px) {
	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-filters-toggle {
		display: inline-flex;
	}

	.shop-layout__sidebar {
		display: none;
	}

	.shop-layout__sidebar.is-open {
		display: block;
	}

	.shop-filters {
		position: static;
	}

	.shop-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.shop-toolbar__sort {
		justify-content: space-between;
	}

	.shop-toolbar__sort-select {
		flex: 1;
		min-width: 0;
	}

	.site-header__search--desktop {
		display: none;
	}

	.site-header__search-toggle {
		display: inline-flex;
	}


	.site-header__toggle {
		display: inline-flex;
	}

	.site-navigation {
		position: fixed;
		inset: 80px 0 auto 0;
		padding: 1.5rem;
		background: var(--amora-cream);
		border-bottom: 1px solid var(--amora-gray-200);
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: all var(--amora-transition);
	}

	.site-navigation.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.primary-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.single-product .product {
		grid-template-columns: 1fr;
	}

	.single-product .product > .woocommerce-product-gallery,
	.single-product .product > .summary,
	.single-product .product > .onsale {
		grid-column: 1;
	}

	.single-product .product > .woocommerce-product-gallery,
	.single-product .product > .onsale {
		grid-row: 1;
	}

	.single-product .product > .summary {
		grid-row: 2;
	}

	.amora-product-fragrance {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding-top: 2rem;
	}

	.amora-pyramid__tier--top {
		max-width: 72%;
	}

	.amora-pyramid__tier--heart {
		max-width: 88%;
	}

	.amora-pyramid__note {
		min-width: 64px;
		max-width: 96px;
	}

	.amora-seasons__grid,
	.amora-seasons__grid--occasions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.amora-seasons__grid--time {
		max-width: none;
	}

	ol.flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hero {
		min-height: 65vh;
		padding: 4rem 0;
	}

	.products-grid,
	ul.products.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.single-product .related.products > ul.products,
	.single-product .upsells.products > ul.products {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.product-card__title {
		font-size: 1rem;
	}
}

/* Recommendations (Recomiéndame) */
.site-main--recommendations {
	padding: 2.5rem 0 4rem;
}

.amora-rec__header {
	max-width: 680px;
	margin: 0 auto 2rem;
	text-align: center;
}

.amora-rec__title {
	margin: 0 0 0.75rem;
	font-family: var(--amora-font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 600;
}

.amora-rec__intro {
	margin: 0;
	color: var(--amora-gray-500);
}

.amora-rec-form {
	max-width: 960px;
	margin: 0 auto;
}

.amora-rec-form__section {
	margin: 0 0 1.5rem;
	padding: 1.25rem;
	border: 1px solid var(--amora-gray-200);
	background: var(--amora-white);
}

.amora-rec-form__legend {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0;
}

.amora-rec-form__legend-title {
	display: block;
	font-family: var(--amora-font-display);
	font-size: 1.35rem;
	font-weight: 600;
}

.amora-rec-form__legend-hint {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.85rem;
	color: var(--amora-gray-500);
}

.amora-rec-form__search {
	display: block;
	margin-bottom: 1rem;
}

.amora-rec-form__search-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--amora-gray-200);
	border-radius: var(--amora-radius);
	background: var(--amora-gray-100);
	font: inherit;
}

.amora-rec-form__chips {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
	gap: 0.5rem;
}

.amora-rec-form__section--time .amora-rec-form__chips {
	grid-template-columns: repeat(2, minmax(108px, 1fr));
	max-width: 280px;
}

.amora-rec-form__family {
	margin-bottom: 1rem;
}

.amora-rec-form__family.is-empty {
	display: none;
}

.amora-rec-form__family-title {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--amora-gray-500);
}

.amora-rec-form__notes {
	max-height: 420px;
	overflow: auto;
	padding-right: 0.25rem;
	overflow-anchor: none;
	scroll-behavior: auto;
}

.amora-rec-chip {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	padding: 0.65rem 0.4rem;
	border: 1px solid var(--amora-gray-200);
	border-radius: var(--amora-radius);
	background: var(--amora-gray-100);
	cursor: pointer;
	transition: border-color var(--amora-transition), box-shadow var(--amora-transition);
}

.amora-rec-chip.is-hidden {
	display: none;
}

.amora-rec-chip input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.amora-rec-chip.is-active,
.amora-rec-chip:has(input:checked) {
	border-color: var(--amora-gold);
	background: var(--amora-white);
	box-shadow: var(--amora-shadow);
}

.amora-rec-chip__icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}

.amora-rec-chip__icon--note {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
}

.amora-rec-chip__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.amora-rec-chip__label {
	font-size: 0.72rem;
	line-height: 1.25;
	text-align: center;
	font-weight: 600;
}

.amora-rec-form__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.amora-rec-results {
	scroll-margin-top: 96px;
	max-width: 960px;
	margin: 2.5rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid var(--amora-gray-200);
}

.amora-rec-results__empty {
	padding: 2rem;
	text-align: center;
	background: var(--amora-white);
	border: 1px solid var(--amora-gray-200);
}

.amora-rec-results__empty h2 {
	margin: 0 0 0.5rem;
	font-family: var(--amora-font-display);
}

.amora-rec-results__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amora-gold);
}

.amora-rec-hero {
	display: grid;
	grid-template-columns: minmax(180px, 280px) 1fr;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--amora-white);
	border: 1px solid var(--amora-gold);
	box-shadow: var(--amora-shadow);
}

.amora-rec-hero__image {
	width: 100%;
	height: auto;
}

.amora-rec-hero__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.65rem;
}

.amora-rec-hero__match {
	display: inline-block;
	align-self: flex-start;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: var(--amora-black);
	color: var(--amora-white);
	font-size: 0.72rem;
	font-weight: 700;
}

.amora-rec-hero__title {
	margin: 0;
	font-family: var(--amora-font-display);
	font-size: 1.75rem;
}

.amora-rec-results__more {
	margin-top: 2rem;
}

.amora-rec-results__more-title {
	margin: 0 0 1rem;
	font-family: var(--amora-font-display);
	font-size: 1.35rem;
	text-align: center;
}

.amora-rec-card-wrap {
	position: relative;
}

.amora-rec-card__match {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.88);
	color: var(--amora-white);
	font-size: 0.68rem;
	font-weight: 700;
}

@media (max-width: 768px) {
	.amora-rec-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.amora-rec-hero__match {
		align-self: center;
	}

	.amora-rec-form__section--time .amora-rec-form__chips {
		max-width: none;
	}
}
