@font-face { font-family: "Anton"; src: url("../fuentes/anton-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fuentes/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fuentes/inter-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fuentes/inter-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fuentes/inter-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fuentes/inter-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }
:root {
  --bg: #f6f5f1;
  --bg-card: #ffffff;
  --gray: #e8e7e2;
  --gray-line: #d8d6cf;
  --black: #111111;
  --black-soft: #2a2a28;
  --max-w: 1280px;
  --radius: 2px;
  --ff-display: "Anton", "Arial Narrow", sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--ff-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black-soft);
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
}

.section-sub {
  font-size: 15px;
  color: var(--black-soft);
  max-width: 46ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid var(--black);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--black);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--black-soft);
}
.btn--primary:disabled {
  background: var(--gray-line);
  border-color: var(--gray-line);
  color: #8a8a86;
  cursor: not-allowed;
  transform: none;
}
.btn--outline {
  background: transparent;
  color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--bg);
}
.btn--ghost {
  border-color: transparent;
  color: var(--bg);
}
.btn--ghost:hover {
  border-color: var(--bg);
}
.btn--full {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 20px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom-color: var(--gray-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo span {
  color: var(--black-soft);
  opacity: 0.5;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.back-to-main {
  font-size: 12px;
  font-weight: 600;
  color: var(--black-soft);
  opacity: 0.55;
  padding-right: 4px;
  border-right: 1px solid var(--gray-line);
  margin-right: 4px;
  transition: opacity 0.2s var(--ease);
  white-space: nowrap;
}
.back-to-main:hover {
  opacity: 1;
}
@media (max-width: 640px) {
  .back-to-main { font-size: 10px; padding-right: 8px; margin-right: 2px; }
}
.primary-nav {
  display: flex;
  gap: 32px;
}
.primary-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.25s var(--ease);
}
.primary-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--black);
  border-radius: 50%;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--black);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
}
.hero__tribal {
  position: absolute;
  bottom: -6%;
  left: -10%;
  width: 420px;
  max-width: 60vw;
  opacity: 0.06;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--black);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}
.hero__text {
  margin: 24px 0 32px;
  max-width: 42ch;
  font-size: 16px;
  color: var(--black-soft);
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: end;
}
.hero__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--gray);
}
.hero__collage-a {
  aspect-ratio: 3/4;
  align-self: start;
}
.hero__collage-b {
  aspect-ratio: 4/5;
  margin-top: 40px;
}
.hero__stamp {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 96px;
  height: 96px;
  z-index: 2;
}

.marquee {
  background: var(--black);
  color: var(--bg);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: voidline-marquee 22s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee__item::after {
  content: "•";
  margin-left: 28px;
  opacity: 0.5;
}
@keyframes voidline-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.drop {
  padding: 96px 0 80px;
}
.drop__head {
  text-align: center;
  margin-bottom: 40px;
}
.drop__head .section-sub {
  margin: 14px auto 0;
}
.drop__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--black);
}
.drop__filters {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.search-field {
  position: relative;
}
.search-field input {
  width: 240px;
  max-width: 60vw;
  padding: 10px 4px;
  border: none;
  border-bottom: 1.5px solid var(--black);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--black);
}
.search-field input::placeholder {
  color: #9a9a94;
}
.check-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.check-field input[type="checkbox"] { accent-color: var(--black); }
.view-toggle {
  display: flex;
  border: 1.5px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.view-toggle button {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  border-right: 1.5px solid var(--black);
}
.view-toggle button:last-child {
  border-right: none;
}
.view-toggle button.is-active {
  background: var(--black);
  color: var(--bg);
}

.drop-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--black-soft);
}

.drop-grid.is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.drop-grid.is-grid .product-card {
  display: flex;
  flex-direction: column;
}
.drop-grid.is-grid .product-card__media {
  aspect-ratio: 4/5;
}

.drop-grid.is-editorial {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drop-grid.is-editorial .product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-line);
}
.drop-grid.is-editorial .product-card:nth-child(even) {
  direction: rtl;
}
.drop-grid.is-editorial .product-card:nth-child(even) > * {
  direction: ltr;
}
.drop-grid.is-editorial .product-card__media {
  aspect-ratio: 16/11;
}
.drop-grid.is-editorial .product-card__body {
  padding: 0;
}

.product-card {
  background: var(--bg-card);
}
.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  border-radius: var(--radius);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s var(--ease);
}
.product-card__media-alt {
  opacity: 0;
}
.product-card__media:hover .product-card__media-alt {
  opacity: 1;
}
.product-card__stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.02em;
  z-index: 2;
}
.product-card__body {
  padding: 18px 4px 4px;
}
.product-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9a94;
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--ff-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 14px;
  color: var(--black-soft);
  margin-bottom: 16px;
}
.drop-grid.is-grid .product-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.product-card__price {
  font-family: var(--ff-display);
  font-size: 20px;
}
.product-card__stock {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a7a4a;
}
.product-card__stock.is-out {
  color: #b3413a;
}

.lookbook {
  position: relative;
  background: var(--black);
  color: var(--bg);
  padding: 96px 0 100px;
}
.lookbook__head {
  text-align: center;
  margin-bottom: 44px;
}
.lookbook__head .section-title,
.lookbook__head .eyebrow {
  color: var(--bg);
}
.lookbook__caption {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
  margin-top: 14px;
  color: #8b8b86;
  letter-spacing: 0.02em;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 10px;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.lookbook-item:hover img {
  transform: scale(1.06);
}
.lookbook-item--1 { grid-column: span 2; grid-row: span 3; }
.lookbook-item--2 { grid-column: span 2; grid-row: span 2; }
.lookbook-item--3 { grid-column: span 2; grid-row: span 4; }
.lookbook-item--4 { grid-column: span 3; grid-row: span 2; }
.lookbook-item--5 { grid-column: span 3; grid-row: span 3; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(720px, 90vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--bg);
  border-radius: 50%;
  color: var(--bg);
  font-size: 18px;
}

.cta-block {
  background: var(--black);
  color: var(--bg);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
}
.cta-block p {
  max-width: 46ch;
  margin: 20px auto 34px;
  color: #b9b9b4;
}
.cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-block .btn--outline {
  border-color: var(--bg);
  color: var(--bg);
}
.cta-block .btn--outline:hover {
  background: var(--bg);
  color: var(--black);
}

.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--gray-line);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__links {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--black-soft);
}
.site-footer small {
  font-size: 12px;
  color: #9a9a94;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--bg);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}
.side-panel.is-open {
  transform: translateX(0);
}
.side-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1.5px solid var(--black);
}
.side-panel__head h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  text-transform: uppercase;
}
.side-panel__close {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
}
.side-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
#cartEmpty {
  color: #9a9a94;
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-line);
}
.cart-item__name {
  font-weight: 700;
  font-size: 14px;
}
.cart-item__price {
  font-size: 13px;
  color: var(--black-soft);
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.cart-item__qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.cart-item__remove {
  font-size: 14px;
  color: #b3413a;
}
.side-panel__foot {
  padding: 24px;
  border-top: 1.5px solid var(--black);
}
.side-panel__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-family: var(--ff-display);
  font-size: 20px;
}
.side-panel__note {
  font-size: 12px;
  color: #9a9a94;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__collage {
    max-width: 420px;
    margin: 0 auto;
  }
  .drop-grid.is-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drop-grid.is-editorial .product-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .drop-grid.is-editorial .product-card:nth-child(even) {
    direction: ltr;
  }
  .lookbook-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
  }
}

@media (max-width: 720px) {
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 78vw);
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 100px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 70;
  }
  .primary-nav.is-open {
    transform: translateX(0);
  }
  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-line);
  }
  .nav-toggle {
    display: flex;
  }
  .drop__controls {
    flex-direction: column;
    align-items: stretch;
  }
  .drop__filters {
    justify-content: space-between;
  }
  .search-field input {
    width: 100%;
    max-width: none;
  }
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .lookbook-item--1,
  .lookbook-item--2,
  .lookbook-item--3,
  .lookbook-item--4,
  .lookbook-item--5 {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .drop-grid.is-grid {
    grid-template-columns: 1fr;
  }
  .cta-block {
    padding: 80px 0;
  }
}

