:root {
  --bg-dark: #181818;
  --bg-light: #f7f5f0;
  --bg-soft: #efede7;
  --card-dark: #1f1f1f;
  --text-dark: #151515;
  --text-light: #f5f3ee;
  --muted-dark: #4e4c49;
  --muted-light: rgba(255, 255, 255, 0.84);
  --line-dark: rgba(20, 20, 20, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #11b9d8;
  --whatsapp: #4ca85f;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow-soft: 0 18px 42px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: "Manrope", sans-serif;
}

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

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

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-inner,
.hero-inner,
.page-inner {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.hero,
.page-hero,
.page-header {
  background: var(--bg-dark);
  color: var(--text-light);
}

.hero-topbar,
.page-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 0 18px;
}

.brand,
.site-nav a,
.button,
h1,
h2,
h3,
.contact-label,
.eyebrow {
  font-family: "League Spartan", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(2.1rem, 2.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-white {
  color: var(--text-light);
}

.brand-accent {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: var(--text-light);
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a,
.hero-social a {
  color: rgba(255, 255, 255, 0.94);
}

.site-nav a {
  font-size: 1.15rem;
  font-weight: 500;
}

.site-nav a.is-active {
  color: var(--accent);
}

.hero-actions-top,
.page-actions-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-outline {
  align-self: flex-start;
  border: 1.5px solid var(--line-light);
  background: transparent;
  color: var(--text-light);
}

.button-solid {
  align-self: flex-start;
  background: var(--accent);
  color: #041116;
  box-shadow: 0 16px 34px rgba(17, 185, 216, 0.24);
}

.button-login {
  min-height: 48px;
  padding: 0 20px;
  border: 1.5px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.button-search {
  min-height: 48px;
  padding: 0 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.button-cart {
  min-height: 48px;
  padding: 0 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  gap: 10px;
}

.button-cart.is-active {
  background: rgba(255, 255, 255, 0.14);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #061217;
  font-size: 0.92rem;
  font-weight: 800;
}

.button-light {
  min-width: 230px;
  border: 1.5px solid rgba(16, 16, 16, 0.72);
  background: transparent;
  color: var(--text-dark);
}

.button-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.button-whatsapp {
  margin-top: 24px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 28px rgba(76, 168, 95, 0.24);
}

.hero {
  border-bottom: 1px solid var(--line-light);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(320px, 0.88fr);
  gap: 32px;
  align-items: stretch;
  padding: 10px 0 44px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  padding: 20px 0 22px;
}

.hero-eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 7ch;
  font-size: clamp(5rem, 9vw, 8.8rem);
}

.hero-copy > p:not(.hero-eyebrow) {
  max-width: 560px;
  margin: 30px 0 30px;
  color: var(--muted-light);
  font-size: clamp(1.18rem, 2vw, 1.34rem);
  line-height: 1.38;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta-group .button {
  min-height: 58px;
  min-width: 220px;
  padding: 0 26px;
  border-radius: 14px;
}

.featured-index,
.benefit-number {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "League Spartan", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-gallery {
  display: grid;
  align-content: center;
  min-height: 640px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-mobile-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mobile-preview img {
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42));
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1215 / 2160;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42));
}

.phone-screen {
  position: absolute;
  inset: 15.3% 22.4% 14.9% 22.4%;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 28%),
    #151515;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 3;
}

.phone-frame-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 18px 18px 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
}

.phone-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px 0;
  gap: 12px;
}

.phone-brand-mini,
.phone-logo,
.phone-label,
.phone-title,
.phone-cta,
.phone-contact-title,
.phone-contact-grid span,
.phone-contact-grid strong {
  font-family: "League Spartan", sans-serif;
}

.phone-brand-mini {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.phone-logo {
  display: inline-flex;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.phone-hero-card {
  margin: 16px 14px 0;
  min-height: 286px;
  padding: 20px 18px 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(17, 185, 216, 0.1), transparent 30%),
    #111111;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.phone-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-title {
  margin: 16px 0 0;
  color: #f2efe8;
  font-size: clamp(2.2rem, 6vw, 3.3rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.phone-copy {
  max-width: 200px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  line-height: 1.35;
}

.phone-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.phone-cta {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1;
}

.phone-product-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  transform: rotate(8deg);
}

.phone-product-demo .garment {
  margin: 0 auto;
}

.phone-product-demo .garment-tee {
  width: 70%;
  height: 84%;
}

.phone-contact-card {
  margin: 14px;
  padding: 18px 16px;
  border-radius: 28px;
  background: #f7f5f0;
  color: var(--text-dark);
}

.phone-contact-title {
  margin: 0;
  max-width: 10ch;
  font-size: 1.8rem;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.phone-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.phone-contact-grid span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  letter-spacing: -0.02em;
}

.phone-contact-grid strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.15;
}

.contact-panel,
.cta-panel,
.featured-panel,
.benefits-panel,
.page-section,
.login-panel {
  background: var(--bg-light);
}

.featured-panel {
  padding: 38px 0 28px;
}

.benefits-panel {
  padding: 28px 0 24px;
}

.contact-panel {
  padding: 24px 0 38px;
}

.contact-intro h2,
.cta-panel h2 {
  color: var(--text-dark);
  font-size: clamp(3.3rem, 6vw, 4.9rem);
}

.contact-intro h2 {
  max-width: 8ch;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.contact-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-actions .button-whatsapp {
  margin-top: 0;
}

.contact-card {
  padding: 8px 0;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.contact-card p,
.page-copy p,
.product-card p,
.info-card p,
.login-panel p {
  margin: 0 0 8px;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.45;
}

.cta-panel {
  border-top: 1px solid var(--line-dark);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 0 36px;
  text-align: center;
}

.cta-panel h2 {
  max-width: 11ch;
}

.cta-inner > p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--text-dark);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.page-header {
  border-bottom: 1px solid var(--line-light);
}

.page-hero {
  padding: 44px 0 56px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 32px;
  align-items: center;
}

.page-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 7vw, 6rem);
}

.page-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted-light);
  font-size: 1.14rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-art,
.page-art-small {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.page-art img,
.page-art-small img {
  height: 100%;
  object-fit: cover;
}

.page-art {
  min-height: 320px;
}

.page-section {
  padding: 40px 0 64px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head-wide p {
  max-width: 780px;
}

.section-head-wide h2 {
  max-width: 16ch;
  font-size: clamp(5rem, 9vw, 8.8rem);
}

.section-head h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.section-head > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.featured-card {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.featured-card-large {
  min-height: 560px;
  grid-row: span 2;
}

.featured-card-media {
  position: relative;
  min-height: 250px;
}

.featured-card-large .featured-card-media {
  min-height: 560px;
}

.featured-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.74) 100%);
}

.featured-card-media img {
  height: 100%;
  object-fit: cover;
}

.featured-card-body {
  position: relative;
  margin-top: -140px;
  padding: 0 24px 24px;
  z-index: 1;
}

.featured-card-large .featured-card-body {
  margin-top: -180px;
}

.featured-card h3,
.benefit-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.featured-card p {
  max-width: 28ch;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.featured-link {
  color: #fff;
  font-family: "League Spartan", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.benefit-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(17, 185, 216, 0.1), transparent 34%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.benefit-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-media {
  height: 260px;
  background: var(--bg-soft);
}

.product-media img {
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 22px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.login-wrap {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-dark), #101010);
}

.login-panel {
  width: min(100% - 64px, 720px);
  margin: 48px auto 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.login-panel h1 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 4.8rem);
  color: var(--text-dark);
}

.login-panel p {
  max-width: 520px;
  margin: 18px auto 0;
}

.auth-panel-shell {
  width: min(100% - 64px, 1180px);
  padding: 42px;
  text-align: left;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.05fr);
  gap: 32px;
  align-items: stretch;
}

.auth-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.auth-intro h1 {
  max-width: 8ch;
}

.auth-intro > p:not(.eyebrow) {
  max-width: 44ch;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

.auth-benefits {
  display: grid;
  gap: 14px;
}

.auth-benefit,
.auth-user-item {
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--bg-soft);
}

.auth-benefit span,
.auth-user-item span,
.auth-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-dark);
  font-family: "League Spartan", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-benefit strong,
.auth-user-item strong {
  display: block;
  color: var(--text-dark);
  font-family: "League Spartan", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.auth-card {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.auth-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-bottom: 22px;
}

.auth-switch-button {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-family: "League Spartan", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.auth-switch-button.is-active {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-light);
}

.auth-form,
.auth-user-view {
  display: grid;
  gap: 16px;
}

.auth-form.is-hidden {
  display: none;
}

.auth-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
}

.auth-field input:focus {
  outline: 2px solid rgba(17, 185, 216, 0.24);
  outline-offset: 2px;
}

.auth-feedback {
  min-height: 24px;
  margin: -2px 0 0;
  color: #8f3636;
  font-size: 0.96rem;
  line-height: 1.4;
}

.auth-feedback.is-success {
  color: #2f7a40;
}

.auth-text-action {
  justify-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.auth-inline-title {
  margin: 0;
  color: var(--text-dark);
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-reset-link {
  color: var(--accent);
  font-family: "League Spartan", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.auth-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.auth-user-view h2 {
  color: var(--text-dark);
  font-size: clamp(3rem, 5vw, 4.2rem);
}

.auth-user-copy {
  max-width: 46ch;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.6;
}

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

.admin-section {
  padding: 42px 0 70px;
}

.admin-title {
  max-width: 10ch;
  color: var(--text-dark);
  font-size: clamp(4rem, 7vw, 6.8rem);
}

.admin-gate,
.admin-panel-card {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.admin-gate h2,
.admin-panel-head h2 {
  color: var(--text-dark);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
}

.admin-gate p,
.admin-panel-head p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-stats-grid,
.admin-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-stat-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.admin-stat-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.95;
}

.admin-panel-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
}

.admin-table th {
  color: var(--muted-dark);
  font-family: "League Spartan", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--text-dark);
}

.login-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.catalog-page {
  min-height: 100vh;
  background: #171717;
}

.catalog-header {
  border-bottom: 0;
}

.catalog-showcase {
  padding: 18px 0 56px;
  background: #171717;
  color: var(--text-light);
}

.catalog-head {
  margin-bottom: 34px;
}

.category-menu-head {
  max-width: 900px;
}

.catalog-head h1 {
  max-width: none;
  font-size: clamp(4.8rem, 8.8vw, 9rem);
  line-height: 0.88;
}

.category-menu-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.5;
}

.category-search {
  margin: 26px 0 30px;
}

.category-search-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-search-row {
  display: flex;
  gap: 12px;
}

.category-search-input {
  flex: 1;
  min-height: 58px;
  padding: 0 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  font: inherit;
}

.category-search-input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.button-search-submit {
  min-height: 58px;
  background: #fff;
  color: #111;
}

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

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

.category-link-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  padding: 26px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: #171717;
  color: var(--text-light);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.category-link-card:hover,
.category-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: #1d1d1d;
}

.category-link-number {
  color: var(--accent);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-link-card h2 {
  color: var(--text-light);
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  line-height: 0.95;
}

.category-link-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.category-link-card.is-hidden {
  display: none;
}

.category-banner {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 28px;
  background: #111;
}

.category-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-banner-buzos img {
  object-position: center 22%;
}

.category-banner-remeras img {
  object-position: center 38%;
}

.category-banner-camperas img {
  object-position: center 34%;
}

.category-banner-shorts img {
  object-position: center 58%;
}

.category-banner-zapatillas img {
  object-position: center 48%;
}

.category-banner-pantalones img {
  object-position: center 32%;
}

.catalog-card {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: #171717;
}

.catalog-media {
  height: 460px;
  padding: 20px 20px 0;
  background: #171717;
}

.catalog-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 28px 32px;
}

.catalog-kind,
.catalog-price,
.catalog-description,
.catalog-meta {
  margin: 0;
}

.catalog-kind,
.catalog-cart-link,
.product-badge {
  font-family: "League Spartan", sans-serif;
}

.catalog-kind {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-body h2 {
  color: var(--text-light);
  font-size: clamp(2rem, 2.2vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.catalog-price {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.catalog-description {
  min-height: 58px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.button-catalog {
  margin-top: 8px;
  min-height: 54px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: #111;
}

.button-add-cart {
  min-height: 54px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
}

.catalog-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.catalog-footer {
  padding-top: 26px;
}

.catalog-cart-link {
  color: var(--text-light);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cart-page {
  min-height: 100vh;
  background: var(--bg-light);
}

.cart-section {
  padding: 42px 0 64px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: flex-start;
}

.cart-title {
  max-width: none;
  color: var(--text-dark);
  font-size: clamp(3.4rem, 6vw, 5.2rem);
}

.cart-items {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.cart-item,
.cart-summary {
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 24px;
}

.cart-item h3,
.cart-item p,
.cart-item strong,
.payment-label,
.payment-value,
.cart-note,
.cart-empty p {
  margin: 0;
}

.cart-item h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.cart-item p {
  color: var(--muted-dark);
  line-height: 1.45;
}

.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cart-item-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-size: 0.95rem;
}

.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: #8a3e3e;
  font: inherit;
  cursor: pointer;
}

.cart-summary {
  padding: 28px;
}

.cart-summary h2 {
  max-width: 10ch;
  color: var(--text-dark);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.payment-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 22px;
  background: var(--bg-soft);
}

.shipping-box {
  margin-top: 20px;
}

.shipping-options {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
}

.shipping-option input {
  margin: 0;
}

.shipping-option span,
.shipping-option strong {
  color: var(--text-dark);
}

.payment-label {
  color: var(--muted-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.payment-value {
  margin: 6px 0 16px;
  color: var(--text-dark);
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.cart-totals {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.cart-summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.cart-note {
  margin-top: 16px;
  color: var(--muted-dark);
  line-height: 1.5;
}

.cart-empty {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border: 1px dashed var(--line-dark);
  border-radius: 24px;
  background: #fff;
}

.cart-empty.is-visible {
  display: grid;
  gap: 16px;
}

.product-demo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 35%),
    #141414;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.garment {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 -10px 24px rgba(0, 0, 0, 0.06);
}

.garment::before,
.garment::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #efefef 100%);
}

.garment-print {
  position: absolute;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #bfe0ff 0%, #c7e4ff 60%, #d6edff 100%);
  overflow: hidden;
}

.garment-print::before,
.garment-print::after,
.garment-print span {
  content: "";
  position: absolute;
  display: block;
}

.garment-print::before {
  top: 18%;
  width: 34%;
  height: 16%;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    -26px 6px 0 -6px #ffffff,
    26px 7px 0 -7px #ffffff;
}

.garment-print::after {
  bottom: 10%;
  left: -6%;
  width: 70%;
  height: 20%;
  border-radius: 50%;
  background: #b0c95b;
}

.garment-print span {
  right: -8%;
  bottom: 8%;
  width: 74%;
  height: 24%;
  border-radius: 50%;
  background: #95b20f;
}

.garment-tee {
  width: 58%;
  height: 70%;
  border-radius: 20px 20px 18px 18px;
}

.garment-tee::before,
.garment-tee::after {
  top: 12%;
  width: 28%;
  height: 26%;
  border-radius: 18px;
}

.garment-tee::before {
  left: -18%;
  transform: rotate(36deg);
}

.garment-tee::after {
  right: -18%;
  transform: rotate(-36deg);
}

.garment-hoodie {
  width: 62%;
  height: 72%;
  border-radius: 24px 24px 18px 18px;
}

.garment-hoodie::before,
.garment-hoodie::after {
  top: 30%;
  width: 22%;
  height: 34%;
  border-radius: 18px;
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.05);
}

.garment-hoodie::before {
  left: -12%;
  transform: rotate(12deg);
}

.garment-hoodie::after {
  right: -12%;
  transform: rotate(-12deg);
}

.garment-hoodie .garment-print {
  top: 38%;
  left: 26%;
  width: 48%;
  height: 28%;
  border-radius: 10px;
}

.garment-hoodie .garment-print::before {
  top: 16%;
}

.garment-sweatshirt {
  width: 64%;
  height: 70%;
  border-radius: 18px 18px 20px 20px;
}

.garment-sweatshirt::before,
.garment-sweatshirt::after {
  top: 22%;
  width: 22%;
  height: 42%;
  border-radius: 18px;
}

.garment-sweatshirt::before {
  left: -13%;
  transform: rotate(14deg);
}

.garment-sweatshirt::after {
  right: -13%;
  transform: rotate(-14deg);
}

.garment-tee .garment-print,
.garment-sweatshirt .garment-print {
  top: 24%;
  left: 24%;
  width: 52%;
  height: 38%;
  border-radius: 8px;
}

.garment-jacket {
  width: 62%;
  height: 74%;
  border-radius: 20px 20px 16px 16px;
}

.garment-jacket::before,
.garment-jacket::after {
  top: 26%;
  width: 20%;
  height: 42%;
  border-radius: 18px;
}

.garment-jacket::before {
  left: -11%;
  transform: rotate(12deg);
}

.garment-jacket::after {
  right: -11%;
  transform: rotate(-12deg);
}

.garment-jacket .garment-print {
  top: 30%;
  left: 28%;
  width: 44%;
  height: 24%;
  border-radius: 10px;
}

.garment-shoe {
  width: 64%;
  height: 38%;
  border-radius: 28px 28px 18px 18px;
}

.garment-shoe::before {
  top: 24%;
  left: 58%;
  width: 18%;
  height: 26%;
  border-radius: 50%;
}

.garment-shoe::after {
  display: none;
}

.garment-shoe .garment-print {
  top: 22%;
  left: 18%;
  width: 42%;
  height: 36%;
  border-radius: 10px;
}

.garment-shorts {
  width: 54%;
  height: 48%;
  border-radius: 18px 18px 20px 20px;
}

.garment-shorts::before,
.garment-shorts::after {
  top: 58%;
  width: 26%;
  height: 34%;
  border-radius: 0 0 14px 14px;
}

.garment-shorts::before {
  left: 14%;
}

.garment-shorts::after {
  right: 14%;
}

.garment-shorts .garment-print {
  top: 16%;
  left: 22%;
  width: 56%;
  height: 26%;
  border-radius: 10px;
}

.garment-pants {
  width: 46%;
  height: 72%;
  border-radius: 16px 16px 12px 12px;
}

.garment-pants::before,
.garment-pants::after {
  top: 48%;
  width: 32%;
  height: 48%;
  border-radius: 0 0 16px 16px;
}

.garment-pants::before {
  left: 10%;
}

.garment-pants::after {
  right: 10%;
}

.garment-pants .garment-print {
  top: 16%;
  left: 20%;
  width: 60%;
  height: 16%;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .hero-layout,
  .page-grid,
  .contact-grid,
  .cart-layout,
  .products-grid,
  .catalog-grid,
  .category-list-grid,
  .info-grid,
  .featured-grid,
  .benefits-grid,
  .auth-layout,
  .auth-user-grid,
  .admin-stats-grid,
  .admin-system-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-gallery {
    min-height: auto;
  }

  .hero-gallery {
    padding-left: 0;
    border-left: 0;
  }

  .featured-card-large {
    grid-row: auto;
  }

  .featured-card-body,
  .featured-card-large .featured-card-body {
    margin-top: -120px;
  }
}

@media (max-width: 760px) {
  .section-inner,
  .hero-inner,
  .page-inner,
  .login-panel {
    width: min(100% - 36px, 1180px);
  }

  .hero-topbar,
  .page-topbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line-light);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-actions-top,
  .page-actions-top {
    grid-column: 1 / -1;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-cta-group,
  .contact-actions,
  .cta-actions {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3.8rem, 16vw, 6rem);
  }

  .contact-intro h2,
  .cta-panel h2,
  .section-head h2,
  .page-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .hero-copy {
    padding-top: 8px;
  }

  .phone-frame {
    width: min(100%, 340px);
  }

  .phone-hero-card {
    min-height: 350px;
  }

  .phone-title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .phone-contact-title {
    font-size: 2.4rem;
  }

  .phone-contact-grid {
    grid-template-columns: 1fr;
  }

  .catalog-media {
    height: 360px;
  }

  .category-search-row {
    flex-direction: column;
  }

  .featured-card-media,
  .featured-card-large .featured-card-media {
    min-height: 280px;
  }

  .featured-card-body,
  .featured-card-large .featured-card-body {
    margin-top: -110px;
    padding: 0 20px 20px;
  }

  .auth-panel-shell {
    padding: 28px 22px;
  }

  .auth-form-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .button,
  .button-light,
  .button-whatsapp,
  .button-dark,
  .button-outline,
  .button-cart,
  .button-add-cart {
    width: 100%;
  }

  .product-actions,
  .login-actions {
    flex-direction: column;
  }

  .login-panel {
    padding: 28px 22px;
  }
}
