/*
Theme Name: ALLWEARZ
Theme URI: https://allwearz.com
Author: ALLWEARZ Brand
Description: Premium fashion e-commerce theme — Wear It. Live It.
Version: 1.0.0
Requires at least: 6.0
Text Domain: allwearz
*/

/* =============================================
   ALLWEARZ — DESIGN SYSTEM
   Palette: White / Black / Gold
   Fonts: Cormorant Garamond + Montserrat
============================================= */

:root {
  --white:      #FFFFFF;
  --black:      #0A0A0A;
  --gold:       #C9A84C;
  --grey-light: #F5F5F3;
  --grey-mid:   #E8E8E6;
  --grey-text:  #888880;
  --ease:       cubic-bezier(0.65, 0, 0.35, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;
  --bar-h:      32px;
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ===== INTRO ===== */
#aw-intro {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.9s var(--ease);
}
#aw-intro.fade-out { opacity: 0; pointer-events: none; }
.intro-logo-wrap {
  opacity: 0; transform: scale(0.9);
  animation: introIn 0.9s var(--ease) 0.3s forwards;
}
.intro-logo-wrap img { width: clamp(140px, 28vw, 240px); filter: invert(1); }
.intro-tagline {
  font-family: var(--font-sans); font-size: 0.52rem;
  letter-spacing: 0.55em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}
.intro-bar {
  width: 100px; height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
  opacity: 0; animation: fadeUp 0.5s ease 0.8s forwards;
}
.intro-bar::after {
  content: ''; position: absolute; left: 0; top: 0;
  height: 100%; width: 0; background: var(--gold);
  animation: loadBar 2s ease 0.9s forwards;
}
@keyframes introIn { to { opacity: 1; transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loadBar { to { width: 100%; } }

/* ===== ANNOUNCEMENT BAR ===== */
.aw-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--bar-h); background: var(--black);
  z-index: 1001; display: flex; align-items: center; overflow: hidden;
}
.aw-bar-track {
  display: flex; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.aw-bar-track span {
  font-size: 0.5rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); padding-right: 72px;
}
.aw-bar-track .sep { color: rgba(255,255,255,0.18); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== NAVIGATION ===== */
.aw-nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.aw-nav.on-hero { background: transparent; }
.aw-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--grey-mid);
}

/* Left links */
.aw-nav-left { display: flex; gap: 36px; flex: 1; }
.aw-nav-left a {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); position: relative; padding-bottom: 2px;
  transition: color 0.3s ease;
}
.aw-nav.scrolled .aw-nav-left a { color: var(--black); }
.aw-nav-left a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.aw-nav-left a:hover::after { width: 100%; }

/* Center logo */
.aw-nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.aw-nav-center img {
  height: 30px; width: auto;
  transition: filter 0.3s ease;
}
.aw-nav.on-hero .aw-nav-center img { filter: invert(1); }
.aw-nav.scrolled .aw-nav-center img { filter: none; }

/* Right icons */
.aw-nav-right { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: flex-end; }
.aw-nav-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); background: none; border: none;
  position: relative; transition: opacity 0.2s ease;
}
.aw-nav.scrolled .aw-nav-icon { color: var(--black); }
.aw-nav-icon:hover { opacity: 0.6; }
.aw-nav-icon svg { width: 20px; height: 20px; stroke-width: 1.4; fill: none; stroke: currentColor; }
.aw-cart-badge {
  position: absolute; top: 4px; right: 4px;
  width: 13px; height: 13px; background: var(--gold);
  border-radius: 50%; color: var(--white);
  font-size: 0.44rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.aw-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; z-index: 1002;
}
.aw-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); transition: all 0.3s ease;
}
.aw-nav.scrolled .aw-hamburger span { background: var(--black); }
.aw-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.aw-hamburger.open span:nth-child(2) { opacity: 0; }
.aw-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.aw-mobile-menu {
  position: fixed; inset: 0; background: var(--white);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.aw-mobile-menu.open { opacity: 1; pointer-events: all; }
.aw-mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.aw-mobile-menu nav a {
  font-family: var(--font-serif); font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 300; letter-spacing: 0.04em; color: var(--black);
  transition: color 0.3s ease;
}
.aw-mobile-menu nav a:hover { color: var(--gold); }
.aw-mobile-bottom {
  display: flex; gap: 32px;
  border-top: 1px solid var(--grey-mid);
  padding-top: 28px;
}
.aw-mobile-bottom a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--black); font-size: 0.48rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.aw-mobile-bottom svg { width: 22px; height: 22px; stroke-width: 1.4; fill: none; stroke: currentColor; }

/* ===== HERO ===== */
.aw-hero {
  height: 100vh; min-height: 640px;
  margin-top: var(--bar-h);
  position: relative; display: flex;
  align-items: flex-end;
  padding: 0 48px calc(var(--nav-h) + 32px);
  overflow: hidden;
}
.aw-hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  background: #111;
}
.aw-hero-bg img, .aw-hero-bg video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}
.aw-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}
.aw-hero-body { position: relative; z-index: 2; max-width: 660px; }
.aw-hero-label {
  font-size: 0.52rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; opacity: 0;
  animation: fadeUp 0.8s var(--ease) 3s forwards;
}
.aw-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 300; line-height: 1.02;
  color: var(--white); letter-spacing: 0.02em;
  margin-bottom: 22px; opacity: 0;
  animation: fadeUp 1s var(--ease) 3.2s forwards;
}
.aw-hero-title em { font-style: italic; color: rgba(255,255,255,0.5); }
.aw-hero-sub {
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 40px; opacity: 0;
  animation: fadeUp 0.8s var(--ease) 3.4s forwards;
}
.aw-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 3.6s forwards;
}

/* ===== BUTTONS ===== */
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; background: var(--white); color: var(--black);
  font-size: 0.56rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; border: none;
  position: relative; overflow: hidden; transition: color 0.35s ease;
}
.btn-p::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-p:hover::before { transform: translateX(0); }
.btn-p:hover { color: var(--white); }
.btn-p > * { position: relative; z-index: 1; }

.btn-o-w {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 34px; background: transparent; color: var(--white);
  font-size: 0.56rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.btn-o-w:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-d {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; background: var(--black); color: var(--white);
  font-size: 0.56rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; border: none;
  position: relative; overflow: hidden; transition: color 0.35s ease;
}
.btn-d::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-d:hover::before { transform: translateX(0); }
.btn-d > * { position: relative; z-index: 1; }

/* ===== MARQUEE ===== */
.aw-marquee {
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  padding: 18px 0; overflow: hidden; background: var(--white);
}
.aw-mq-track { display: flex; white-space: nowrap; animation: marquee 24s linear infinite; }
.aw-mq-item { display: inline-flex; align-items: center; gap: 24px; padding-right: 24px; }
.aw-mq-text {
  font-family: var(--font-serif); font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  font-weight: 300; font-style: italic; letter-spacing: 0.04em;
}
.aw-mq-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ===== DROP COUNTDOWN ===== */
.aw-drop {
  background: var(--black); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
}
.aw-drop-l, .aw-drop-r { padding: 80px 60px; }
.aw-drop-l { border-right: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; justify-content: center; }
.aw-drop-r { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 28px; }
.aw-eyebrow {
  font-size: 0.5rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.aw-drop-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 8px;
}
.aw-drop-sub {
  font-size: 0.55rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 36px;
}
.aw-timer { display: flex; align-items: flex-start; }
.aw-t-unit { text-align: center; min-width: 52px; }
.aw-t-num {
  display: block; font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300; line-height: 1;
}
.aw-t-lbl {
  display: block; font-size: 0.42rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(255,255,255,0.22); margin-top: 5px;
}
.aw-t-sep {
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--gold); line-height: 1; padding: 0 4px; padding-top: 2px;
}
.aw-stock-num {
  font-family: var(--font-serif); font-size: 2.8rem;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.aw-stock-lbl {
  font-size: 0.52rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
}

/* ===== PRODUCTS ===== */
.aw-shop { padding: 96px 48px; background: var(--white); }
.aw-shop-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 20px; flex-wrap: wrap;
}
.aw-sh-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; letter-spacing: 0.02em; line-height: 1.1;
}
.aw-sh-title em { font-style: italic; color: var(--grey-text); }
.aw-filters { display: flex; border: 1px solid var(--grey-mid); }
.aw-fb {
  padding: 10px 22px; background: none; border: none;
  border-right: 1px solid var(--grey-mid);
  font-size: 0.55rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--grey-text);
  transition: background 0.25s ease, color 0.25s ease;
}
.aw-fb:last-child { border-right: none; }
.aw-fb.active, .aw-fb:hover { background: var(--black); color: var(--white); }

.aw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.aw-card { position: relative; overflow: hidden; background: var(--grey-light); }
.aw-card-img { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--grey-mid); }
.aw-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.aw-card:hover .aw-card-img img { transform: scale(1.05); }
.aw-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; letter-spacing: 0.25em;
  color: var(--grey-text); text-transform: uppercase;
}
.aw-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 11px; font-size: 0.46rem;
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; z-index: 2;
}
.aw-badge-black { background: var(--black); color: var(--white); }
.aw-badge-gold  { background: var(--gold);  color: var(--white); }
.aw-card-cta {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.88); color: var(--white);
  padding: 13px; text-align: center;
  font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.aw-card:hover .aw-card-cta { transform: translateY(0); }
.aw-card-body { padding: 14px 4px 6px; }
.aw-card-name {
  font-family: var(--font-serif); font-size: 1rem;
  font-weight: 300; letter-spacing: 0.04em; margin-bottom: 5px;
}
.aw-card-foot { display: flex; justify-content: space-between; align-items: center; }
.aw-card-price { font-size: 0.6rem; letter-spacing: 0.12em; font-weight: 500; }
.aw-card-sizes { font-size: 0.5rem; letter-spacing: 0.12em; color: var(--grey-text); text-transform: uppercase; }

/* ===== STATEMENT ===== */
.aw-statement {
  padding: 130px 48px; background: var(--grey-light);
  text-align: center; position: relative; overflow: hidden;
}
.aw-statement-txt {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300; line-height: 1.5;
  max-width: 740px; margin: 0 auto 44px;
  letter-spacing: 0.02em;
}
.aw-statement-txt em { font-style: italic; color: var(--grey-text); }

/* ===== FEATURES ===== */
.aw-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid);
}
.aw-feat {
  padding: 48px 36px; border-right: 1px solid var(--grey-mid);
  display: flex; flex-direction: column; gap: 12px;
}
.aw-feat:last-child { border-right: none; }
.aw-feat-icon { color: var(--gold); margin-bottom: 4px; }
.aw-feat-icon svg { width: 26px; height: 26px; stroke-width: 1.4; fill: none; stroke: currentColor; }
.aw-feat-title { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.aw-feat-desc { font-size: 0.56rem; color: var(--grey-text); line-height: 1.75; }

/* ===== NEWSLETTER ===== */
.aw-nl { background: var(--black); padding: 96px 48px; text-align: center; }
.aw-nl-label { font-size: 0.5rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.aw-nl-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--white); margin-bottom: 10px; letter-spacing: 0.02em;
}
.aw-nl-title em { font-style: italic; color: rgba(255,255,255,0.35); }
.aw-nl-sub { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 40px; }
.aw-nl-form {
  display: flex; max-width: 440px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.aw-nl-form input {
  flex: 1; background: none; border: none; outline: none;
  padding: 13px 0; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--white);
}
.aw-nl-form input::placeholder { color: rgba(255,255,255,0.18); }
.aw-nl-form button {
  background: none; border: none; font-size: 0.52rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  padding-left: 18px; transition: opacity 0.2s ease;
}
.aw-nl-form button:hover { opacity: 0.6; }

/* ===== FOOTER ===== */
.aw-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.05); padding: 76px 48px 38px; }
.aw-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 60px; }
.aw-footer-logo { height: 26px; width: auto; filter: invert(1); margin-bottom: 10px; }
.aw-footer-tagline { font-size: 0.5rem; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.aw-footer-desc { font-size: 0.56rem; color: rgba(255,255,255,0.22); line-height: 1.9; max-width: 250px; }
.aw-fcol-title { font-size: 0.5rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
.aw-flinks { display: flex; flex-direction: column; gap: 12px; }
.aw-flinks a { font-size: 0.58rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); transition: color 0.25s ease; }
.aw-flinks a:hover { color: var(--white); }
.aw-footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 14px; }
.aw-footer-copy { font-size: 0.5rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.16); }
.aw-footer-soc { display: flex; gap: 24px; }
.aw-footer-soc a { font-size: 0.5rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.25); transition: color 0.25s ease; }
.aw-footer-soc a:hover { color: var(--gold); }

/* ===== REVEAL ANIMATION ===== */
.aw-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.aw-reveal.in { opacity: 1; transform: none; }
.aw-d1 { transition-delay: 0.1s; }
.aw-d2 { transition-delay: 0.2s; }
.aw-d3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .aw-nav { padding: 0 28px; }
  .aw-shop, .aw-statement, .aw-nl, .aw-footer { padding-left: 28px; padding-right: 28px; }
  .aw-hero { padding: 0 28px calc(var(--nav-h) + 24px); }
  .aw-grid { grid-template-columns: repeat(2, 1fr); }
  .aw-features { grid-template-columns: repeat(2, 1fr); }
  .aw-feat:nth-child(2) { border-right: none; }
  .aw-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .aw-drop { grid-template-columns: 1fr; }
  .aw-drop-r { border-top: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 768px) {
  .aw-nav-left { display: none; }
  .aw-hamburger { display: flex; }
  .aw-hero { padding: 0 20px 64px; }
  .aw-hero-btns { flex-direction: column; align-items: flex-start; }
  .aw-shop { padding: 60px 20px; }
  .aw-shop-head { flex-direction: column; align-items: flex-start; }
  .aw-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .aw-statement { padding: 80px 20px; }
  .aw-features { grid-template-columns: 1fr; }
  .aw-feat { border-right: none; border-bottom: 1px solid var(--grey-mid); }
  .aw-feat:last-child { border-bottom: none; }
  .aw-nl { padding: 64px 20px; }
  .aw-footer { padding: 60px 20px 32px; }
  .aw-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .aw-footer-bot { flex-direction: column; text-align: center; }
  .aw-drop-l, .aw-drop-r { padding: 52px 24px; }
}

/* ===== SEARCH OVERLAY ===== */
.aw-search-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.aw-search-overlay.open { opacity: 1; pointer-events: all; }
.aw-search-overlay .search-form { display: flex; gap: 0; border-bottom: 1px solid var(--black); padding-bottom: 8px; min-width: 400px; }
.aw-search-overlay .search-field {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-serif); font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300; letter-spacing: 0.04em; color: var(--black);
}
.aw-search-overlay .search-submit {
  background: none; border: none; font-size: 0.58rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.aw-search-close {
  position: absolute; top: calc(var(--bar-h) + 20px); right: 32px;
  background: none; border: none; color: var(--black);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 480px) {
  .aw-search-overlay .search-form { min-width: 280px; }
}
