:root {
  --black: #050505;
  --white: #ffffff;
  --paper: #f4f1ee;
  --soft: #ebe7e3;
  --line: #ded8d2;
  --text: #171717;
  --muted: #706a65;
  --wine: #321a23;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.promo-bar {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid #242424;
}

.promo-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.promo-track span {
  padding: 11px 28px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(16px, 4vw, 48px) 14px;
  background: var(--black);
  color: var(--white);
}

.logo {
  display: grid;
  place-items: center;
}

.logo img {
  width: clamp(160px, 21vw, 260px);
  height: 42px;
  object-fit: contain;
}

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

.admin-link {
  font-size: .8rem;
  color: #c9c9c9;
}

.cart-button,
.icon-button {
  color: var(--white);
  background: transparent;
  border: 1px solid #3a3a3a;
  min-height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.cart-button {
  padding: 0 16px;
  font-weight: 800;
}

.cart-button b {
  margin-left: 4px;
}

.icon-button {
  width: 42px;
  display: grid;
  place-items: center;
}

.icon-button span {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-button span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -7px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
}

.main-nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 56px);
  padding-top: 16px;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  background: var(--black);
  overflow: hidden;
}

.category-thumb img,
.mood-grid img,
.lookbook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-card span {
  display: block;
  color: #d8d8d8;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.hero-clean {
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 62px);
}

.hero-clean .hero-copy {
  width: 100%;
  text-align: left;
  color: var(--white);
}

.hero-copy span {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #ededed;
  line-height: 1.55;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}

.hero-showcase figure {
  height: min(56vh, 560px);
  min-height: 390px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f2ef;
  box-shadow: 0 20px 50px rgba(0,0,0,.24);
}

.hero-showcase figure:nth-child(2) {
  height: min(60vh, 610px);
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-clean .primary-button {
  background: var(--white);
  color: var(--black);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(280px, 1fr);
  gap: clamp(22px, 6vw, 80px);
  align-items: end;
  background: var(--paper);
}

.intro-band span,
.catalog-empty span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-band h2,
.catalog-empty h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: .9;
  text-transform: uppercase;
}

.intro-band p,
.catalog-empty p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.mood-grid {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 14px;
  padding: 0 clamp(16px, 5vw, 62px) clamp(42px, 7vw, 86px);
}

.mood-grid img {
  min-height: 420px;
  border-radius: var(--radius);
  background: var(--soft);
}

.mood-grid img:nth-child(2) {
  min-height: 520px;
}

.catalog-empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(52px, 8vw, 110px) clamp(16px, 5vw, 62px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-empty p {
  margin-top: 18px;
}

.primary-button,
.newsletter button,
.admin-form button,
.checkout-box button,
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 62px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: .92;
  text-transform: uppercase;
}

.section-head a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.category-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  color: inherit;
  min-height: 210px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-thumb,
.product-thumb {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,0)),
    #e8e3df;
  color: var(--muted);
}

.category-thumb {
  position: relative;
  height: 220px;
}

.category-thumb::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.35) 58%, rgba(0,0,0,0));
  pointer-events: none;
}

.category-card b {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.78);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
  text-transform: uppercase;
  font-size: .84rem;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.65);
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 60%;
}

.filter {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-thumb {
  height: clamp(260px, 31vw, 430px);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lookbook {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  padding: 0 clamp(16px, 5vw, 62px) clamp(42px, 7vw, 86px);
}

.lookbook article {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
}

.lookbook article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.02) 58%);
}

.lookbook div {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  color: white;
}

.lookbook span {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lookbook h2 {
  max-width: 520px;
  margin: 10px 0 18px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: .9;
  text-transform: uppercase;
}

.lookbook a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  background: white;
  color: black;
  padding: 0 18px;
  font-weight: 900;
}

.placeholder-card {
  text-align: center;
  padding: 18px;
}

.placeholder-card b {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

.product-info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}

.product-info small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-info h3 {
  margin: 0;
  font-size: 1rem;
}

.price {
  font-weight: 900;
}

.wholesale-note,
.cart-note {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 600;
}

.stock {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 9px;
  background: rgba(0,0,0,.82);
  color: white;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buy-button {
  width: 100%;
  min-height: 42px;
  margin-top: 5px;
}

.clear-filter {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.category-empty {
  display: grid;
  gap: 8px;
  min-height: 220px;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.category-empty p {
  margin: 0;
  color: var(--muted);
}

.product-detail {
  padding: clamp(36px, 6vw, 72px) clamp(16px, 5vw, 62px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-page {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(300px, .9fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.back-link {
  grid-column: 1 / -1;
  width: fit-content;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-gallery {
  display: grid;
  gap: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-main {
  min-height: min(72vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0 10px 10px;
}

.gallery-thumbs button {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  opacity: .72;
  transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.active {
  opacity: 1;
  border-color: var(--black);
}

.gallery-thumbs button:hover {
  transform: translateY(-2px);
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.product-panel {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 15px;
}

.product-panel small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.product-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .9;
  text-transform: uppercase;
}

.product-description {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.55;
}

.detail-price {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.detail-price b {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.detail-price span {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: line-through;
}

.product-panel label,
.checkout-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.product-panel select,
.product-panel input,
.checkout-form input,
.checkout-form select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--white);
}

.stock-line {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 6vw, 70px) clamp(16px, 5vw, 62px);
  background: var(--black);
  color: white;
}

.newsletter h2 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: .9;
}

.newsletter p {
  margin: 0;
  color: #cfcfcf;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.newsletter input,
.admin-form input,
.admin-form select,
.checkout-box select,
.search-layer input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  background: white;
}

.newsletter input {
  border-color: #333;
}

.newsletter button {
  background: white;
  color: black;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.benefits article {
  min-height: 150px;
  padding: 28px;
  background: var(--paper);
}

.benefits b {
  display: block;
  margin-bottom: 8px;
}

.benefits span {
  color: var(--muted);
  line-height: 1.5;
}

.admin-panel {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(320px, 1fr) minmax(280px, .8fr);
  gap: 22px;
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 62px);
  background: #eee9e4;
  border-top: 1px solid var(--line);
}

.admin-copy span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-copy h2 {
  margin: 12px 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .88;
  text-transform: uppercase;
}

.admin-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-form,
.admin-list {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  font-size: .82rem;
  font-weight: 900;
}

.field-help {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.admin-form .check {
  display: flex;
  align-items: center;
}

.admin-form .check input {
  width: auto;
  min-height: auto;
}

.admin-form button {
  grid-column: 1 / -1;
}

.admin-form button:disabled,
.checkout-form button:disabled {
  cursor: wait;
  opacity: .65;
}

.full-field {
  grid-column: 1 / -1;
}

.admin-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
}

.photo-preview {
  min-height: 170px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #b9b2aa;
  border-radius: var(--radius);
  background: #f6f2ed;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.photo-preview-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
  padding: 8px;
}

.photo-preview-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  background: #111;
}

.admin-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #176b35;
  font-weight: 900;
}

.admin-message[data-type="error"] {
  color: #b42318;
}

.admin-list {
  max-height: 560px;
  overflow: auto;
}

.admin-item {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.admin-item:last-child {
  border-bottom: 0;
}

.admin-item b {
  text-transform: uppercase;
}

.admin-item span {
  color: var(--muted);
  font-size: .9rem;
}

.admin-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.admin-actions button {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  cursor: pointer;
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(420px, 100%);
  height: 100vh;
  padding: 20px;
  background: white;
  box-shadow: -18px 0 50px rgba(0,0,0,.18);
  transform: translateX(100%);
  transition: transform .25s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.cart-head button,
.search-layer button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item span {
  display: grid;
  gap: 4px;
}

.cart-item small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 15px;
  border-top: 2px solid var(--black);
  font-weight: 900;
}

.checkout-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 12px;
}

.checkout-box label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.search-layer {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
}

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

.search-layer input {
  width: min(620px, 100%);
  min-height: 58px;
  font-size: 1.2rem;
}

.search-layer button {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #20b85a;
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(22, 140, 77, .35);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px clamp(16px, 5vw, 62px);
  background: var(--black);
  color: white;
}

.footer span {
  color: #cfcfcf;
}

.admin-page {
  min-height: 100vh;
  background: #eee9e4;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(16px, 5vw, 62px);
  background: var(--black);
  color: var(--white);
}

.admin-top nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
}

.admin-top nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-logout {
  min-height: 42px;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--black);
}

.login-card {
  width: min(420px, 100%);
  display: grid;
  gap: 15px;
  padding: clamp(24px, 5vw, 38px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}

.login-card img {
  width: 190px;
  height: 48px;
  object-fit: contain;
  justify-self: center;
  margin-bottom: 10px;
}

.login-card h1 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: .9;
}

.login-card label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.login-card input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
}

.login-card button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.login-card p {
  min-height: 20px;
  margin: 0;
  color: #b42318;
  font-weight: 800;
}

.admin-shell {
  padding: clamp(30px, 5vw, 70px) clamp(16px, 5vw, 62px);
}

.admin-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.admin-hero span,
.admin-preview span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .86;
  text-transform: uppercase;
}

.admin-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-page .admin-form {
  position: sticky;
  top: 18px;
}

.admin-preview {
  display: grid;
  gap: 16px;
}

.admin-preview h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: .95;
  text-transform: uppercase;
}

.admin-product {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.admin-product:last-child {
  border-bottom: 0;
}

.admin-product-photo {
  width: 110px;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-product b,
.admin-product span,
.admin-product small {
  display: block;
}

.admin-product b {
  margin-bottom: 5px;
  text-transform: uppercase;
}

.admin-product span,
.admin-product small {
  color: var(--muted);
  line-height: 1.45;
}

.admin-orders {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.admin-orders span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-orders h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: .95;
  text-transform: uppercase;
}

.admin-order {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.admin-order:last-child {
  border-bottom: 0;
}

.order-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-head b,
.order-head span,
.admin-order small {
  display: block;
}

.order-head b {
  margin-bottom: 5px;
  text-transform: uppercase;
}

.order-head span,
.admin-order small {
  color: var(--muted);
  line-height: 1.45;
}

.order-head strong {
  white-space: nowrap;
  font-size: 1.15rem;
}

.admin-order ul {
  margin: 12px 0;
  padding-left: 18px;
  color: #202020;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero-clean,
  .intro-band {
    grid-template-columns: 1fr;
  }

  .hero-showcase figure {
    height: 560px;
  }

  .category-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .admin-panel {
    grid-template-columns: 1fr;
  }

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

  .mood-grid img:nth-child(3) {
    grid-column: 1 / -1;
    max-height: 520px;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-page .admin-form {
    position: static;
  }

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

  .product-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 15px 14px 12px;
  }

  .logo img {
    width: 145px;
    height: 38px;
  }

  .admin-link {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-clean {
    padding: 30px 14px 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-showcase figure,
  .hero-showcase figure:nth-child(2) {
    height: 320px;
    min-height: 320px;
  }

  .section-head {
    display: grid;
  }

  .filters {
    max-width: 100%;
  }

  .category-row,
  .benefits,
  .newsletter,
  .lookbook {
    grid-template-columns: 1fr;
  }

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

  .lookbook {
    padding-inline: 14px;
  }

  .lookbook article {
    min-height: 430px;
  }

  .mood-grid {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

  .mood-grid img,
  .mood-grid img:nth-child(2),
  .mood-grid img:nth-child(3) {
    min-height: 420px;
    grid-column: auto;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-product-photo {
    width: 88px;
  }

  .gallery-main {
    min-height: 420px;
  }

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

/*catpatch3*/
.category-card{position:relative}.category-thumb{position:relative}.category-thumb:after{content:"";position:absolute;inset:42% 0 0;background:linear-gradient(0deg,rgba(0,0,0,.78),rgba(0,0,0,.35) 58%,rgba(0,0,0,0));pointer-events:none}.category-card b{position:absolute;left:12px;right:12px;bottom:12px;z-index:2;width:fit-content;max-width:calc(100% - 24px);padding:8px 10px;border-radius:999px;background:rgba(0,0,0,.78);color:var(--white);box-shadow:0 8px 18px rgba(0,0,0,.24);font-size:.84rem;line-height:1.05;letter-spacing:0;text-shadow:0 1px 3px rgba(0,0,0,.65)}
