@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --header: #F5F5F580;
  --black: #000000;
  --white: #ffffff;
  --gold: #c9a36a;
  --gold-btn: #d3b392;
  --gold-text: #c8a57a;
  --gold-muted: #c4a07c;
  --hero: #d6d6d6;
  --muted: #8a8a8a;
  --line: #d9d9d9;
  --page: #f3f3f3;
  --bank: #f3e6d8;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  --header-h: 96px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --nav: "Cinzel", "Times New Roman", serif;
  --sans: "Montserrat", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

body[data-page="checkout"] {
  background: var(--page);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  overflow-x: hidden;
}

/* ===== Header ===== */
.site-header {
  background: var(--header);
  min-height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 56px;
  max-width: 1512px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
  align-self: stretch;
}

.nav-left a,
.nav-drop > button {
  color: #808080;
  font-family: var(--nav);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
  background: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

.nav-left a::after,
.nav-drop > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: #808080;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-left a:hover::after,
.nav-left a.is-active::after,
.nav-drop:hover > button::after,
.nav-drop.open > button::after {
  transform: scaleX(1);
}

.nav-left a:hover,
.nav-drop > button:hover,
.nav-left a.is-active {
  color: #000;
}

.chev {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  display: inline-block;
  opacity: 0.85;
}

.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.drop-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  background: #F5F5F5;
  min-width: 220px;
  padding: 10px 0 14px;
  display: none;
  z-index: 90;
}

.drop-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 20px;
}

.nav-drop.open .drop-menu,
.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu {
  display: block;
}

.drop-menu a {
  display: block;
  color: #808080;
  font-family: var(--nav);
  padding: 11px 22px;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.drop-menu a::after {
  display: none;
}

.drop-menu a:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.04);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold);
  line-height: 0;
}

.brand img {
  height: 76px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  align-self: stretch;
  justify-self: end;
}

.icon-btn {
  width: 26px;
  height: 26px;
  color: #808080;
  display: grid;
  place-items: center;
  position: relative;
}

.icon-btn:hover {
  color: #000;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: #e23b3b;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: none;
  place-items: center;
  padding: 0 4px;
  line-height: 1;
}

.cart-badge.show {
  display: grid;
}

.menu-toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: #808080;
  width: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== Footer ===== */
.site-footer {
  background: #F5F5F580;
  color: #808080;
  padding: 56px 48px 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo img {
  height: 132px;
  width: auto;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #808080;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.65;
}

.footer-col a:hover {
  opacity: 0.7;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #808080;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  flex-shrink: 0;
}

.socials a:hover {
  opacity: 0.75;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #808080;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-copy {
  border-top: 1px solid #d9d9d9;
  text-align: center;
  padding: 16px 12px 22px;
  font-size: 12px;
  color: #808080;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-black:hover {
  background: #222;
}

.btn-outline {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

.btn-gold {
  background: var(--gold-btn);
  color: #fff;
  border: 0;
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

/* ===== Home ===== */
.hero {
  background: var(--hero);
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.12;
  color: #fff;
}

.hero h1 span {
  display: block;
  color: #fff;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  color: var(--gold-text);
  font-size: 1em;
  letter-spacing: inherit;
  line-height: inherit;
  display: inline;
  padding-left: 0;
}

.hero p {
  max-width: 620px;
  margin: 22px auto 32px;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.lookbook {
  --look-gap: 20px;
  --look-peek: 40px;
  --look-visible: 4;
  background: #fff;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.lookbook-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: var(--look-gap);
  will-change: transform;
}

.lookbook-track a {
  flex: 0 0 calc((100% - (2 * var(--look-peek)) - ((var(--look-visible) - 1) * var(--look-gap))) / var(--look-visible));
  width: calc((100% - (2 * var(--look-peek)) - ((var(--look-visible) - 1) * var(--look-gap))) / var(--look-visible));
  min-width: 0;
}

.lookbook-track img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.look-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  z-index: 2;
  display: grid;
  place-items: center;
}

.look-nav svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.look-nav.prev {
  left: 8px;
}

.look-nav.next {
  right: 8px;
}

.lookbook > .look-nav {
  top: 0;
  transform: none;
  height: 100%;
  width: 56px;
  cursor: pointer;
}

.lookbook > .look-nav.prev {
  left: var(--look-peek);
}

.lookbook > .look-nav.next {
  right: var(--look-peek);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 36px;
}

.split-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}

.split-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-card:hover img {
  transform: scale(1.04);
}

.hl-box:hover img {
  transform: none;
}

.hl-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hl-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.hl-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.hl-box > .look-nav {
  top: 0;
  transform: none;
  height: 100%;
  width: 56px;
  z-index: 4;
  cursor: pointer;
}

.hl-box > .look-nav.prev {
  left: 0;
}

.hl-box > .look-nav.next {
  right: 0;
}

.split-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px 42px;
  background: linear-gradient(to top, rgba(18, 14, 10, 0.88) 0%, rgba(18, 14, 10, 0.42) 38%, transparent 68%);
}

.split-overlay.center {
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  padding-bottom: 52px;
}

.split-overlay.center h3 {
  color: #c8a57a;
}

.split-overlay h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-text);
  text-transform: uppercase;
}

.split-overlay .explore-link {
  color: var(--gold-text);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  border-bottom: 1px solid var(--gold-text);
  padding-bottom: 1px;
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.highlight-copy {
  align-items: flex-start;
  text-align: left;
  padding: 36px 40px 40px;
}

.highlight-copy .kicker {
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.highlight-copy .kicker::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.highlight-copy h3 {
  color: var(--gold-text);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.highlight-copy .price {
  color: var(--gold-text);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  margin: 6px 0 20px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.04em;
  line-height: 1;
  font-variant-numeric: lining-nums;
}

.highlight-copy .price .cur {
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(0.02em);
}

.hl-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hl-actions .btn {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.hl-actions .btn-add {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.hl-actions .btn-add:hover {
  background: rgba(255, 255, 255, 0.12);
}

.banner {
  position: relative;
  min-height: 520px;
  margin: 0 36px 0;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.2) 50%, transparent 70%);
}

.banner-copy h2 {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.25;
  max-width: 720px;
}

.banner-copy h2 em {
  font-style: italic;
  color: var(--gold-text);
  font-weight: 500;
}

.banner-copy .btn {
  margin-top: 22px;
  min-width: 140px;
}

.cta-band {
  position: relative;
  min-height: 560px;
  margin: 0;
}

.cta-band img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.cta-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: rgba(0, 0, 0, 0.42);
}

.cta-copy h2 {
  font-family: var(--serif);
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
}

.cta-copy h2 em {
  font-style: italic;
  color: var(--gold-text);
  font-weight: 500;
}

.cta-copy p {
  max-width: 560px;
  color: #fff;
  font-size: 13px;
  margin: 16px 0 28px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions .btn {
  min-width: 160px;
  border-radius: 6px;
}

.home-gap {
  height: 20px;
  background: #fff;
}

/* ===== Collection ===== */
.collection-page {
  background: #fff;
  padding: 28px 48px 80px;
}

.collection-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
}

.filter-wrap {
  position: relative;
}

.filter-btn {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 16px 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: #fff;
}

.filter-btn svg {
  width: 16px;
  height: 16px;
}

.filter-list {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #eee;
  min-width: 180px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.filter-wrap.open .filter-list {
  display: block;
}

.filter-list button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.filter-list button:hover,
.filter-list button.is-active {
  background: #f4f4f4;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 36px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 14px 0 4px;
}

.product-card .price {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.product-card .btn {
  width: 100%;
}

.product-card img {
  transition: transform 0.45s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card a:first-child {
  overflow: hidden;
  display: block;
}

/* ===== Product ===== */
.product-page {
  padding: 36px 48px 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-main {
  position: relative;
  background: #f3f3f3;
}

.gallery-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  display: block;
}

.gallery-main > .look-nav {
  position: absolute;
  top: 0;
  height: 100%;
  width: 56px;
  z-index: 4;
  transform: none;
}

.gallery-main > .look-nav.prev { left: 0; }
.gallery-main > .look-nav.next { right: 0; }

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.gallery-main .look-nav {
  color: #fff;
}

.product-info h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-info .lead {
  color: #9a9a9a;
  font-size: 13px;
  margin: 14px 0 22px;
  max-width: 520px;
}

.product-info h2 {
  font-size: 15px;
  margin-bottom: 8px;
}

.product-info ul {
  color: #9a9a9a;
  font-size: 13px;
  margin-bottom: 22px;
  padding-left: 18px;
  list-style: disc;
}

.product-info li {
  margin-bottom: 4px;
}

.sizes {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 8px 0 22px;
  font-size: 14px;
}

.size-opt {
  padding: 4px 8px;
  color: #111;
}

.size-opt.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.size-sep {
  color: #bbb;
}

.info-i {
  width: 18px;
  height: 18px;
  border: 1px solid #888;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 11px;
  display: grid;
  place-items: center;
  color: #555;
}

.qty {
  display: inline-grid;
  grid-template-columns: 42px 52px 42px;
  border: 1px solid #111;
  margin-bottom: 22px;
}

.qty button,
.qty span {
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.qty span {
  border-left: 1px solid #111;
  border-right: 1px solid #111;
}

.p-actions {
  display: flex;
  gap: 12px;
}

.p-actions .btn {
  flex: 1;
  min-height: 48px;
}

/* ===== Store ===== */
.store-page {
  padding: 36px 48px 80px;
}

.store-page h1 {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 36px;
}

.store-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.store-grid > img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.store-copy h2 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 12px;
}

.store-copy p {
  color: #8a8a8a;
  font-size: 13px;
  margin-bottom: 10px;
}

.store-copy h3 {
  margin: 22px 0 8px;
  font-size: 15px;
}

.store-copy .hours {
  color: #555;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.store-map {
  margin-top: 22px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #eef3e4;
}

/* ===== Auth ===== */
.auth-page {
  padding: 56px 24px 80px;
}

.auth-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.auth-wrap h1 {
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
}

.auth-wrap .sub {
  text-align: center;
  color: #8a8a8a;
  font-size: 13px;
  max-width: 520px;
  margin: 12px auto 28px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 28px;
}

.auth-tabs button {
  background: none;
  padding: 12px 8px;
  font-size: 15px;
  color: #9a9a9a;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.auth-tabs button.is-active {
  color: #000;
  font-weight: 600;
  border-bottom: 3px solid #000;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 46px;
  border: 1px solid #d0d0d0;
  padding: 0 12px;
  background: #fff;
  font-size: 14px;
}

.field textarea {
  height: 96px;
  padding: 10px 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid #111;
  border-color: #111;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 22px;
  font-size: 13px;
  color: #777;
}

.auth-row a {
  text-decoration: underline;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-hidden {
  display: none;
}

/* ===== Checkout ===== */
.checkout-page {
  background: var(--page);
  padding: 36px 40px 70px;
}

.checkout-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.checkout-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-summary-card,
.checkout-payment-card {
  flex: 0 0 auto;
}

/* Only stretch columns equal when cart has exactly 1 item */
.checkout-grid.checkout-qty-1 {
  align-items: stretch;
}

.checkout-grid.checkout-qty-1 .checkout-aside {
  min-height: 100%;
  align-self: stretch;
  height: 100%;
}

.checkout-grid.checkout-qty-1 .checkout-billing-card {
  height: 100%;
}

.checkout-grid.checkout-qty-1 .checkout-payment-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.checkout-grid.checkout-qty-1 .checkout-payment-card .hint {
  margin-top: auto;
  padding-top: 16px;
}

/* 2+ items: right side grows naturally with product list */
.checkout-grid.checkout-qty-many {
  align-items: start;
}

.checkout-grid.checkout-qty-many .checkout-aside,
.checkout-grid.checkout-qty-many .checkout-billing-card,
.checkout-grid.checkout-qty-many .checkout-payment-card {
  height: auto;
  min-height: 0;
  flex: none;
}

.checkout-grid.checkout-qty-many .checkout-payment-card .hint {
  margin-top: 0;
  padding-top: 0;
}

.checkout-billing-card .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  align-items: start;
}

.checkout-billing-card .woocommerce-billing-fields h3,
.checkout-billing-card #order_review_heading,
.checkout-page .col2-set {
  display: none !important;
}

.checkout-billing-card .form-row {
  display: block !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

.checkout-billing-card .form-row-first {
  grid-column: 1;
}

.checkout-billing-card .form-row-last {
  grid-column: 2;
}

.checkout-billing-card .form-row-wide,
.checkout-billing-card #billing_address_1_field {
  grid-column: 1 / -1;
}

/* Force design field order (WC JS can reshuffle DOM). */
.checkout-billing-card #billing_first_name_field { order: 1; grid-column: 1; }
.checkout-billing-card #billing_last_name_field { order: 2; grid-column: 2; }
.checkout-billing-card #billing_country_field { order: 3; grid-column: 1; }
.checkout-billing-card #billing_state_field { order: 4; grid-column: 2; }
.checkout-billing-card #billing_address_1_field { order: 5; grid-column: 1 / -1; }
.checkout-billing-card #billing_phone_field { order: 6; grid-column: 1; }
.checkout-billing-card #billing_email_field { order: 7; grid-column: 2; }
.checkout-billing-card #billing_company_field,
.checkout-billing-card #billing_address_2_field,
.checkout-billing-card #billing_city_field,
.checkout-billing-card #billing_postcode_field,
.checkout-billing-card #shipping_company_field,
.checkout-billing-card #shipping_address_2_field,
.checkout-billing-card #shipping_city_field,
.checkout-billing-card #shipping_postcode_field,
.regaria-visually-hidden {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.checkout-billing-card .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.checkout-billing-card .form-row .required,
.checkout-billing-card .form-row .optional {
  display: none;
}

.checkout-billing-card .form-row input.input-text,
.checkout-billing-card .form-row textarea,
.checkout-billing-card .form-row select,
.checkout-billing-card .field input,
.checkout-billing-card .field textarea,
.checkout-billing-card .field select {
  width: 100%;
  height: 42px;
  border: 1px solid #d0d0d0;
  padding: 0 12px;
  background: #fff;
  font-size: 14px;
  border-radius: 0;
  box-sizing: border-box;
}

.checkout-billing-card .field {
  margin-bottom: 12px;
}

.checkout-billing-card .field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.checkout-billing-card .field-slip {
  margin-bottom: 14px;
}

.checkout-billing-card .field-slip .slip-heading {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.checkout-billing-card .field-slip .dropzone,
.checkout-billing-card label.dropzone {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  border: 1.5px dashed #c8c8c8;
  background: #f7f7f7;
  min-height: 140px;
  padding: 22px 16px;
  margin: 6px 0 0;
  color: #777;
  text-align: center;
  cursor: pointer;
}

.checkout-billing-card label.dropzone svg {
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.checkout-billing-card label.dropzone strong,
.checkout-billing-card label.dropzone #regaria-dropzone-label {
  display: block;
  width: 100%;
  color: #444;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.checkout-billing-card label.dropzone small {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
  color: #888;
  text-align: center;
}

.checkout-billing-card label.dropzone.is-ready {
  border-color: #111;
  color: #111;
}

.checkout-billing-card .select2-container {
  width: 100% !important;
}

.checkout-billing-card .select2-container .select2-selection--single {
  height: 42px !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 0 !important;
}

.checkout-billing-card .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  padding-left: 12px !important;
}

.checkout-billing-card .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}

.checkout-page .woocommerce-NoticeGroup,
.checkout-page .woocommerce-notices-wrapper {
  max-width: 1180px;
  margin: 0 auto 16px;
}

.checkout-page #order_review table,
.checkout-page .shop_table {
  display: none !important;
}

.summary-price {
  font-size: 14px;
  white-space: nowrap;
}

.checkout-payment-card .wc_payment_methods {
  display: none;
}

.checkout-page form.checkout {
  background: transparent;
}

.card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px 24px 20px;
}

.checkout-billing-card,
.checkout-summary-card,
.checkout-payment-card {
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  box-shadow: none;
}

.card h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid #ececec;
}

.checkout-billing-card .btn-block {
  margin-top: 4px;
  min-height: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dropzone {
  border: 1.5px dashed #c8c8c8;
  background: #f7f7f7;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #777;
  text-align: center;
  cursor: pointer;
  margin: 6px 0 0;
  padding: 22px 16px;
}

.dropzone svg {
  display: block;
}

.dropzone strong {
  display: block;
  color: #444;
  font-weight: 600;
  font-size: 14px;
}

.dropzone small {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #888;
}

.dropzone.is-ready {
  border-color: #111;
  color: #111;
}

.summary-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.summary-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.summary-item h3 {
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}

.summary-meta p {
  color: #888;
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

.summary-price {
  font-size: 14px;
  white-space: nowrap;
  padding-top: 2px;
}

.totals {
  border-top: 1px solid #ececec;
  padding-top: 12px;
  margin-top: 8px;
}

.totals > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
  padding: 4px 0;
  border-bottom: 0;
}

.totals .grand {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
}

.checkout-page .woocommerce-form-coupon-toggle,
.checkout-page .checkout_coupon {
  display: none !important;
}

.checkout-payment-card h2 {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 6px;
}

.pay-sub {
  display: block;
  font-family: var(--serif);
  color: #8a8a8a;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid #ececec;
  line-height: 1.2;
}

.bank-box {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px;
  background: #f3e6d8;
  border: 1px solid #e5d4c2;
  border-radius: 4px;
  padding: 16px 18px;
  margin: 0 0 12px;
  color: #222;
  width: 100%;
  box-sizing: border-box;
}

.bank-box .bank-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px;
  width: 100%;
  margin: 0;
}

.bank-box .bank-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  line-height: 1.3;
}

.bank-box .bank-value,
.bank-box strong.bank-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}

.checkout-payment-card .hint {
  color: #9a9a9a;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.checkout-payment-card .wc_payment_methods,
.checkout-payment-card .payment_methods {
  display: none !important;
}

.hint {
  color: #9a9a9a;
  font-size: 11px;
  line-height: 1.6;
}

.empty-note {
  color: #888;
  font-size: 14px;
}

/* ===== Success ===== */
.success-page {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.success-page h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
}

.success-page p {
  color: #8a8a8a;
  margin: 12px 0 28px;
}

.success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.success-actions .btn {
  min-width: 150px;
}

/* ===== Cart drawer ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  transform: none;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 22px 14px;
  border-bottom: 1px solid #eee;
}

.cart-head h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 18px 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.cart-line img {
  width: 86px;
  height: 86px;
  object-fit: cover;
}

.cart-line h3 {
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.cart-line p {
  font-size: 13px;
  color: #333;
  margin-bottom: 2px;
}

.cart-line .qty {
  margin: 10px 0 0;
  transform: scale(0.9);
  transform-origin: left center;
}

.cart-foot {
  padding: 16px 22px 22px;
}

.nav-mobile {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.show {
  display: grid;
}

.modal-box {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 28px;
}

.modal-box h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 130;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 8px 28px;
  }

  .nav-left {
    gap: 28px;
  }

  .nav-left a,
  .nav-drop > button {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .brand img {
    height: 64px;
  }

  .collection-page,
  .product-page,
  .store-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .lookbook {
    --look-visible: 2;
    --look-peek: 28px;
    --look-gap: 16px;
  }

  .banner,
  .split-row {
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .split-row {
    padding: 16px;
  }

  .checkout-grid,
  .store-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .checkout-aside,
  .checkout-payment-card,
  .checkout-grid.checkout-qty-1 .checkout-aside,
  .checkout-grid.checkout-qty-1 .checkout-payment-card,
  .checkout-grid.checkout-qty-1 .checkout-billing-card {
    min-height: 0;
    height: auto;
    flex: none;
  }

  .checkout-payment-card .hint,
  .checkout-grid.checkout-qty-1 .checkout-payment-card .hint {
    margin-top: 0;
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-left {
    display: none;
  }

  .header-inner {
    grid-template-columns: 40px 1fr 88px;
    padding: 0 16px;
  }

  .brand img {
    height: 56px;
  }

  .nav-mobile {
    background: #F5F5F5;
    padding: 8px 22px 20px;
  }

  .nav-mobile.is-open {
    display: block;
  }

  .nav-mobile a,
  .nav-mobile button.m-link {
    display: block;
    color: #808080;
    font-family: var(--nav);
    padding: 12px 0;
    letter-spacing: 0.2em;
    font-size: 13px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-mobile .sub a {
    padding-left: 12px;
    font-size: 12px;
    opacity: 0.9;
  }

  .hero {
    min-height: calc(100dvh - var(--header-h));
    padding: 48px 20px;
  }

  .split-row {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 12px;
  }

  .banner {
    margin: 0 12px;
  }

  .banner img,
  .cta-band img {
    height: 380px;
  }

  .banner,
  .cta-band {
    min-height: 380px;
  }

  .lookbook {
    --look-visible: 1;
    --look-peek: 32px;
    --look-gap: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .socials {
    justify-content: center;
  }

  .p-actions {
    flex-direction: column;
  }

  .checkout-page {
    padding: 20px 12px 48px;
  }

  .auth-tabs {
    grid-template-columns: 1fr;
  }

  .dash-page {
    padding: 28px 16px 56px;
  }

  .account-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

.account-drop {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.account-drop:hover .account-menu,
.account-drop.open .account-menu,
.account-drop:focus-within .account-menu {
  display: block;
}

.account-menu {
  right: 0;
  left: auto;
  min-width: 188px;
}

.account-menu .account-name {
  padding: 10px 22px 6px;
  color: var(--gold-text);
  font-family: var(--nav);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-menu button {
  display: block;
  width: 100%;
  text-align: left;
  color: #808080;
  font-family: var(--nav);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 11px 22px;
  text-transform: uppercase;
}

.account-menu button:hover {
  background: rgba(0, 0, 0, 0.04);
}

.dash-page {
  background: var(--page);
  padding: 40px 40px 80px;
  flex: 1;
}

.dash-head {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.dash-head h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
}

.dash-head p {
  color: #8a8a8a;
  margin-top: 6px;
}

.account-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.stats-row {
  max-width: 1180px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px 22px;
}

.stat-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.stat-card strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.admin-stack {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  padding: 0 10px 12px 0;
  border-bottom: 1px solid #ececec;
  white-space: nowrap;
}

.data-table td {
  padding: 12px 10px 12px 0;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: top;
}

.data-table .muted {
  color: #888;
  font-size: 12px;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #eee;
}

.badge-pending {
  background: #f3e6d8;
}

.badge-verified {
  background: #e6efe6;
}

.badge-shipped {
  background: #e7eef6;
}

.badge-completed {
  background: #ececec;
}

.badge-cancelled {
  background: #f6e7e7;
}

.status-select {
  height: 34px;
  border: 1px solid #d0d0d0;
  padding: 0 8px;
  background: #fff;
  font-size: 12px;
}

.order-items {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.auth-error {
  color: #b42318;
  font-size: 13px;
  margin: -8px 0 16px;
}

.slip-link {
  text-decoration: underline;
  font-size: 12px;
}

/* ===== WordPress compat ===== */
body {
  font-family: var(--sans) !important;
  background: var(--white) !important;
  color: var(--black) !important;
  line-height: 1.5 !important;
}
h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea { font-family: inherit; }
.hero h1, .banner-copy h2, .cta-copy h2, .split-overlay h3, .store-page h1 { margin: 0; padding: 0; border: 0; background: none; box-shadow: none; }
img { height: auto; max-width: 100%; border: 0; box-shadow: none; }
.page a:where(:not(.wp-element-button)) { text-decoration: none; }
.woocommerce-products-header, .woocommerce-result-count, .woocommerce-ordering { display: none !important; }
.woocommerce .product-grid, .product-grid { list-style: none; margin: 0; padding: 0; }
.product-grid .product-card, .product-grid .product { width: auto !important; float: none !important; margin: 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.product-card .price .amount, .product-card .price del, .product-card .price ins { color: inherit; background: none; text-decoration: none; font-weight: inherit; }
.product-card .woocommerce-Price-amount { font-weight: 400; }

/* ===== WooCommerce skin ===== */
.woocommerce ul.products, .woocommerce-page ul.products { display: none; }

/* ===== Force collection grid (kill WC float leftovers + ghost nodes) ===== */
.collection-page .product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 42px 36px !important;
  width: 100% !important;
}
.collection-page .product-grid > .product-card {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .collection-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  .collection-page .product-grid { grid-template-columns: 1fr !important; }
}
/* Fixed highlight copy — only images slide */
.hl-box > .highlight-copy {
  z-index: 3;
  pointer-events: none;
}
.hl-box > .highlight-copy .hl-actions,
.hl-box > .highlight-copy a {
  pointer-events: auto;
}
.hl-box > .hl-viewport {
  position: absolute;
  inset: 0;
}
.hl-box {
  position: relative;
}
/* ===== Auth page WooCommerce overrides ===== */
.woo-account-page .woocommerce,
.woo-account-page .woocommerce-notices-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.woo-account-page.is-logged-in .woocommerce,
.woo-account-page.is-logged-in .woocommerce-notices-wrapper {
  max-width: none;
  margin: 0;
}
.woo-account-page.is-logged-in .woocommerce-notices-wrapper {
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 0 40px;
}
.account-stack {
  display: grid;
  gap: 22px;
}
.dash-empty {
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.6;
}
.dash-empty a {
  color: #111;
  text-decoration: underline;
}
.dash-logout {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}
.dash-logout a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}
.dash-logout a:hover {
  color: #000;
}
.regaria-account-form .btn {
  width: 100%;
  margin-top: 8px;
}
.woo-account-page.is-logged-in .woocommerce-MyAccount-content {
  max-width: none;
  margin: 0;
  padding: 0;
}
.auth-wrap .woocommerce-form-row,
.auth-wrap .form-row {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}
.auth-wrap label {
  display: block;
  float: none !important;
  width: auto !important;
  text-align: left !important;
}
.auth-wrap input.input-text,
.auth-wrap input[type="text"],
.auth-wrap input[type="email"],
.auth-wrap input[type="password"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 46px;
  border: 1px solid #d0d0d0;
  padding: 0 12px;
  box-sizing: border-box;
}
.auth-wrap .form-row.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0 !important;
}
.auth-wrap .form-row > .field {
  margin-bottom: 18px;
}
.auth-wrap .button,
.auth-wrap button[type="submit"] {
  width: 100%;
  background: #000 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  height: 48px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
}
.woo-account-page .woocommerce-MyAccount-navigation {
  display: none !important;
}
.woo-account-page:not(.is-logged-in) .woocommerce-MyAccount-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
}
/* Hide WC password strength meter leftovers */
.woocommerce-password-strength,
.woocommerce-password-hint,
.password-input .show-password-input {
  display: none !important;
}