@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --ink: #070708;
  --panel: #0c0c0e;
  --panel-2: #121115;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #8e8a93;
  --paper: #eee9e2;
  --violet: #7f5b9d;
  --violet-light: #ad83ce;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body [hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
}

body.cart-open,
body.checkout-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  height: 26px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  color: #a6a2aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 74px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(18px);
}

.brand-mark {
  justify-self: start;
}

.brand-mark img {
  width: 46px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(128, 87, 161, 0.42));
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(26px, 4vw, 62px);
}

.nav a {
  position: relative;
  color: #c8c4ca;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--violet-light);
  transition: right 0.25s ease;
}

.nav a:hover::after {
  right: 0;
}

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

.icon-button,
.menu-button {
  position: relative;
  width: 24px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
}

.search-button span {
  position: absolute;
  left: 3px;
  top: 5px;
  width: 13px;
  height: 13px;
  border: 1px solid #d8d4da;
  border-radius: 50%;
}

.search-button span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background: #d8d4da;
  transform: rotate(45deg);
  right: -5px;
  bottom: -3px;
}

.user-button span {
  position: absolute;
  left: 7px;
  top: 3px;
  width: 9px;
  height: 9px;
  border: 1px solid #d8d4da;
  border-radius: 50%;
}

.user-button span::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 13px;
  width: 17px;
  height: 9px;
  border: 1px solid #d8d4da;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.bag-button span {
  position: absolute;
  left: 4px;
  top: 8px;
  width: 16px;
  height: 16px;
  border: 1px solid #d8d4da;
}

.bag-button span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -6px;
  width: 8px;
  height: 7px;
  border: 1px solid #d8d4da;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.cart-count {
  position: absolute;
  right: -8px;
  top: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--violet);
  color: white;
  font-size: 8px;
  font-style: normal;
}

.dark-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 100px);
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #050506;
}

.hero-texture {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(0.35) contrast(1.18);
}

.dark-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 5, 0.94), rgba(5, 5, 6, 0.24) 50%, rgba(4, 4, 5, 0.94)),
    linear-gradient(0deg, #050506, transparent 40%, rgba(5, 5, 6, 0.45));
}

.hero-aura {
  position: absolute;
  z-index: -2;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 54, 128, 0.36), rgba(52, 30, 65, 0.12) 43%, transparent 70%);
  filter: blur(8px);
}

.hero-content {
  width: min(90vw, 960px);
  padding: 72px 20px 90px;
  text-align: center;
}

.hero-logo {
  width: clamp(122px, 13vw, 190px);
  height: clamp(154px, 17vw, 232px);
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 30px rgba(134, 86, 170, 0.55));
  animation: reveal 0.9s ease both;
}

.hero-kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--violet-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 8.5vw, 124px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 #fff, 0 0 34px rgba(115, 82, 139, 0.22);
}

.hero-line {
  width: min(580px, 70vw);
  margin: 28px auto 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.hero-line i {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet));
}

.hero-line i:last-child {
  background: linear-gradient(90deg, var(--violet), transparent);
}

.hero-line span {
  color: #968b9e;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.42em;
}

.outline-button {
  min-width: 250px;
  height: 49px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(163, 115, 198, 0.65);
  color: #e8e3ea;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.outline-button:hover {
  background: #8b61a8;
  border-color: #8b61a8;
  color: white;
}

.hero-side-note {
  position: absolute;
  left: 34px;
  bottom: 40px;
  color: #625d66;
  font-size: 7px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #77727a;
  font-size: 7px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.hero-scroll i {
  width: 42px;
  height: 1px;
  background: #77727a;
}

.catalog {
  padding: 110px clamp(18px, 4vw, 64px) 130px;
  background: var(--ink);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.section-title > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title p,
.catalog-count {
  margin: 0;
  color: #77727a;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.star {
  color: var(--violet-light);
  font-size: 16px;
}

.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.catalog-count {
  justify-self: end;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 42px;
}

.filters button {
  min-width: 92px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: #76717a;
  cursor: pointer;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.2s;
}

.filters button:hover,
.filters button.active {
  border-color: var(--violet);
  color: #e7ddeb;
  background: rgba(121, 81, 150, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-card {
  min-width: 0;
  background: var(--ink);
}

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

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 33%, rgba(102, 66, 128, 0.24), transparent 43%),
    #101012;
}

.product-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-image > img {
  transform: scale(1.035);
}

.product-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.45), transparent 32%);
  pointer-events: none;
}

.badge {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 6px 8px;
  border: 1px solid rgba(174, 138, 198, 0.45);
  background: rgba(8, 8, 9, 0.78);
  color: #c7a9d8;
  font-size: 7px;
  letter-spacing: 0.18em;
}

.favorite {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  color: #aaa4ad;
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.favorite.active {
  color: var(--violet-light);
}

.quick-add {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 43px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 6, 7, 0.86);
  backdrop-filter: blur(12px);
  cursor: pointer;
  color: #eee9f0;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: none;
}

.quick-add:hover {
  background: var(--violet);
  border-color: var(--violet);
}

.product-info {
  min-height: 105px;
  padding: 18px 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-info strong {
  font-size: 10px;
  font-weight: 400;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  color: #68636c;
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
}

.empty-collection {
  padding: 70px 20px;
  text-align: center;
}

.empty-collection img {
  width: 80px;
  margin: 0 auto 16px;
  opacity: 0.35;
}

.brand-manifesto {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-mark {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(105, 65, 135, 0.32), transparent 45%),
    linear-gradient(145deg, #0d0c0f, #060607);
}

.manifesto-mark::before,
.manifesto-mark::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: rotate(45deg);
}

.manifesto-mark::after {
  inset: 22%;
  border-color: rgba(132, 86, 165, 0.16);
}

.manifesto-mark img {
  position: relative;
  z-index: 1;
  width: min(36vw, 360px);
  filter: drop-shadow(0 0 65px rgba(137, 89, 171, 0.65));
}

.manifesto-copy {
  padding: clamp(60px, 9vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #09090a;
}

.manifesto-copy h2 {
  margin: 10px 0 34px;
  font-family: var(--serif);
  font-size: clamp(45px, 5.7vw, 82px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.manifesto-copy h2 em {
  color: #8f6aa7;
  font-weight: 400;
}

.manifesto-copy > p:not(.section-label) {
  max-width: 530px;
  margin: 0 0 40px;
  color: #928d95;
  font-size: 12px;
  line-height: 2;
}

.manifesto-copy > a {
  width: max-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--violet);
  color: #d7d0da;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manifesto-copy > a span {
  margin-left: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.service-row article {
  min-height: 250px;
  padding: 55px clamp(28px, 4vw, 70px);
  border-right: 1px solid var(--line);
}

.service-row article:last-child {
  border-right: 0;
}

.service-row span {
  color: var(--violet);
  font-family: var(--serif);
  font-size: 20px;
}

.service-row h3 {
  margin: 34px 0 14px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: #77727a;
  font-size: 10px;
  line-height: 1.7;
}

.newsletter {
  padding: 100px 24px 115px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(90, 55, 116, 0.18), transparent 38%),
    #080809;
}

.newsletter > img {
  width: 72px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
  opacity: 0.8;
}

.newsletter h2 {
  margin: 0 auto 38px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 400;
}

.newsletter-form {
  width: min(580px, 100%);
  margin: auto;
  display: flex;
  border-bottom: 1px solid #77727a;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.newsletter-form button {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #cbbad5;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.newsletter-form button span {
  margin-left: 16px;
}

footer {
  padding: 65px clamp(24px, 5vw, 72px) 24px;
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer-top {
  padding-bottom: 65px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.08em;
}

.footer-logo img {
  width: 56px;
  height: 70px;
  object-fit: contain;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 55px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: #a5a0a8;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  color: #6f6a72;
  font-size: 9px;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #4c484f;
  font-size: 7px;
  letter-spacing: 0.15em;
}

.cart-drawer {
  position: fixed;
  z-index: 101;
  right: 0;
  top: 0;
  width: min(460px, 100%);
  height: 100dvh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #0b0b0d;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-open .cart-drawer {
  transform: none;
}

.overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.cart-head {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  text-transform: uppercase;
}

.cart-head h2 span {
  color: var(--violet-light);
  font-family: var(--sans);
  font-size: 9px;
  vertical-align: top;
}

.cart-close {
  border: 0;
  background: transparent;
  color: #aaa5ad;
  cursor: pointer;
  font-size: 30px;
  font-weight: 200;
}

.cart-items {
  flex: 1;
  overflow: auto;
}

.cart-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 84px;
  height: 104px;
  object-fit: cover;
  background: #131316;
}

.cart-item h3 {
  margin: 8px 0 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-item p {
  margin: 0 0 14px;
  color: #77727a;
  font-size: 8px;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity button,
.remove-item {
  border: 1px solid var(--line);
  background: transparent;
  color: #aaa5ad;
  cursor: pointer;
}

.quantity button {
  width: 25px;
  height: 25px;
}

.remove-item {
  align-self: start;
  margin-top: 6px;
  border: 0;
  font-size: 18px;
}

.cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
}

.cart-empty[hidden],
.cart-total[hidden] {
  display: none !important;
}

.cart-empty img {
  width: 82px;
  opacity: 0.32;
}

.cart-empty h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.cart-continue {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-total {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.cart-total > div {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 24px;
  text-transform: uppercase;
}

.checkout-button {
  width: 100%;
  height: 50px;
  border: 0;
  background: var(--violet);
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.checkout-button:disabled,
.checkout-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cart-payment-note {
  margin: 11px 0 0;
  color: #6f6a72;
  font-size: 7px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.checkout-modal {
  position: fixed;
  z-index: 103;
  left: 50%;
  top: 50%;
  width: min(720px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  padding: clamp(24px, 4vw, 42px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 67, 141, 0.18), transparent 42%),
    #0b0b0d;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%);
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-head {
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.checkout-head p {
  margin: 0 0 7px;
  color: var(--violet-light);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.checkout-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.checkout-close {
  padding: 0;
  border: 0;
  background: transparent;
  color: #aaa5ad;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.checkout-demo-note {
  margin: 20px 0;
  padding: 12px 14px;
  border: 1px solid rgba(178, 139, 202, 0.35);
  background: rgba(128, 91, 156, 0.08);
  color: #b9aebe;
  font-size: 9px;
  line-height: 1.65;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-fields-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.checkout-field {
  display: grid;
  gap: 7px;
}

.checkout-field > span {
  color: #aaa4ad;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  background: #08080a;
  color: var(--paper);
  transition: border-color 0.2s;
}

.checkout-field input {
  min-height: 46px;
  padding: 0 13px;
}

.checkout-field textarea {
  min-height: 82px;
  padding: 13px;
  resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: var(--violet);
}

.checkout-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #8f8992;
  font-size: 9px;
  line-height: 1.55;
}

.checkout-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--violet);
}

.checkout-summary {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 23px;
  text-transform: uppercase;
}

.checkout-error {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(184, 92, 104, 0.45);
  background: rgba(184, 92, 104, 0.08);
  color: #e2a0aa;
  font-size: 9px;
  line-height: 1.55;
}

.checkout-submit {
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: var(--violet);
  color: #fff;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 30px);
  padding: 13px 20px;
  border: 1px solid rgba(165, 119, 196, 0.5);
  background: rgba(17, 13, 20, 0.96);
  color: #eee8f1;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    height: 66px;
  }

  .menu-button {
    display: block;
  }

  .menu-button span {
    position: absolute;
    left: 0;
    width: 19px;
    height: 1px;
    background: #d8d4da;
    transition: 0.2s;
  }

  .menu-button span:first-child {
    top: 10px;
  }

  .menu-button span:last-child {
    top: 17px;
  }

  .site-header.menu-open .menu-button span:first-child {
    top: 14px;
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-button span:last-child {
    top: 14px;
    transform: rotate(-45deg);
  }

  .brand-mark {
    justify-self: center;
  }

  .brand-mark img {
    width: 39px;
    height: 49px;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 26px;
    border-bottom: 1px solid var(--line);
    background: #09090a;
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .search-button,
  .user-button {
    display: none;
  }

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

  .brand-manifesto {
    grid-template-columns: 1fr;
  }

  .manifesto-mark {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto-mark img {
    width: 260px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .announcement {
    height: 24px;
    font-size: 7px;
  }

  .site-header {
    padding: 0 18px;
  }

  .dark-hero {
    min-height: calc(100svh - 90px);
  }

  .hero-logo {
    width: 116px;
    height: 150px;
  }

  .hero-content h1 {
    font-size: clamp(47px, 16vw, 75px);
    line-height: 0.88;
  }

  .hero-line {
    width: 84vw;
    gap: 12px;
  }

  .outline-button {
    min-width: 220px;
  }

  .hero-side-note,
  .hero-scroll {
    display: none;
  }

  .catalog {
    padding: 75px 12px 90px;
  }

  .section-title {
    grid-template-columns: 1fr auto;
  }

  .section-title > div {
    display: none;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

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

  .quick-add {
    opacity: 1;
    transform: none;
  }

  .manifesto-mark {
    min-height: 430px;
  }

  .manifesto-mark img {
    width: 205px;
  }

  .manifesto-copy {
    padding: 65px 28px;
  }

  .service-row article {
    padding: 42px 28px;
  }

  .newsletter {
    padding: 75px 20px 90px;
  }

  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-bottom {
    gap: 20px;
  }

  .cart-drawer {
    padding: 22px;
  }

  .checkout-modal {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
    padding: 22px 18px;
  }

  .checkout-fields-row {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
