/*
Theme Name: AetherShisha
Theme URI: https://aethershisha.com/
Author: AetherShisha
Description: A responsive black-and-gold hospitality theme with a bilingual-ready one-page layout and native WooCommerce integration.
Version: 1.0.5
Requires at least: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aethershisha
Tags: e-commerce, custom-logo, custom-menu, featured-images, translation-ready, wide-blocks
*/

:root {
	--aether-bg: #030303;
	--aether-panel: #0a0a0a;
	--aether-panel-soft: #111111;
	--aether-gold: #d4af37;
	--aether-gold-light: #f1cd58;
	--aether-text: #f4f4f4;
	--aether-muted: #a2a2a2;
	--aether-line: rgba(212, 175, 55, 0.18);
	--aether-radius: 26px;
	--aether-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
	--aether-serif: "Cinzel", Georgia, "Times New Roman", serif;
	--aether-sans: "Montserrat", Arial, Helvetica, sans-serif;
	--aether-content: 1180px;
	--aether-header-height: 96px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--aether-bg);
	color: var(--aether-text);
	font-family: var(--aether-sans);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
	top: 32px;
}

body,
button,
input,
select,
textarea {
	font-family: var(--aether-sans);
}

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

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

a {
	color: var(--aether-gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

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

:focus-visible {
	outline: 2px solid var(--aether-gold-light);
	outline-offset: 4px;
}

::selection {
	background: var(--aether-gold);
	color: #050505;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto !important;
	background: #fff;
	color: #111;
	font-weight: 600;
	white-space: normal;
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	min-height: var(--aether-header-height);
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 16px clamp(24px, 4vw, 58px);
	border-bottom: 1px solid var(--aether-line);
	background: rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.site-branding {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	flex: 0 0 auto;
	color: var(--aether-gold);
	text-decoration: none;
}

.site-branding:hover {
	color: var(--aether-gold-light);
}

.site-branding__logo {
	display: block;
	width: 52px;
	height: 52px;
	margin-right: 16px;
	flex: 0 0 auto;
	border-radius: 6px;
	object-fit: contain;
}

.site-branding__wordmark {
	font-family: var(--aether-serif);
	font-size: clamp(20px, 1.8vw, 28px);
	letter-spacing: 0.17em;
	line-height: 1;
	white-space: nowrap;
}

.site-branding__wordmark span,
.hero__title span {
	color: #e6e6e6;
}

.primary-navigation {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(14px, 1.55vw, 28px);
}

.primary-navigation__menu {
	min-width: 0;
}

.primary-menu,
.language-switcher,
.footer-menu {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.55vw, 28px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: -18px;
	display: none;
	min-width: 210px;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--aether-line);
	border-radius: 14px;
	background: #080808;
	box-shadow: var(--aether-shadow);
	list-style: none;
}

.primary-menu .menu-item-has-children {
	position: relative;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

.primary-menu .sub-menu a {
	display: block;
	padding: 9px 12px;
}

.shop-link,
.primary-menu a {
	position: relative;
	display: inline-block;
	padding: 8px 0;
	color: #bdbdbd;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease;
	white-space: nowrap;
}

.shop-link {
	color: var(--aether-gold);
	font-weight: 600;
}

.shop-link::after,
.primary-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 2px;
	background: var(--aether-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.shop-link:hover,
.shop-link.is-current,
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--aether-gold-light);
}

.shop-link:hover::after,
.shop-link.is-current::after,
.primary-menu > li > a:hover::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.nav-divider {
	width: 1px;
	height: 22px;
	flex: 0 0 auto;
	background: var(--aether-gold);
	opacity: 0.8;
}

.language-switcher {
	gap: 7px;
	margin-left: 4px;
}

.language-switcher a {
	display: block;
	min-width: 40px;
	padding: 7px 9px;
	border: 1px solid rgba(212, 175, 55, 0.38);
	border-radius: 8px;
	color: var(--aether-gold);
	font-size: 11px;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: 180ms ease;
}

.language-switcher a:hover,
.language-switcher a.is-current,
.language-switcher .current-lang > a,
.language-switcher .current-menu-item > a {
	background: var(--aether-gold);
	color: #050505;
}

.site-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 9px;
	border: 1px solid var(--aether-line);
	border-radius: 9px;
	color: var(--aether-gold);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-cart-link__count {
	display: inline-grid;
	min-width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 999px;
	background: var(--aether-gold);
	color: #050505;
	font-size: 10px;
	font-weight: 600;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 42px;
	padding: 9px;
	border: 1px solid var(--aether-line);
	border-radius: 9px;
	background: transparent;
	color: var(--aether-gold);
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: currentColor;
	transition: 180ms ease;
}

.hero {
	position: relative;
	display: flex;
	min-height: 100vh;
	min-height: 100svh;
	align-items: center;
	justify-content: center;
	padding: calc(var(--aether-header-height) + 70px) 24px 90px;
	text-align: center;
	scroll-margin-top: var(--aether-header-height);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.18), transparent 48%),
		linear-gradient(180deg, rgba(3, 3, 3, 0.1), var(--aether-bg));
}

.hero__content {
	position: relative;
	z-index: 1;
	width: min(100%, 1000px);
}

.hero__logo {
	display: block;
	width: min(660px, 88vw);
	margin: 0 auto 20px;
	filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.24));
}

.hero__title {
	margin: 0;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: clamp(42px, 6.3vw, 84px);
	font-weight: 500;
	letter-spacing: clamp(0.16em, 1.1vw, 0.22em);
	line-height: 1.1;
}

.gold-divider {
	width: 180px;
	height: 1px;
	margin: 26px auto;
	background: var(--aether-gold);
	opacity: 0.58;
}

.hero__eyebrow {
	margin: 0;
	color: var(--aether-gold);
	font-size: 14px;
	letter-spacing: 0.42em;
	text-transform: uppercase;
}

.hero__description {
	max-width: 760px;
	margin: 32px auto;
	color: var(--aether-muted);
	font-size: clamp(16px, 1.5vw, 18px);
	line-height: 1.9;
}

.hero__actions {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-element-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border: 1px solid var(--aether-gold);
	border-radius: 10px;
	background: var(--aether-gold);
	color: #050505;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wp-element-button:hover {
	border-color: var(--aether-gold-light);
	background: var(--aether-gold-light);
	color: #050505;
	transform: translateY(-1px);
}

.button--outline {
	background: transparent;
	color: var(--aether-gold);
}

.button--outline:hover {
	background: var(--aether-gold);
	color: #050505;
}

button:disabled,
input:disabled {
	cursor: wait;
	opacity: 0.62;
}

.feature-tiles,
.services-grid,
.partners-grid {
	display: grid;
	gap: 24px;
}

.feature-tiles {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 90px clamp(24px, 4vw, 58px);
}

.feature-tile,
.aether-card,
.partner-box,
.entry-card,
.page-entry,
.comments-area {
	border: 1px solid var(--aether-line);
	border-radius: var(--aether-radius);
	background: var(--aether-panel);
}

.feature-tile {
	min-height: 240px;
	padding: clamp(30px, 3vw, 44px);
}

.feature-tile h2,
.aether-card h3 {
	margin: 0 0 18px;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-weight: 500;
}

.feature-tile h2 {
	font-size: clamp(24px, 2.2vw, 32px);
}

.feature-tile p,
.aether-card p {
	margin: 0;
	color: var(--aether-muted);
	line-height: 1.8;
}

.aether-section {
	padding: 105px clamp(24px, 4vw, 58px);
	scroll-margin-top: var(--aether-header-height);
}

.section-title,
.page-title,
.entry-title,
.comments-title {
	margin: 0;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-weight: 500;
	line-height: 1.2;
}

.section-title {
	margin-bottom: 66px;
	font-size: clamp(38px, 4.5vw, 58px);
	text-align: center;
	text-transform: uppercase;
}

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

.aether-card {
	padding: clamp(30px, 3.5vw, 46px);
}

.aether-card h3 {
	font-size: clamp(21px, 2vw, 27px);
}

.coverage-card ul {
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.coverage-card li {
	padding: 12px 0;
	border-bottom: 1px solid #202020;
	color: #d6d6d6;
}

.coverage-card li:last-child {
	border-bottom: 0;
}

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

.partner-box {
	display: grid;
	min-height: 170px;
	place-items: center;
	padding: 24px;
	color: #d8d8d8;
	font-size: 19px;
	text-align: center;
}

.front-page-editor-content {
	padding-top: 20px;
	padding-bottom: 20px;
}

.aether-contact-form {
	position: relative;
	display: flex;
	max-width: 720px;
	flex-direction: column;
	gap: 10px;
	padding: clamp(28px, 4vw, 46px);
	margin: 0 auto;
	border: 1px solid var(--aether-line);
	border-radius: var(--aether-radius);
	background: var(--aether-panel);
}

.aether-contact-form label:not(.contact-honeypot label) {
	margin-top: 8px;
	color: #d7bd69;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aether-contact-form input,
.aether-contact-form textarea,
.search-form input,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.product-category-filter {
	width: 100%;
	padding: 16px 17px;
	border: 1px solid #2a2a2a;
	border-radius: 11px;
	background: var(--aether-panel-soft);
	color: #fff;
	font-size: 15px;
}

.aether-contact-form input:focus,
.aether-contact-form textarea:focus,
.search-form input:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.product-category-filter:focus {
	border-color: rgba(212, 175, 55, 0.72);
	outline: none;
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
}

.aether-contact-form textarea {
	min-height: 165px;
	resize: vertical;
}

.aether-contact-form button {
	margin-top: 12px;
}

.contact-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	border: 0;
}

.contact-status {
	min-height: 26px;
	margin: 8px 0 0;
	font-size: 14px;
	text-align: center;
}

.contact-status.is-success {
	color: #65cf85;
}

.contact-status.is-error {
	color: #ef7474;
}

.aether-card--terms {
	max-width: var(--aether-content);
	margin: 0 auto;
}

.aether-card--terms p {
	margin: 0;
}

.content-shell {
	width: min(calc(100% - 40px), 920px);
	min-height: 70vh;
	padding: calc(var(--aether-header-height) + 72px) 0 96px;
	margin: 0 auto;
}

.content-shell--wide {
	width: min(calc(100% - 40px), var(--aether-content));
}

.page-header {
	margin-bottom: 38px;
}

.page-title,
.entry-title {
	font-size: clamp(34px, 4vw, 54px);
}

.archive-description {
	margin-top: 18px;
	color: var(--aether-muted);
}

.post-list {
	display: grid;
	gap: 28px;
}

.entry-card,
.page-entry,
.comments-area {
	padding: clamp(26px, 4vw, 46px);
}

.entry-card__thumbnail,
.page-entry__thumbnail {
	display: block;
	margin: -12px -12px 32px;
	overflow: hidden;
	border-radius: 18px;
}

.entry-card__thumbnail img,
.page-entry__thumbnail img {
	display: block;
	width: 100%;
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:hover {
	color: var(--aether-gold-light);
}

.entry-meta {
	margin: 12px 0 0;
	color: #888;
	font-size: 13px;
}

.entry-content,
.entry-summary,
.page-content {
	color: #d2d2d2;
}

.entry-content > :first-child,
.entry-summary > :first-child,
.page-content > :first-child {
	margin-top: 24px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-weight: 500;
}

.entry-content blockquote {
	padding: 8px 0 8px 24px;
	margin-left: 0;
	border-left: 3px solid var(--aether-gold);
	color: var(--aether-muted);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid #2b2b2b;
	text-align: left;
}

.alignwide {
	width: min(1180px, calc(100vw - 40px));
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-right: 50%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.wp-caption,
.gallery-caption {
	color: var(--aether-muted);
	font-size: 13px;
}

.sticky {
	border-color: rgba(212, 175, 55, 0.45);
}

.bypostauthor {
	border-color: rgba(212, 175, 55, 0.3);
}

.post-navigation,
.posts-navigation,
.pagination {
	margin-top: 36px;
}

.nav-links {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 18px;
}

.nav-previous,
.nav-next {
	flex: 1;
}

.nav-next {
	text-align: right;
}

.nav-subtitle {
	display: block;
	color: var(--aether-muted);
	font-size: 12px;
	text-transform: uppercase;
}

.page-numbers {
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 6px;
	border: 1px solid var(--aether-line);
	border-radius: 8px;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--aether-gold);
	color: #050505;
}

.comments-area {
	margin-top: 42px;
}

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

.comment-list .children {
	padding-left: 24px;
	list-style: none;
}

.comment-body {
	padding: 20px 0;
	border-bottom: 1px solid #252525;
}

.comment-form {
	display: grid;
	gap: 12px;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #2a2a2a;
	border-radius: 10px;
	background: #111;
	color: #fff;
}

.search-form {
	display: flex;
	gap: 10px;
	margin: 24px 0;
}

.search-form label {
	flex: 1;
}

.site-footer {
	padding: 44px clamp(24px, 4vw, 58px);
	border-top: 1px solid rgba(212, 175, 55, 0.13);
	color: #7e7e7e;
	text-align: center;
}

.footer-menu {
	justify-content: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.footer-menu a {
	color: #aaa;
	font-size: 13px;
	text-decoration: none;
}

.site-footer__copyright {
	margin: 0;
}

/* Shop and WooCommerce */
.shop-page {
	min-height: 100vh;
	padding: calc(var(--aether-header-height) + 58px) clamp(20px, 4vw, 54px) 90px;
	background:
		radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 42%),
		var(--aether-bg);
}

.shop-hero {
	max-width: 900px;
	margin: 0 auto 64px;
	text-align: center;
}

.shop-hero h1 {
	margin: 0;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: clamp(38px, 4.5vw, 58px);
	font-weight: 500;
	letter-spacing: 0.09em;
	line-height: 1.2;
	text-transform: uppercase;
}

.shop-hero p {
	max-width: 720px;
	margin: 0 auto;
	color: var(--aether-muted);
	font-size: 17px;
}

.shop-layout {
	display: grid;
	max-width: 1320px;
	align-items: start;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 40px;
	margin: 0 auto;
}

.shop-sidebar {
	position: sticky;
	top: calc(var(--aether-header-height) + 28px);
	padding: 30px;
	border: 1px solid var(--aether-line);
	border-radius: var(--aether-radius);
	background: var(--aether-panel);
}

.admin-bar .shop-sidebar {
	top: calc(var(--aether-header-height) + 60px);
}

.shop-sidebar label {
	display: block;
	margin-bottom: 16px;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-category-filter {
	cursor: pointer;
}

.shop-products {
	min-width: 0;
}

.shop-products__heading {
	margin: 0 0 28px;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
	text-transform: uppercase;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
	margin: 10px 0 26px;
	color: var(--aether-muted);
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
	margin: 0 0 26px;
}

.woocommerce .woocommerce-ordering select {
	min-width: 220px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 0;
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	position: relative;
	display: flex;
	width: auto;
	min-width: 0;
	flex-direction: column;
	float: none;
	padding: 20px;
	margin: 0;
	border: 1px solid var(--aether-line);
	border-radius: var(--aether-radius);
	background: var(--aether-panel);
	transition:
		transform 200ms ease,
		border-color 200ms ease,
		box-shadow 200ms ease;
}

/*
 * WooCommerce adds a percentage width to column-count product lists. These
 * selectors deliberately outrank that rule so the grid track, rather than a
 * second nested percentage, controls the card width.
 */
body.aethershisha-woocommerce.woocommerce-page ul.products[class*="columns-"] li.product,
body.aethershisha-woocommerce .woocommerce ul.products[class*="columns-"] li.product {
	width: 100%;
	max-width: none;
	margin: 0;
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(212, 175, 55, 0.56);
	box-shadow: var(--aether-shadow);
	transform: translateY(-5px);
}

.woocommerce ul.products li.product a {
	text-decoration: none;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 20px;
	border-radius: 18px;
	background: #111;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	margin: 0 0 10px;
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: 20px;
	font-weight: 500;
}

.woocommerce ul.products li.product .price {
	margin: 0 0 18px;
	color: #e8e8e8;
	font-size: 15px;
}

.woocommerce ul.products li.product .price del {
	color: #777;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .button {
	width: 100%;
	margin-top: auto;
}

.woocommerce span.onsale {
	top: 12px;
	left: 12px;
	display: grid;
	min-width: 48px;
	min-height: 48px;
	place-items: center;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: var(--aether-gold);
	color: #050505;
	font-size: 11px;
	line-height: 1.2;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 42px;
	padding: 11px;
	margin: 3px;
	border: 1px solid var(--aether-line);
	border-radius: 8px;
	background: transparent;
	color: var(--aether-gold);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--aether-gold);
	color: #050505;
}

.shop-placeholder {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.shop-placeholder__admin-note {
	padding-top: 18px;
	margin-top: 18px !important;
	border-top: 1px solid #252525;
	font-size: 14px;
}

.woocommerce-single {
	width: min(calc(100% - 40px), 1240px);
}

.woocommerce div.product {
	padding: clamp(24px, 4vw, 46px);
	border: 1px solid var(--aether-line);
	border-radius: var(--aether-radius);
	background: var(--aether-panel);
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	overflow: hidden;
	border-radius: 20px;
}

.woocommerce div.product div.summary {
	color: #d2d2d2;
}

.woocommerce div.product .product_title {
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 500;
	line-height: 1.2;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #fff;
}

.woocommerce div.product form.cart {
	display: flex;
	align-items: stretch;
	gap: 10px;
	flex-wrap: wrap;
}

.woocommerce .quantity .qty {
	min-height: 50px;
	border: 1px solid #2a2a2a;
	border-radius: 9px;
	background: #111;
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs {
	padding-top: 36px;
	clear: both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: #2a2a2a;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-color: #2a2a2a;
	background: #111;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-color: var(--aether-line);
	background: var(--aether-gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: #ccc;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #050505;
}

.woocommerce .related.products,
.woocommerce .upsells.products {
	clear: both;
	padding-top: 50px;
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
	color: var(--aether-gold);
	font-family: var(--aether-serif);
	font-size: 34px;
	font-weight: 500;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--aether-gold);
	border-radius: 10px;
	background: #111;
	color: #ddd;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--aether-gold);
}

.woocommerce table.shop_table {
	border-color: #2a2a2a;
	border-radius: 12px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: #262626;
}

.woocommerce table.shop_table td.product-name a {
	color: var(--aether-gold);
}

.woocommerce-cart table.cart img {
	width: 72px;
	border-radius: 9px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #payment {
	border-color: var(--aether-line);
	border-radius: 16px;
	background: var(--aether-panel);
}

.woocommerce-checkout #payment div.payment_box {
	background: #171717;
	color: #ddd;
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #171717;
}

.woocommerce form .form-row .required {
	color: #ef7474;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	padding: 0;
	border: 1px solid var(--aether-line);
	border-radius: 14px;
	background: var(--aether-panel);
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid #242424;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
}

@media (max-width: 1280px) {
	.site-header {
		gap: 18px;
		padding-right: 26px;
		padding-left: 26px;
	}

	.site-branding__wordmark {
		font-size: 20px;
		letter-spacing: 0.12em;
	}

	.site-branding__logo {
		width: 44px;
		height: 44px;
		margin-right: 11px;
	}

	.primary-navigation,
	.primary-menu {
		gap: 14px;
	}

	.shop-link,
	.primary-menu a {
		font-size: 10px;
	}
}

@media (max-width: 1100px) {
	:root {
		--aether-header-height: 82px;
	}

	.site-header {
		min-height: var(--aether-header-height);
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: flex;
		max-height: calc(100vh - var(--aether-header-height));
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		padding: 22px 24px 28px;
		overflow-y: auto;
		border-bottom: 1px solid var(--aether-line);
		background: rgba(3, 3, 3, 0.98);
	}

	.has-js .primary-navigation {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 160ms ease,
			transform 160ms ease,
			visibility 160ms;
	}

	.has-js .site-header.is-menu-open .primary-navigation {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-header.is-menu-open .menu-toggle__line:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.site-header.is-menu-open .menu-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .menu-toggle__line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.primary-navigation__menu {
		width: 100%;
	}

	.primary-menu {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.shop-link,
	.primary-menu > li > a {
		display: block;
		width: 100%;
		padding: 11px 0;
		font-size: 12px;
	}

	.primary-menu .sub-menu {
		position: static;
		display: block;
		padding: 0 0 0 16px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.nav-divider {
		width: 100%;
		height: 1px;
	}

	.language-switcher {
		align-self: flex-start;
		margin: 4px 0;
	}

	.site-cart-link {
		align-self: flex-start;
	}

	.feature-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.shop-layout {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 26px;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.hero {
		padding-top: calc(var(--aether-header-height) + 85px);
	}

	.hero__title {
		font-size: clamp(38px, 9vw, 54px);
	}

	.hero__eyebrow {
		font-size: 12px;
		letter-spacing: 0.3em;
	}

	.feature-tiles {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.feature-tile {
		min-height: 200px;
	}

	.aether-section {
		padding-top: 82px;
		padding-bottom: 82px;
	}

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

	.shop-page {
		padding-top: calc(var(--aether-header-height) + 42px);
	}

	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-sidebar,
	.admin-bar .shop-sidebar {
		position: static;
	}

	.shop-sidebar label {
		text-align: center;
	}

	.shop-products__heading {
		text-align: center;
	}

	.content-shell {
		padding-top: calc(var(--aether-header-height) + 54px);
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		width: 100%;
		float: none;
	}
}

@media (max-width: 600px) {
	body.admin-bar .site-header {
		top: 0;
	}

	.site-header {
		padding-right: 16px;
		padding-left: 16px;
	}

	.site-branding__wordmark {
		font-size: 17px;
		letter-spacing: 0.09em;
	}

	.site-branding__logo {
		width: 38px;
		height: 38px;
		margin-right: 9px;
	}

	.hero {
		padding-right: 17px;
		padding-bottom: 66px;
		padding-left: 17px;
	}

	.hero__logo {
		width: min(360px, 90vw);
	}

	.hero__title {
		font-size: clamp(30px, 9vw, 40px);
		letter-spacing: 0.12em;
	}

	.gold-divider {
		width: 140px;
	}

	.hero__description {
		margin: 26px auto;
		font-size: 15px;
		line-height: 1.75;
	}

	.hero__actions {
		align-items: center;
		flex-direction: column;
	}

	.hero__actions .button {
		width: min(100%, 290px);
	}

	.feature-tiles,
	.partners-grid {
		grid-template-columns: 1fr;
	}

	.feature-tiles {
		padding-right: 17px;
		padding-left: 17px;
	}

	.feature-tile {
		min-height: auto;
	}

	.aether-section {
		padding-right: 17px;
		padding-left: 17px;
	}

	.section-title {
		margin-bottom: 42px;
		font-size: 33px;
	}

	.aether-contact-form {
		padding: 24px 18px;
	}

	.search-form {
		align-items: stretch;
		flex-direction: column;
	}

	.shop-page {
		padding-right: 16px;
		padding-bottom: 70px;
		padding-left: 16px;
	}

	.shop-hero {
		margin-bottom: 38px;
	}

	.shop-hero h1 {
		font-size: 30px;
		letter-spacing: 0.06em;
	}

	.shop-sidebar {
		padding: 22px;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
		padding: 18px;
	}

	.woocommerce ul.products li.product a img {
		aspect-ratio: 4 / 3;
	}

	.woocommerce .woocommerce-result-count,
	.woocommerce-page .woocommerce-result-count,
	.woocommerce .woocommerce-ordering,
	.woocommerce-page .woocommerce-ordering {
		width: 100%;
		float: none;
		text-align: center;
	}

	.woocommerce .woocommerce-ordering select {
		width: 100%;
	}

	.woocommerce div.product {
		padding: 18px;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		border-top-color: #262626;
	}

	.nav-links {
		flex-direction: column;
	}

	.nav-next {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
