/* ══════════════════════════════════════════════════
   SERIGRAFÍA.PY — Main Stylesheet
   Aesthetic: Industrial Bold / Ink & Press
   Fonts: Barlow Condensed (display) + Nunito (body)
   ══════════════════════════════════════════════════ */

:root {
  --ink:        #0d0d0d;
  --ink-soft:   #1a1a1a;
  --ink-mid:    #2e2e2e;
  --accent:     #e8320a;       /* screen-print red */
  --accent-d:   #c22800;
  --accent-y:   #f5a623;       /* warm yellow highlight */
  --surface:    #f7f5f2;       /* paper/canvas feel */
  --surface-d:  #ede9e3;
  --white:      #ffffff;
  --text-body:  #3a3a3a;
  --text-muted: #7a7a7a;
  --border:     #d4cfc8;
  --shadow-sm:  0 2px 8px rgba(13,13,13,.08);
  --shadow-md:  0 6px 24px rgba(13,13,13,.12);
  --shadow-lg:  0 16px 48px rgba(13,13,13,.18);
  --radius:     6px;
  --radius-lg:  12px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --transition:   all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.1;
}

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

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-d); }

/* ── Topbar ── */
.topbar {
  background: var(--ink);
  color: #aaa;
  font-size: .78rem;
  padding: 6px 0;
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar a { color: #ccc; text-decoration: none; }
.topbar a:hover { color: var(--accent); }

/* ── Navbar ── */
.main-navbar {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.main-navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  text-decoration: none;
}
.brand-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: .06em;
  color: var(--ink);
  line-height: 1;
}
.brand-dot { color: var(--accent); }

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-mid) !important;
  padding: 22px 10px !important;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
  border-bottom-color: var(--accent);
}

/* ── Buttons ── */
.btn-presupuesto {
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-presupuesto:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,50,10,.35);
}
.btn-primary-custom {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--ink);
}

/* ── Hero ── */
.hero {
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.02) 30px,
      rgba(255,255,255,.02) 31px
    );
  z-index: 0;
}
.hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--accent);
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,50,10,.15);
  border: 1px solid rgba(232,50,10,.4);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInDown .6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: .95;
  margin-bottom: 24px;
  animation: fadeInDown .7s ease .1s both;
}
.hero h1 span { color: var(--accent); display: block; }
.hero-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeInDown .7s ease .2s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInDown .7s ease .3s both;
}
.btn-hero-main {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.btn-hero-main:hover {
  background: var(--accent-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,50,10,.4);
}
.btn-hero-ghost {
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .8s ease .4s both;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .82rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero image side */
.hero-img-side {
  position: relative;
  animation: fadeInRight .9s ease .2s both;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,50,10,.2), transparent);
}
.hero-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
}

/* ── Section styles ── */
.section { padding: 90px 0; }
.section-alt { background: var(--surface-d); }
.section-dark { background: var(--ink); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.section-label::after {
  content: '';
  flex: 0 0 40px; height: 2px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── Service cards ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: rgba(232,50,10,.1);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { font-size: .93rem; color: var(--text-muted); margin: 0; }

/* ── Features strip ── */
.features-strip {
  background: var(--ink);
  padding: 28px 0;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  color: #ccc;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.feature-item i { color: var(--accent); font-size: 1.3rem; flex-shrink: 0; }

/* ── How it works ── */
.step-card {
  text-align: center;
  padding: 32px 20px;
}
.step-number {
  width: 64px; height: 64px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 32px; left: 100%;
  width: calc(100% - 64px);
  height: 2px;
  background: var(--border);
}

/* ── Shirt types ── */
.shirt-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.shirt-card:hover, .shirt-card.selected {
  border-color: var(--accent);
  background: rgba(232,50,10,.04);
  transform: translateY(-4px);
}
.shirt-icon { font-size: 3rem; margin-bottom: 14px; }
.shirt-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.shirt-price-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ── Testimonials ── */
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.testimonial-stars { color: var(--accent-y); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { color: #ddd; font-size: .95rem; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { color: #fff; font-weight: 600; font-size: .9rem; }
.testimonial-role { color: #888; font-size: .8rem; }

/* ── Presupuesto Form ── */
.presupuesto-hero {
  background: var(--ink);
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}
.presupuesto-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,.02) 30px, rgba(255,255,255,.02) 31px);
}
.presupuesto-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; }
.presupuesto-hero p { color: #aaa; }

/* Multi-step form */
.form-steps-nav {
  display: flex; gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.step-nav-item {
  flex: 1;
  padding: 16px 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.step-nav-item:last-child { border-right: none; }
.step-nav-item.active {
  background: var(--accent);
  color: #fff;
}
.step-nav-item.completed {
  background: rgba(232,50,10,.08);
  color: var(--accent);
}
.step-nav-item.completed::after {
  content: '✓';
  position: absolute;
  top: 4px; right: 6px;
  font-size: .7rem;
}
.step-num-badge {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  color: inherit;
  font-size: .75rem;
  line-height: 22px;
  margin-bottom: 4px;
}
.step-nav-item.active .step-num-badge { background: rgba(255,255,255,.3); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp .35s ease; }

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.form-section-title i { color: var(--accent); }

.form-label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-mid);
  margin-bottom: 6px;
  display: block;
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: .93rem;
  transition: var(--transition);
  background: var(--surface);
  color: var(--ink);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,50,10,.12);
  background: #fff;
  outline: none;
}

/* Option cards (radio as visual cards) */
.option-cards { display: flex; gap: 12px; flex-wrap: wrap; }
.option-card {
  flex: 1; min-width: 120px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.option-card:hover { border-color: var(--accent); background: rgba(232,50,10,.03); }
.option-card.selected {
  border-color: var(--accent);
  background: rgba(232,50,10,.07);
  box-shadow: 0 0 0 3px rgba(232,50,10,.12);
}
.option-card i { font-size: 1.6rem; color: var(--accent); margin-bottom: 8px; display: block; }
.option-card .opt-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.option-card .opt-desc { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.option-card input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }

/* Shirt type cards */
.shirt-type-options { display: flex; gap: 12px; flex-wrap: wrap; }
.shirt-type-card {
  flex: 1; min-width: 130px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.shirt-type-card:hover { border-color: var(--accent); }
.shirt-type-card.selected {
  border-color: var(--accent);
  background: rgba(232,50,10,.06);
}
.shirt-type-card .st-emoji { font-size: 2rem; margin-bottom: 8px; display: block; }
.shirt-type-card .st-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: block; margin-bottom: 4px;
}
.shirt-type-card .st-desc { font-size: .77rem; color: var(--text-muted); }
.shirt-type-card input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }

/* Color dots selector */
.color-count-btn {
  width: 44px; height: 44px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center;
}
.color-count-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

/* Quantity input */
.qty-stepper {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--surface-d);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--accent); color: #fff; }
.qty-input {
  width: 80px; height: 44px;
  border: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: #fff;
}

/* Progress bar */
.form-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.form-progress-bar {
  height: 100%;
  background: var(--accent);
  transition: width .4s ease;
  border-radius: 2px;
}

/* Form navigation */
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.btn-next, .btn-prev {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem;
}
.btn-next { background: var(--accent); color: #fff; }
.btn-next:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn-prev { background: var(--surface-d); color: var(--ink); }
.btn-prev:hover { background: var(--border); }
.btn-submit {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1rem;
}
.btn-submit:hover { background: var(--accent); transform: translateY(-1px); }

/* Summary sidebar */
.summary-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky; top: 90px;
}
.summary-card h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 10px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .85rem;
}
.summary-row:last-child { border: none; }
.summary-key { color: #888; flex-shrink: 0; }
.summary-val { color: #fff; text-align: right; font-weight: 600; }

/* ── Success / Vendedoras ── */
.success-hero {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
}
.success-icon {
  width: 90px; height: 90px;
  background: rgba(232,50,10,.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--accent);
  margin: 0 auto 24px;
  animation: popIn .5s ease both;
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Vendedora cards */
.vendedora-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.vendedora-card:hover {
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,.2);
  transform: translateY(-4px);
}
.vendedora-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-d));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.vendedora-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.vendedora-role { font-size: .82rem; color: var(--text-muted); margin-bottom: 18px; }
.btn-wa {
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  width: 100%; justify-content: center;
  border: none;
}
.btn-wa:hover { background: #1da853; color: #fff; transform: translateY(-1px); }

/* ── Admin ── */
.admin-sidebar {
  background: var(--ink);
  min-height: 100vh;
  width: 240px;
  flex-shrink: 0;
  padding: 0;
  display: flex; flex-direction: column;
}
.admin-logo {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
}
.admin-logo span { color: var(--accent); }
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  color: #888;
  font-size: .88rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.admin-nav a.active { border-left: 3px solid var(--accent); }
.admin-nav a i { width: 18px; text-align: center; }

.admin-main { flex: 1; min-height: 100vh; background: var(--surface); }
.admin-topbar {
  background: var(--white);
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-page-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 0; }
.admin-content { padding: 28px; }

.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; align-items: center; gap: 18px;
}
.admin-stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.admin-stat-icon.red { background: rgba(232,50,10,.1); color: var(--accent); }
.admin-stat-icon.green { background: rgba(16,185,129,.1); color: #10b981; }
.admin-stat-icon.blue { background: rgba(59,130,246,.1); color: #3b82f6; }
.admin-stat-icon.yellow { background: rgba(245,166,35,.1); color: var(--accent-y); }
.admin-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.admin-stat-label { font-size: .82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

/* Tables */
.table-modern { width: 100%; border-collapse: separate; border-spacing: 0; }
.table-modern thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 16px;
}
.table-modern thead th:first-child { border-radius: var(--radius) 0 0 0; }
.table-modern thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.table-modern tbody tr {
  background: var(--white);
  transition: background .15s;
}
.table-modern tbody tr:hover { background: rgba(232,50,10,.04); }
.table-modern tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  vertical-align: middle;
}

/* Status badges */
.badge-estado {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-nuevo { background: rgba(59,130,246,.15); color: #3b82f6; }
.badge-proceso { background: rgba(245,166,35,.15); color: #d97706; }
.badge-completado { background: rgba(16,185,129,.15); color: #059669; }
.badge-cancelado { background: rgba(232,50,10,.15); color: var(--accent); }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-d);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.8), transparent);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── FAQ ── */
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--ink);
  background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(232,50,10,.04);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

/* ── Contact ── */
.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  height: auto;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info-item:last-child { border: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(232,50,10,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--accent);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,.04) 20px, rgba(0,0,0,.04) 21px);
}
.cta-banner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; }

/* ── Footer ── */
.site-footer { background: var(--ink-soft); }
.footer-top { padding: 70px 0 50px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .06em;
}
.footer-about { color: #888; font-size: .9rem; max-width: 320px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #888; font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  color: #888; font-size: .88rem;
  margin-bottom: 10px;
}
.footer-contact li i { color: var(--accent); margin-top: 2px; width: 16px; }
.footer-contact a { color: #888; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #888;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  background: var(--ink);
  padding: 16px 0;
  color: #666;
  font-size: .82rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255,255,255,.02) 30px, rgba(255,255,255,.02) 31px);
}
.page-hero h1 { color: #fff; position: relative; z-index: 1; }
.page-hero .breadcrumb { position: relative; z-index: 1; }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: #888; }
.breadcrumb-item + .breadcrumb-item::before { color: #555; }

/* ── Animations ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Utilities ── */
.text-ink { color: var(--ink) !important; }
.bg-accent { background: var(--accent) !important; }
.divider-accent {
  width: 60px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 0; }
  .hero-img-side { display: none; }
  .hero-stats { gap: 24px; }
  .form-steps-nav { flex-wrap: wrap; }
  .step-nav-item { flex: 0 0 50%; }
  .form-card { padding: 24px 18px; }
  .admin-sidebar { display: none; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .option-cards { flex-direction: column; }
  .shirt-type-options { flex-wrap: wrap; }
  .shirt-type-card { min-width: calc(50% - 6px); }
}

/* ── Client account / Mi Cuenta ─────────────────────────────── */
.client-hero {
  background: var(--ink);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.client-avatar-lg {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  object-fit: cover;
}
.pedido-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition);
}
.pedido-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ── Google OAuth button ─────────────────────────────────────── */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  color: #3c4043;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  width: 100%;
}
.btn-google:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  color: #3c4043;
  border-color: #aaa;
}

/* ── Admin CMS tiles ─────────────────────────────────────────── */
.cms-tile {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}
.cms-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cms-tile-icon {
  width: 48px; height: 48px;
  background: rgba(232,50,10,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: var(--accent);
}

/* ── Admin ajustes tabs ──────────────────────────────────────── */
.settings-tab-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-body);
  transition: var(--transition);
  font-size: .9rem;
}
.settings-tab-link:hover { background: rgba(232,50,10,.04); color: var(--accent); }
.settings-tab-link.active { background: rgba(232,50,10,.07); color: var(--accent); font-weight: 700; border-left: 3px solid var(--accent); }
.settings-tab-link:last-child { border-bottom: none; }

/* ── Trust badges & Security indicators ─────────────────────── */
.trust-badge {
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}
.trust-badge-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #059669;
  font-weight: 600;
}
.trust-item i {
  font-size: .95rem;
  color: #10b981;
}

/* Hero trust strip */
.trust-strip {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: .82rem;
}
.trust-strip-item i { color: var(--accent); font-size: .9rem; }

/* Secure form footer */
.form-secure-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.form-secure-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
}
.form-secure-item i { color: #10b981; }

/* reCAPTCHA container */
.recaptcha-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recaptcha-wrap small {
  color: var(--text-muted);
  font-size: .75rem;
}

/* Security seal (footer) */
.security-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: #059669;
}
.security-seal i { font-size: .95rem; }

/* Page security bar (top of forms) */
.security-bar {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.security-bar i { margin-right: 6px; }

/* ── reCAPTCHA v3 — ocultar badge flotante (permitido si se muestra texto ToS) ── */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}
/* Nota: al ocultar el badge, Google requiere mostrar el texto:
   "Este sitio está protegido por reCAPTCHA. Se aplican la Política de privacidad
   y los Términos del servicio de Google." — incluido en el footer del sitio. */
