:root {
  --ink: #f7f2ee;
  --muted: #b9afa8;
  --paper: #0b0b0d;
  --surface: #171519;
  --surface-strong: #211d23;
  --line: #342f36;
  --sage: #748a72;
  --denim: #355f82;
  --clay: #f0a8c8;
  --charcoal: #111115;
  --white: #ffffff;
  --dark: #0b0b0d;
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #0b0b0d 0, #111115 38%, #171519 58%, #0b0b0d 100%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(11, 11, 13, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.category-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 0;
  padding: 2px clamp(18px, 4vw, 56px) 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.category-buttons {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-buttons::-webkit-scrollbar {
  display: none;
}

.category-nav button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 22px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.category-nav .active {
  color: var(--dark);
  background: var(--clay);
  border-color: var(--clay);
}

.catalog-search {
  flex: 0 1 360px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.catalog-search:focus-within {
  border-color: rgba(240, 168, 200, 0.72);
  background: var(--surface);
}

.catalog-search svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--clay);
}

.catalog-search svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.catalog-search input::placeholder {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(150px, 17vw, 210px);
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  background: #000;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-greeting {
  max-width: 150px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button,
.product-info button,
.icon-action,
.cart-toggle,
.cart-close,
.checkout-button,
.whatsapp-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.primary,
.cart-toggle,
.checkout-button {
  color: var(--dark);
  background: var(--clay);
  border-color: var(--clay);
}

.cart-toggle span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  color: var(--white);
  background: var(--dark);
  border-radius: 999px;
  font-size: 12px;
}

.icon-action {
  position: relative;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-color: transparent;
}

.icon-action:hover {
  color: var(--clay);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.icon-action svg {
  width: 30px;
  height: 30px;
}

.icon-action svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-toggle span {
  position: absolute;
  right: 2px;
  top: 3px;
  min-width: 20px;
  height: 20px;
  margin-left: 0;
  color: var(--dark);
  background: var(--clay);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 72px);
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  z-index: 1;
  align-self: center;
  width: min(620px, 92vw);
  padding: clamp(28px, 7vw, 76px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
}

.hero-slogan {
  max-width: 560px;
  margin: 18px 0 0;
  color: #ffd6e8;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 94px) 0;
}

main {
  overflow: hidden;
}

.intro,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro h2 {
  max-width: 520px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
}

.intro-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.benefits article {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.benefits strong,
.benefits span {
  display: block;
}

.step-number {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 10px;
  border: 1px solid rgba(240, 168, 200, 0.5);
  border-radius: 999px;
  color: var(--clay);
  background: rgba(240, 168, 200, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.benefits span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.benefits .step-number {
  margin-top: 0;
  color: var(--clay);
}

.catalog-section {
  width: min(1240px, calc(100% - 36px));
  margin-top: clamp(22px, 5vw, 56px);
  padding-top: clamp(60px, 8vw, 96px);
  padding-inline: clamp(0px, 3vw, 28px);
  padding-bottom: clamp(48px, 7vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.4), rgba(33, 29, 35, 0.62));
}

.catalog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: 28px;
}

.catalog-header p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.catalog-summary {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(33, 29, 35, 0.95), rgba(17, 17, 21, 0.95));
}

.catalog-summary span,
.catalog-summary strong {
  display: block;
}

.catalog-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.catalog-summary strong {
  margin-top: 8px;
  color: var(--clay);
  line-height: 1.35;
}

.catalog-groups {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.products-loading .catalog-groups {
  min-height: 520px;
  opacity: 0;
  pointer-events: none;
}

.catalog-groups::-webkit-scrollbar {
  display: none;
}

.catalog-empty {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 800;
}

.product-group {
  flex: 0 0 100%;
  display: grid;
  gap: 18px;
  scroll-snap-align: start;
}

.product-group.is-hidden {
  display: none;
}

.product-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-group-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(33, 29, 35, 0.96), rgba(15, 15, 18, 0.98));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 168, 200, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.product-detail-link {
  display: block;
}

.product-card.is-hidden {
  display: none;
}

.product-media,
.product-photo {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

.product-photo::after,
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.product-media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
  color: var(--white);
}

.product-media strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--white);
  background: rgba(11, 11, 13, 0.58);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-media.blush {
  background: linear-gradient(145deg, #4d253a, #a75f80 58%, #211d23);
}

.product-media.denim {
  background: linear-gradient(145deg, #132131, #3b668b);
}

.product-media.sage {
  background: linear-gradient(145deg, #1f2b24, #748a72 62%, #171519);
}

.product-media.charcoal {
  background: linear-gradient(145deg, #111115, #3b3a3d 58%, #7a7472);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 250px;
  padding: 20px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.product-topline span:last-child {
  color: var(--muted);
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(232, 183, 74, 0.1);
  border: 1px solid rgba(232, 183, 74, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.product-rating strong {
  font-size: 14px;
}

.product-rating small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #e8b74a;
  line-height: 1;
}

.stars span {
  display: inline-block;
}

.stars .half {
  color: rgba(232, 183, 74, 0.22);
  background: linear-gradient(90deg, #e8b74a 50%, rgba(232, 183, 74, 0.22) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-info h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.product-info h3 a:hover {
  color: var(--clay);
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-meta {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(240, 168, 200, 0.35);
  border-radius: 999px;
  color: var(--clay);
  background: rgba(240, 168, 200, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.catalog-swatches {
  display: flex;
  gap: 8px;
}

.catalog-swatches span {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--swatch);
}

.catalog-swatches .light {
  border-color: rgba(240, 168, 200, 0.7);
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-actions strong {
  font-size: 20px;
}

.product-info button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--dark);
  background: var(--ink);
  border-color: var(--ink);
}

.product-info button:hover {
  color: var(--white);
  background: var(--denim);
  border-color: var(--denim);
}

.account-section {
  display: grid;
  gap: 22px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 35;
  width: min(820px, calc(100% - 32px));
  max-height: min(92vh, 980px);
  margin: 0;
  padding: clamp(22px, 4vw, 42px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(11, 11, 13, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
}

.account-section[hidden] {
  display: none;
}

.account-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.account-heading p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.account-save-status {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(116, 138, 114, 0.7);
  border-radius: 999px;
  color: #a9d39f;
  background: rgba(116, 138, 114, 0.12);
  font-weight: 800;
}

.account-heading-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.account-card,
.account-services article,
.account-orders {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.account-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.account-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-card-header h3,
.account-services strong,
.account-orders h3 {
  margin: 0;
  font-size: 20px;
}

.account-card-header p,
.account-services p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.account-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(240, 168, 200, 0.38);
  border-radius: 14px;
  color: var(--clay);
  background: rgba(240, 168, 200, 0.08);
}

.account-icon svg {
  width: 25px;
  height: 25px;
}

.account-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-form {
  max-width: 540px;
  margin: 0 auto;
}

.login-header {
  text-align: center;
}

.login-header h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.login-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.account-form label,
.order-lookup label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.account-form input,
.order-lookup input {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface-strong);
  font: inherit;
}

.account-form input::placeholder,
.order-lookup input::placeholder {
  color: #8e8480;
}

.account-form button,
.order-lookup button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--clay);
  border-radius: 6px;
  color: var(--dark);
  background: var(--clay);
  font-weight: 800;
  cursor: pointer;
}

.account-form .login-submit {
  width: 100%;
  min-height: 56px;
  color: var(--ink);
  background: #12151a;
  border-color: #12151a;
  font-size: 17px;
  text-transform: uppercase;
}

.login-help {
  min-height: auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-weight: 700;
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.social-login {
  display: grid;
  gap: 10px;
}

.social-login button {
  position: relative;
  width: 100%;
  min-height: 54px;
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  font-size: 16px;
}

.provider-icon {
  position: absolute;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.google-icon {
  background: var(--white);
}

.google-icon svg {
  width: 22px;
  height: 22px;
}

.facebook-icon {
  color: var(--white);
  background: #1877f2;
  font-family: Arial, sans-serif;
}

.country-pill {
  justify-self: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--muted);
  background: var(--surface-strong);
  border-color: var(--line);
  border-radius: 999px;
}

.login-terms {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.login-message {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(116, 138, 114, 0.72);
  border-radius: 8px;
  color: #a9d39f;
  background: rgba(116, 138, 114, 0.12);
  text-align: center;
  font-weight: 800;
}

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

.order-status-grid article {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.order-status-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.order-status-grid strong {
  align-self: end;
  color: var(--clay);
  font-size: 28px;
}

.order-lookup {
  display: grid;
  gap: 10px;
}

.order-lookup div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.order-lookup p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.account-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-services article {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.account-orders {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.account-order-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.account-order-item div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-order-item strong {
  color: var(--clay);
}

.account-order-item p,
.empty-orders {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.trust-section {
  display: grid;
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 38px);
  border: 1px solid rgba(240, 168, 200, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(33, 29, 35, 0.84), rgba(11, 11, 13, 0.96)),
    url("hero-dita-streetwear.jpg") center / cover;
}

.trust-heading p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 11, 13, 0.68);
  backdrop-filter: blur(10px);
}

.trust-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.trust-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.review-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.review-top strong {
  color: var(--ink);
  font-size: 18px;
}

.review-top span,
.review-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  color: #ded8d1;
  line-height: 1.6;
}

.product-reviews-detail {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(33, 29, 35, 0.72);
}

.product-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.product-reviews-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.detail-rating {
  margin-top: -4px;
}

.contact p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.social-section {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 38px);
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(11, 11, 13, 0.94), rgba(33, 29, 35, 0.82)),
    url("camiseta-calavera-blanca.jpg") right center / min(560px, 50vw) auto no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-link {
  display: grid;
  gap: 10px;
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 168, 200, 0.52);
  background: var(--surface-strong);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--white);
  background: var(--surface-strong);
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.social-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facebook .social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.instagram .social-icon {
  background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 72%, #4f5bd5);
}

.tiktok .social-icon {
  background: #050505;
  box-shadow: inset 4px 0 0 rgba(37, 244, 238, 0.7), inset -4px 0 0 rgba(254, 44, 85, 0.7);
}

.facebook .social-icon {
  background: #1877f2;
}

.whatsapp .social-icon {
  background: #25d366;
}

.social-name {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
}

.social-link strong {
  align-self: end;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.social-link.whatsapp {
  align-content: center;
}

.social-link.whatsapp {
  border-color: rgba(116, 138, 114, 0.72);
}

.social-link.whatsapp .social-name {
  color: #a9d39f;
}

.cart-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  transform: translateY(120px);
  padding: 14px 18px;
  color: var(--white);
  background: var(--sage);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.cart-toast.show {
  transform: translateY(0);
}

.cart-backdrop,
.account-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.42);
}

.account-backdrop {
  z-index: 34;
  background: rgba(0, 0, 0, 0.62);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100vh;
  padding: 22px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

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

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-header h2 {
  font-size: 34px;
}

.cart-close {
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

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

.cart-item {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item-main,
.cart-item-controls,
.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item h3 {
  margin: 0;
  font-size: 16px;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-controls button,
.remove-item {
  min-width: 32px;
  min-height: 32px;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.remove-item {
  padding: 0 10px;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary span {
  color: var(--muted);
}

.checkout-button {
  width: 100%;
  min-height: 48px;
}

.whatsapp-order-button {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: var(--surface);
}

#cart-whatsapp-order {
  color: var(--dark);
  background: var(--clay);
  border-color: var(--clay);
}

#cart-whatsapp-order:hover {
  background: #ffd0e7;
  border-color: #ffd0e7;
}

.payment-status {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.payment-status strong {
  display: block;
  margin-bottom: 6px;
}

.payment-status p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-detail-shell {
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-detail-visual {
  display: grid;
  gap: 18px;
}

.product-detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-detail-media img,
.product-detail-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.product-detail-media img {
  height: auto;
  object-fit: cover;
}

.product-detail-placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #191c1e, #727371);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
}

.product-detail-info {
  display: grid;
  gap: 18px;
}

.product-detail-info h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.detail-price {
  margin: 0;
  color: var(--clay);
  font-size: 34px;
  font-weight: 800;
}

.detail-description {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.detail-specs div,
.detail-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.detail-specs span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-specs strong {
  font-size: 18px;
}

.size-picker,
.color-picker {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.size-picker span,
.color-picker span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.size-picker div,
.color-picker div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-picker button {
  min-width: 48px;
  min-height: 40px;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.size-picker button.active {
  color: var(--dark);
  background: var(--clay);
  border-color: var(--clay);
}

.color-picker button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.color-picker button.active {
  border-color: var(--clay);
  box-shadow: 0 0 0 2px rgba(240, 168, 200, 0.18);
}

.color-dot {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--swatch);
}

.color-dot.light {
  border-color: rgba(240, 168, 200, 0.7);
}

.size-picker p,
.color-picker p {
  margin: 0;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
}

.detail-block h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.detail-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-actions {
  display: grid;
  gap: 10px;
}

.detail-note {
  margin: 0;
  color: var(--clay);
  font-weight: 800;
}

.detail-empty {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.internal-product-tab {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.internal-product-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.internal-product-header h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
}

.inline-product-detail {
  width: 100%;
  margin: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 150px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.96), rgba(33, 29, 35, 0.9)),
    url("hero-dita-streetwear.jpg") center / cover;
}

.footer-logo {
  width: 150px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
  background: #000;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .intro,
  .catalog-header,
  .account-layout,
  .section-heading,
  .contact,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .social-section {
    background:
      linear-gradient(120deg, rgba(11, 11, 13, 0.96), rgba(33, 29, 35, 0.88)),
      url("camiseta-calavera-blanca.jpg") right bottom / 440px auto no-repeat;
  }

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

@media (max-width: 560px) {
  .topbar {
    min-height: 72px;
    gap: 10px;
    padding: 10px 16px;
  }

  .category-nav {
    flex-wrap: wrap;
    top: 72px;
    min-height: 106px;
    margin-bottom: 0;
    padding: 8px 16px 10px;
    background: linear-gradient(180deg, rgba(11, 11, 13, 0.86), rgba(11, 11, 13, 0.2));
    backdrop-filter: blur(10px);
  }

  .category-buttons {
    width: 100%;
    gap: 8px;
  }

  .category-nav button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }

  .catalog-search {
    flex: 1 1 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    background: rgba(11, 11, 13, 0.54);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  }

  .catalog-search input {
    font-size: 15px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 128px;
    height: 46px;
  }

  .header-actions {
    gap: 4px;
  }

  .icon-action {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .icon-action svg {
    width: 27px;
    height: 27px;
  }

  .cart-toggle span {
    right: -1px;
    top: 0;
    min-width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .hero,
  .hero-image {
    min-height: min(760px, 100svh);
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.12));
  }

  .hero-content {
    align-self: end;
    width: 100%;
    padding: 220px 16px 34px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.54);
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(58px, 18vw, 72px);
    line-height: 0.92;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-slogan {
    max-width: 340px;
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.22;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 0 12px;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
  }

  .catalog-section {
    width: min(100% - 24px, 1240px);
    margin-top: 18px;
    padding: 34px 14px 44px;
    border-radius: 8px;
  }

  .catalog-header {
    gap: 16px;
    margin-bottom: 18px;
  }

  .catalog-header h2 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1;
  }

  .catalog-header p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .benefits,
  .account-services,
  .trust-grid,
  .detail-reviews-grid,
  .product-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .trust-section,
  .social-section {
    width: min(100% - 24px, 1240px);
    padding-inline: 18px;
  }

  .product-reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .order-lookup div {
    grid-template-columns: 1fr;
  }

  .account-order-item div {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-summary {
    padding: 14px;
    border-radius: 8px;
  }

  .product-group-heading {
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0 12px;
  }

  .product-group-heading h3 {
    font-size: 28px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-photo,
  .product-media {
    aspect-ratio: 1 / 0.92;
  }

  .product-info {
    min-height: auto;
    gap: 10px;
    padding: 16px;
  }

  .product-topline {
    font-size: 11px;
  }

  .product-rating {
    padding: 6px 9px;
    font-size: 12px;
  }

  .product-info h3 {
    font-size: 20px;
  }

  .product-meta {
    width: 100%;
    border-radius: 8px;
  }

  .product-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-actions button {
    flex: 1 1 150px;
    min-height: 44px;
  }

  .product-info p {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
