 :root {
     --tw-blue: #062f46;
     --tw-blue-dark: #021d2d;
     --tw-red: #e30613;
     --tw-bg: #f4f7fa;
     --tw-card: #ffffff;
     --tw-border: #d9e4ec;
     --tw-text: #08243a;
     --tw-muted: #607384;
     --tw-radius: 18px;
 }

 * {
     box-sizing: border-box
 }

 body {
     margin: 0;
     font-family: Arial, Helvetica, sans-serif;
     background: linear-gradient(180deg, #fff 0%, var(--tw-bg) 100%);
     color: var(--tw-text)
 }

 .tw-wizard-section {
     padding: 32px 16px
 }

 .tw-wizard {
     max-width: 980px;
     margin: 0 auto;
     background: var(--tw-card);
     border: 1px solid var(--tw-border);
     border-radius: 24px;
     box-shadow: 0 20px 45px rgba(3, 38, 59, .08);
     overflow: hidden
 }

 .tw-header {
     padding: 28px;
     background: linear-gradient(135deg, var(--tw-blue), var(--tw-blue-dark));
     color: #fff
 }

 .tw-header-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 18px;
     margin-bottom: 22px
 }

 .tw-brand {
     display: flex;
     align-items: center;
     gap: 14px;
     min-width: 0
 }

 .tw-logo-link {
     display: grid;
     place-items: center;
     width: 106px;
     min-height: 68px;
     flex: 0 0 106px;
     padding: 10px;
     background: #fff;
     border-radius: 16px;
     box-shadow: 0 10px 22px rgba(0, 0, 0, .12)
 }

 .tw-logo-image {
     width: 100%;
     height: auto;
     max-height: 48px;
     object-fit: contain
 }

 .tw-brand h1 {
     margin: 0;
     font-size: 30px;
     line-height: .95
 }

 .tw-brand p {
     margin: 5px 0 0;
     color: #ffccd0;
     text-transform: uppercase;
     font-size: 13px;
     font-weight: 800;
     letter-spacing: .04em
 }

 .tw-back-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 42px;
     padding: 10px 14px;
     border: 1px solid rgba(255, 255, 255, .55);
     border-radius: 12px;
     color: #fff;
     font-size: 12px;
     font-weight: 900;
     text-decoration: none;
     text-transform: uppercase;
     white-space: nowrap
 }

 .tw-back-link:hover {
     background: rgba(255, 255, 255, .12)
 }

 .tw-header h2 {
     margin: 0 0 8px;
     font-size: 30px
 }

 .tw-intro {
     margin: 0;
     max-width: 760px;
     color: #d8e7ef;
     line-height: 1.45;
     font-size: 16px
 }

 .tw-progress-wrap {
     padding: 22px 28px 0;
     background: #fff
 }

 .tw-progress-top {
     display: flex;
     justify-content: space-between;
     gap: 14px;
     margin-bottom: 14px;
     font-size: 14px;
     color: var(--tw-muted);
     font-weight: 700
 }

 .tw-progress {
     height: 10px;
     background: #e9f0f5;
     border-radius: 999px;
     overflow: hidden
 }

 .tw-progress-bar {
     height: 100%;
     width: 16.66%;
     background: linear-gradient(90deg, var(--tw-red), #ff3542);
     transition: .25s ease
 }

 .tw-steps {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 8px;
     margin-top: 16px
 }

 .tw-step-dot {
     text-align: center;
     font-size: 12px;
     color: var(--tw-muted);
     font-weight: 700
 }

 .tw-step-dot span {
     display: grid;
     place-items: center;
     width: 32px;
     height: 32px;
     margin: 0 auto 6px;
     border-radius: 50%;
     background: #edf3f7;
     color: var(--tw-blue);
     font-weight: 900
 }

 .tw-step-dot.active span,
 .tw-step-dot.done span {
     background: var(--tw-blue);
     color: #fff
 }

 form {
     padding: 28px
 }

 .tw-step {
     display: none;
     animation: fade .22s ease
 }

 .tw-step.active {
     display: block
 }

 @keyframes fade {
     from {
         opacity: .25;
         transform: translateY(8px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 .tw-step h3 {
     margin: 0 0 8px;
     color: var(--tw-blue-dark);
     font-size: 26px
 }

 .tw-step-desc {
     margin: 0 0 24px;
     color: var(--tw-muted);
     line-height: 1.45
 }

 .tw-card {
     padding: 20px;
     border: 1px solid var(--tw-border);
     border-radius: var(--tw-radius);
     background: #fff;
     margin-bottom: 16px
 }

 .tw-card h4 {
     margin: 0 0 12px;
     color: var(--tw-blue-dark)
 }

 .tw-list {
     display: grid;
     gap: 10px
 }

 .tw-garment-row {
     display: grid;
     grid-template-columns: 64px 1fr 130px;
     gap: 14px;
     align-items: center;
     padding: 13px;
     border: 1px solid var(--tw-border);
     border-radius: 14px;
     background: #fbfdff
 }

 .tw-garment-thumb {
     width: 64px;
     height: 64px;
     padding: 6px;
     border-radius: 12px;
     border: 1px solid var(--tw-border);
     background: #ffffff;
     object-fit: contain;
     display: block;
 }

 .tw-garment-row-other {
     grid-template-columns: 64px 1fr;
 }

 .tw-garment-row label {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 800
 }

 .tw-qty {
     display: flex;
     align-items: center;
     gap: 8px;
     justify-content: flex-end
 }

 .tw-qty input {
     width: 86px;
     padding: 10px;
     border: 1px solid #cbd8e3;
     border-radius: 10px;
     font: inherit
 }

 .tw-qty small {
     color: var(--tw-muted);
     font-weight: 700
 }

 .tw-grid-3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px
 }

 .tw-grid-2 {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 14px
 }

 .tw-option {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     padding: 16px;
     border: 1px solid var(--tw-border);
     border-radius: 14px;
     background: #fbfdff;
     font-weight: 800;
     cursor: pointer;
     min-height: 68px
 }

  .tw-option small {
      display: block;
      margin-top: 5px;
      color: var(--tw-muted);
      font-weight: 400;
      line-height: 1.35
  }

  .tw-brand-grid {
      align-items: stretch;
  }

  .tw-brand-option {
      align-items: center;
      min-height: 118px;
  }

  .tw-brand-option input[type="checkbox"] {
      flex: 0 0 auto;
      margin-top: 2px;
  }

  .tw-brand-option-text {
      min-height: 92px;
  }

  .tw-brand-card-content {
      display: flex;
      flex: 1;
      min-width: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
  }

  .tw-brand-logo {
      display: flex;
      width: 100%;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      padding: 8px 10px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid rgba(203, 216, 227, .7);
  }

  .tw-brand-logo-dark {
      background: #172033;
      border-color: #172033;
  }

  .tw-brand-logo img {
      display: block;
      width: auto;
      max-width: min(128px, 100%);
      max-height: 42px;
      object-fit: contain;
  }

  .tw-brand-other {
      grid-column: span 2;
      display: grid;
      grid-template-columns: auto minmax(220px, 1fr);
     align-items: center
 }

 .tw-brand-other input[type="text"] {
     min-width: 0
 }

 .tw-field {
     display: flex;
     flex-direction: column;
     gap: 7px;
     font-size: 14px;
     font-weight: 800;
     color: var(--tw-blue-dark)
 }

 input[type="text"],
 input[type="email"],
 input[type="tel"],
 input[type="number"],
 textarea {
     width: 100%;
     padding: 13px 14px;
     border: 1px solid #cbd8e3;
     border-radius: 10px;
     font: inherit;
     color: var(--tw-text);
     background: #fff
 }

 textarea {
     resize: vertical;
     min-height: 110px
 }

 input[type="checkbox"],
 input[type="radio"] {
     accent-color: var(--tw-blue);
     width: 18px;
     height: 18px;
     flex: 0 0 auto
 }

 input:focus,
 textarea:focus {
     outline: 3px solid rgba(6, 47, 70, .14);
     border-color: var(--tw-blue)
 }

 .tw-detail {
     display: none;
     margin-top: 12px;
     padding: 16px;
     border: 1px dashed #b7c7d4;
     border-radius: 16px;
     background: #f8fbfd
 }

 .tw-detail.active {
     display: block
 }

 .tw-detail-title {
     display: flex;
     justify-content: space-between;
     gap: 10px;
     align-items: center;
     margin-bottom: 12px
 }

 .tw-detail-title strong {
     color: var(--tw-blue-dark)
 }

 .tw-detail-title small {
     color: var(--tw-muted);
     font-weight: 700
 }

 .tw-mini-options {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px
 }

.tw-mini-options label {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 11px;
     border: 1px solid var(--tw-border);
     border-radius: 12px;
     background: #fff;
     font-weight: 700;
     font-size: 14px
 }

 .tw-inline-fields {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
     margin-top: 14px
 }

 .tw-other-items {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 10px
 }

 .tw-other-items label {
     display: grid;
     grid-template-columns: auto 38px 1fr 88px auto;
     gap: 8px;
     align-items: center;
     padding: 11px;
     border: 1px solid var(--tw-border);
     border-radius: 12px;
     background: #fff;
     font-weight: 700;
     font-size: 14px
 }

 .tw-other-items label.tw-other-item-wide {
     grid-column: 1 / -1;
     grid-template-columns: auto 38px 90px minmax(180px, 1fr) 88px auto
 }

 .tw-other-item-icon {
     display: block;
     width: 38px;
     height: 38px;
     padding: 3px;
     border: 1px solid var(--tw-border);
     border-radius: 8px;
     background: #fff;
     object-fit: contain
 }

 .tw-other-items input[type="number"] {
     width: 88px;
     padding: 10px
 }

 .tw-other-items small {
     color: var(--tw-muted);
     font-weight: 700
 }

 .tw-personalization-list {
     display: grid;
     gap: 14px
 }

 .tw-personalization-card {
     padding: 16px;
     border: 1px solid var(--tw-border);
     border-radius: 14px;
     background: #fbfdff
 }

 .tw-personalization-head {
     display: flex;
     justify-content: space-between;
     gap: 12px;
     align-items: center;
     margin-bottom: 12px
 }

 .tw-personalization-head strong {
     color: var(--tw-blue-dark)
 }

 .tw-personalization-zones {
     display: none
 }

 .tw-personalization-zones.active {
     display: block
 }

 .tw-standard-zone-note {
     display: none;
     margin-top: 12px;
     padding: 12px 14px;
     border: 1px solid rgba(6, 47, 70, .14);
     border-radius: 12px;
     background: #eef5f8;
     color: var(--tw-blue-dark);
     font-weight: 700;
     line-height: 1.35
 }

 .tw-standard-zone-note.active {
     display: block
 }

 .tw-zone-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px
 }

 .tw-zone {
     min-height: 104px;
     display: grid;
     place-items: center;
     text-align: center;
     gap: 8px;
     border: 1px solid var(--tw-border);
     border-radius: 14px;
     background: #fbfdff;
     font-weight: 900;
     cursor: pointer
 }

 .tw-zone-other {
     grid-template-rows: auto auto auto auto;
     align-content: center;
     padding: 12px
 }

 .tw-zone-other input[type="text"] {
     width: 100%;
     margin-top: 4px;
     padding: 10px;
     font-size: 13px;
     font-weight: 400
 }

 .tw-zone-icon {
     display: grid;
     place-items: center;
     width: 42px;
     height: 42px;
     color: var(--tw-red)
 }
 
 .tw-zone-icon svg {
     width: 42px;
     height: 42px;
     fill: #fff;
     stroke: currentColor;
     stroke-width: 3.5;
     stroke-linecap: round;
     stroke-linejoin: round
 }

 .tw-upload {
     display: grid;
     place-items: center;
     text-align: center;
     gap: 8px;
     min-height: 190px;
     padding: 28px;
     border: 2px dashed #9eb1c3;
     border-radius: 18px;
     background: #f6f9fb;
     cursor: pointer
 }

 .tw-upload input {
     display: none
 }

 .tw-upload strong {
     font-size: 19px;
     color: var(--tw-blue-dark)
 }

 .tw-upload span,
 .tw-upload small {
     color: var(--tw-muted)
 }

 .tw-skip-file {
     margin-top: 16px;
     width: 100%;
     border: 1px solid var(--tw-blue);
     color: var(--tw-blue);
     background: #fff;
     border-radius: 12px;
     padding: 15px;
     font-weight: 900;
     cursor: pointer
 }

 .tw-skip-file:hover {
     background: #f0f6f9
 }

 .tw-skip-note {
     display: none;
     margin-top: 12px;
     padding: 12px 14px;
     border-radius: 12px;
     background: #eef8f1;
     color: #1b6b39;
     font-weight: 700
 }

 .tw-actions {
     display: flex;
     justify-content: space-between;
     gap: 14px;
     margin-top: 26px;
     border-top: 1px solid var(--tw-border);
     padding-top: 22px
 }

 .tw-btn {
     border: none;
     border-radius: 12px;
     padding: 15px 22px;
     font-weight: 900;
     text-transform: uppercase;
     cursor: pointer;
     font-size: 14px
 }

 .tw-btn-prev {
     background: #edf3f7;
     color: var(--tw-blue)
 }

 .tw-btn-next,
 .tw-btn-submit {
     background: linear-gradient(90deg, var(--tw-red), #ff3542);
     color: #fff;
     box-shadow: 0 10px 20px rgba(227, 6, 19, .18);
     margin-left: auto
 }

 .tw-btn[disabled] {
     opacity: .45;
     cursor: not-allowed
 }

 .tw-privacy {
     margin: 16px 0 0;
     color: var(--tw-muted);
     font-size: 13px;
     line-height: 1.4
 }

 .tw-error-message {
  display: none;
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(227, 6, 19, .35);
  background: rgba(227, 6, 19, .08);
  color: var(--tw-red);
  font-weight: 800;
  line-height: 1.35;
}

.tw-error-message.active {
  display: block;
}

.tw-other-garment {
  display: grid;
  grid-template-columns: 1fr 90px auto;
  gap: 8px;
  align-items: center;
}

.tw-other-garment input[type="text"] {
  min-width: 140px;
}

.tw-other-garment input[type="number"] {
  width: 90px;
}

@media(max-width:760px) {
  .tw-other-garment {
    grid-template-columns: 1fr;
  }

  .tw-other-garment input[type="number"] {
    width: 100%;
  }
}

 @media(max-width:760px) {

     .tw-header,
     form,
     .tw-progress-wrap {
         padding: 22px 16px
     }

     .tw-header h2 {
         font-size: 24px
     }

     .tw-header-top,
     .tw-brand {
         align-items: flex-start;
         flex-direction: column;
     }

     .tw-logo-link {
         width: 132px;
         min-height: 64px;
     }

     .tw-back-link {
         width: 100%;
         white-space: normal;
         text-align: center;
     }

     .tw-steps {
         grid-template-columns: repeat(6, minmax(72px, 1fr));
         overflow-x: auto;
         padding-bottom: 8px
     }

     .tw-grid-3,
     .tw-grid-2,
     .tw-inline-fields,
     .tw-other-items,
     .tw-zone-grid,
     .tw-mini-options {
         grid-template-columns: 1fr
     }

      .tw-brand-other {
          grid-column: auto;
          grid-template-columns: 1fr
      }

      .tw-brand-option {
          min-height: 96px;
      }

      .tw-brand-card-content {
          flex-direction: row;
          justify-content: flex-start;
          text-align: left;
      }

      .tw-brand-logo {
          width: 132px;
          min-height: 44px;
          flex: 0 0 132px;
      }

      .tw-other-items label {
          grid-template-columns: auto 38px 1fr;
      }

     .tw-other-items label.tw-other-item-wide {
         grid-column: auto;
         grid-template-columns: auto 38px 1fr;
     }

     .tw-other-items label.tw-other-item-wide input[type="text"] {
         grid-column: 2 / -1;
         width: 100%;
     }

     .tw-other-items input[type="number"],
     .tw-other-items small {
         grid-column: 2 / -1;
         width: 100%;
     }

     .tw-garment-row {
         grid-template-columns: 56px 1fr;
         align-items: start
     }

     .tw-garment-thumb {
         width: 56px;
         height: 56px;
     }

     .tw-qty {
         grid-column: 1 / -1;
         justify-content: flex-start
     }

     .tw-actions {
         flex-direction: column
     }

     .tw-btn-next,
     .tw-btn-submit {
         margin-left: 0
     }
 }
/* =========================
   MEJORAS FORMULARIO TOP WEAR
========================= */

input[type="date"] {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbd8e3;
    border-radius: 10px;
    font: inherit;
    color: var(--tw-text);
    background: #fff;
}

.tw-step-comment {
    margin-top: 16px;
    background: #fbfdff;
}

.tw-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
}

.tw-file-preview {
    display: none;
    margin-top: 12px;
}

.tw-file-preview.active {
    display: block;
}

.tw-file-preview-inner {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--tw-border);
    border-radius: 14px;
    background: #fff;
}

.tw-file-thumb {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #edf3f7;
    color: var(--tw-blue);
    font-size: 26px;
    overflow: hidden;
}

.tw-file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tw-file-info {
    min-width: 0;
}

.tw-file-info strong,
.tw-file-info small {
    display: block;
}

.tw-file-info strong {
    color: var(--tw-blue-dark);
    font-size: 14px;
    line-height: 1.25;
    word-break: break-word;
}

.tw-file-info small {
    margin-top: 4px;
    color: var(--tw-muted);
    font-weight: 700;
}

.tw-remove-file {
    border: 1px solid rgba(227, 6, 19, .35);
    background: rgba(227, 6, 19, .08);
    color: var(--tw-red);
    border-radius: 10px;
    padding: 9px 12px;
    font-weight: 900;
    cursor: pointer;
}

.tw-remove-file:hover {
    background: rgba(227, 6, 19, .14);
}

.tw-help-footer {
    padding: 18px 28px 24px;
    border-top: 1px solid var(--tw-border);
    background: #f8fbfd;
    color: var(--tw-blue-dark);
    text-align: center;
    font-weight: 800;
    line-height: 1.45;
}

.tw-help-footer a {
    color: var(--tw-red);
    text-decoration: none;
    white-space: nowrap;
}

.tw-contact-section {
    padding-top: 40px;
}

.tw-contact-panel {
    max-width: 880px;
}

.tw-contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.tw-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tw-contact-result {
    padding: 28px;
    text-align: center;
}

@media(max-width:760px) {
    .tw-upload-grid {
        grid-template-columns: 1fr;
    }

    .tw-file-preview-inner {
        grid-template-columns: 56px 1fr;
    }

    .tw-file-thumb {
        width: 56px;
        height: 56px;
    }

    .tw-remove-file {
        grid-column: 1 / -1;
        width: 100%;
    }

    .tw-help-footer {
        padding: 16px;
    }
}

/* =========================
   INTEGRACION VISUAL LANDING
========================= */

:root {
    --tw-blue: #061d33;
    --tw-blue-dark: #02111f;
    --tw-red: #e30613;
    --tw-red-dark: #be000a;
    --tw-green: #25a936;
    --tw-green-dark: #168625;
    --tw-bg: #f3f6f9;
    --tw-card: #ffffff;
    --tw-border: #dfe7ef;
    --tw-text: #071f36;
    --tw-muted: #526a7f;
    --tw-radius: 8px;
    --tw-shadow: 0 16px 34px rgba(5, 24, 42, .14);
}

body {
    background: linear-gradient(180deg, #fff 0, var(--tw-bg) 56%, #eaf0f5 100%);
    font-size: 15px;
}

.tw-site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid #e7edf3;
    box-shadow: 0 8px 18px rgba(2, 18, 32, .05);
}

.tw-site-header-inner {
    width: min(100% - 52px, 1368px);
    min-height: 79px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tw-site-header .tw-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--tw-blue);
    text-decoration: none;
    flex: 0 0 auto;
}

.tw-site-header .tw-logo-image {
    width: 156px;
    max-height: none;
}

.tw-brand-text {
    display: none;
}

.tw-site-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    min-width: 0;
}

.tw-phone-link,
.tw-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10283d;
    font-weight: 900;
    text-decoration: none;
}

.tw-phone-link {
    min-width: 184px;
    padding-left: 14px;
    border-left: 1px solid #aeb9c3;
    color: var(--tw-red);
}

.tw-phone-link strong {
    display: block;
    color: var(--tw-red);
    font-size: 24px;
    line-height: 1;
    font-weight: 1000;
    white-space: nowrap;
}

.tw-phone-link small,
.tw-whatsapp-link small {
    display: block;
    color: #24394c;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.tw-contact-icon,
.tw-whatsapp-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
}

.tw-contact-icon {
    color: var(--tw-red);
}

.tw-contact-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tw-whatsapp-icon {
    padding: 6px;
    background: var(--tw-green);
}

.tw-whatsapp-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tw-site-header .tw-back-link {
    min-height: 57px;
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: var(--tw-radius);
    color: #fff;
    background: linear-gradient(135deg, #f20b17, var(--tw-red-dark));
    box-shadow: 0 10px 20px rgba(227, 6, 19, .22);
    font-size: 11px;
    font-weight: 1000;
    line-height: 1.1;
}

.tw-site-header .tw-back-link:hover {
    background: linear-gradient(135deg, #ff1a25, var(--tw-red-dark));
    transform: translateY(-1px);
}

.tw-wizard-section {
    padding: 34px 16px 42px;
}

.tw-wizard {
    max-width: 1030px;
    border-color: #e4ebf2;
    border-radius: var(--tw-radius);
    box-shadow: var(--tw-shadow);
    scroll-margin-top: 100px;
}

.tw-header {
    padding: 30px 34px;
    background:
        linear-gradient(90deg, rgba(2, 13, 24, .98) 0%, rgba(4, 20, 35, .9) 54%, rgba(4, 20, 35, .78) 100%);
    color: #fff;
}

.tw-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--tw-red);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
}

.tw-header h1 {
    max-width: 760px;
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.04;
    text-transform: uppercase;
    font-weight: 1000;
}

.tw-intro {
    max-width: 800px;
    color: #f0f6fb;
    font-size: 16px;
}

.tw-progress-wrap,
form,
.tw-help-footer {
    background: #fff;
}

.tw-progress {
    height: 8px;
    background: #e7edf3;
    border-radius: 999px;
}

.tw-progress-bar {
    background: linear-gradient(90deg, #f20b17, var(--tw-red-dark));
}

.tw-step-dot span {
    border-radius: 50%;
    background: #edf3f7;
    color: var(--tw-blue);
}

.tw-step-dot.active span,
.tw-step-dot.done span {
    background: var(--tw-blue);
}

.tw-step h3 {
    color: var(--tw-blue);
    font-size: 28px;
    line-height: 1.12;
}

.tw-card,
.tw-option,
.tw-garment-row,
.tw-detail,
.tw-mini-options label,
.tw-other-items label,
.tw-personalization-card,
.tw-zone,
.tw-upload,
.tw-file-preview-inner,
.tw-file-thumb,
.tw-remove-file,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea {
    border-radius: var(--tw-radius);
}

.tw-card {
    border-color: #e4ebf2;
    box-shadow: 0 8px 18px rgba(2, 25, 44, .04);
}

.tw-garment-row,
.tw-option,
.tw-personalization-card,
.tw-zone {
    background: #fbfdff;
}

.tw-garment-row:hover,
.tw-option:hover,
.tw-zone:hover {
    border-color: #a9b7c5;
    box-shadow: 0 8px 18px rgba(2, 25, 44, .06);
}

.tw-garment-thumb {
    border-radius: var(--tw-radius);
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--tw-red);
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(227, 6, 19, .14);
    border-color: var(--tw-red);
}

.tw-detail {
    border-color: #a9b7c5;
    background: #f8fafc;
}

.tw-zone-icon {
    color: var(--tw-red);
}

.tw-upload {
    border-color: #9eb1c3;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.tw-upload:hover {
    border-color: var(--tw-red);
}

.tw-skip-file {
    border-color: var(--tw-blue);
    border-radius: var(--tw-radius);
    color: var(--tw-blue);
}

.tw-actions {
    background: #fff;
}

.tw-btn {
    min-height: 48px;
    border-radius: var(--tw-radius);
    font-weight: 1000;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.tw-btn:hover:not([disabled]) {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.tw-btn-prev {
    border-color: #a9b7c5;
    background: #fff;
    color: var(--tw-blue);
}

.tw-btn-next,
.tw-btn-submit {
    background: linear-gradient(135deg, #f20b17, var(--tw-red-dark));
    box-shadow: 0 10px 20px rgba(227, 6, 19, .22);
}

.tw-error-message {
    border-radius: var(--tw-radius);
    background: rgba(227, 6, 19, .08);
}

.tw-help-footer {
    color: var(--tw-blue);
}

@media(max-width:1100px) {
    .tw-site-header-inner {
        width: min(100% - 32px, 1000px);
    }

    .tw-whatsapp-link small {
        display: none;
    }
}

@media(max-width:900px) {
    .tw-site-header-inner {
        min-height: auto;
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .tw-site-contact {
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .tw-site-header .tw-back-link {
        margin-left: auto;
    }
}

@media(max-width:760px) {
    .tw-site-header {
        position: static;
    }

    .tw-site-header-inner {
        width: min(100% - 28px, 680px);
    }

    .tw-site-header .tw-logo-image {
        width: 142px;
    }

    .tw-phone-link {
        min-width: 0;
        padding-left: 0;
        border-left: 0;
    }

    .tw-phone-link strong {
        font-size: 20px;
    }

    .tw-site-header .tw-back-link {
        width: 100%;
        min-height: 46px;
        margin-left: 0;
        text-align: center;
        white-space: normal;
    }

    .tw-wizard-section {
        padding: 18px 14px 30px;
    }

    .tw-wizard {
        border-radius: var(--tw-radius);
        scroll-margin-top: 220px;
    }

    .tw-header,
    form,
    .tw-progress-wrap {
        padding: 22px 16px;
    }

    .tw-header h1 {
        font-size: 30px;
    }

    .tw-intro br {
        display: none;
    }

    .tw-step-dot {
        font-size: 11px;
        line-height: 1.2;
    }
}

@media(max-width:430px) {
    .tw-site-contact {
        display: grid;
        grid-template-columns: 1fr 44px;
        gap: 10px;
    }

    .tw-whatsapp-link {
        justify-content: center;
    }

    .tw-phone-link {
        min-width: 0;
    }

    .tw-phone-link small {
        font-size: 9px;
    }

    .tw-site-header .tw-back-link {
        grid-column: 1 / -1;
    }

    .tw-steps {
        grid-template-columns: repeat(6, minmax(48px, 1fr));
        gap: 5px;
    }

    .tw-step-dot {
        font-size: 9px;
        overflow-wrap: anywhere;
    }

    .tw-step-dot span {
        width: 30px;
        height: 30px;
    }
}
