:root {
  --navy: #06152f;
  --navy2: #091f42;
  --cyan: #00d8e8;
  --pink: #ff245d;
  --orange: #ff7a00;
  --yellow: #ffd400;
  --white: #ffffff;
  --soft: #eef4fa;
  --ink: #0a1426;
  --muted: #60708b;
  --r: 24px;
  --shadow: 0 28px 80px rgba(2, 14, 36, 0.24);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font: inherit;
  outline: none;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--cyan));
  color: #07142b;
  text-align: center;
  padding: 9px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 21, 47, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(6, 21, 47, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.navin {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 240px;
  max-height: 64px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.1);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.brand img:hover {
  transform: scale(1.02);
}

.links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #dbe7ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.links a {
  position: relative;
  padding: 6px 0;
}

.links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition-smooth);
}

.links a:hover {
  color: var(--cyan);
}

.links a:hover::after,
.links a.active::after {
  width: 100%;
}

.links a.active {
  color: var(--cyan);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-hot {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: white;
  box-shadow: 0 12px 28px rgba(255, 36, 93, 0.25);
}

.btn-hot:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 36, 93, 0.4);
}

.btn-light {
  background: white;
  color: var(--navy);
  border: 1px solid rgba(6, 21, 47, 0.15);
}

.btn-light:hover {
  background: var(--soft);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 680px;
  background: radial-gradient(circle at 85% 20%, rgba(0, 216, 232, 0.22), transparent 35%),
              radial-gradient(circle at 15% 82%, rgba(255, 36, 93, 0.18), transparent 35%),
              linear-gradient(135deg, #06152f, #0a2852 70%, #071b38);
  color: white;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent);
}

.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.kicker::before {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7.5vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.9;
  margin: 15px 0 25px 0;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--cyan), #fff 35%, var(--yellow) 65%, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #c9d7ee;
  max-width: 600px;
}

.actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: #adbfdb;
  font-size: 0.88rem;
  font-weight: 700;
}

.proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proof span::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

/* HERO VISUALS */
.heroVisual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoCard {
  position: absolute;
  inset: 20px 20px 60px 20px;
  border-radius: 34px;
  background: linear-gradient(145deg, #1d2b45, #081224);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transform: rotate(2deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logoCard img {
  width: 85%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
  transition: var(--transition-smooth);
}

.heroVisual:hover .logoCard {
  transform: rotate(0deg) scale(1.02);
}

.float {
  position: absolute;
  padding: 14px 20px;
  border-radius: 16px;
  color: #07152d;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: var(--transition-smooth);
}

.float:hover {
  transform: scale(1.1) rotate(0deg) !important;
}

.f1 {
  right: -10px;
  top: 40px;
  background: var(--yellow);
  transform: rotate(6deg);
}

.f2 {
  left: -15px;
  bottom: 50px;
  background: var(--cyan);
  transform: rotate(-6deg);
}

.f3 {
  right: 30px;
  bottom: 0px;
  background: var(--pink);
  color: white;
  transform: rotate(3deg);
}

/* ANIMATED TICKER */
.ticker {
  overflow: hidden;
  background: var(--pink);
  color: white;
  border-block: 5px solid var(--navy);
}

.track {
  display: flex;
  width: max-content;
  animation: run 24s linear infinite;
  padding: 16px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.track span {
  margin-right: 32px;
}

.track b {
  color: var(--yellow);
  margin-right: 32px;
}

@keyframes run {
  to {
    transform: translateX(-50%);
  }
}

/* SECTION BASICS */
section {
  padding: 100px 0;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}

.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.head p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* SERVICES SECTION */
.services {
  background: var(--soft);
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  border-radius: var(--r);
  padding: 30px;
  box-shadow: 0 12px 35px rgba(5, 25, 55, 0.06);
  border: 1px solid #e4ebf3;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(5, 25, 55, 0.12);
  border-color: rgba(255, 36, 93, 0.2);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--cyan), #9ffaff);
  margin-bottom: 28px;
}

.card:nth-child(2) .icon {
  background: linear-gradient(135deg, var(--pink), #ff9ebb);
}

.card:nth-child(3) .icon {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.card:nth-child(4) .icon {
  background: linear-gradient(135deg, #7a5cff, var(--cyan));
}

.card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card a {
  font-weight: 800;
  color: var(--pink);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card a:hover {
  color: var(--orange);
  gap: 9px;
}

.edge {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.12;
  transition: var(--transition-smooth);
}

.card:hover .edge {
  transform: scale(1.2);
}

/* WHY CHOOSE US */
.why {
  background: var(--navy);
  color: white;
}

.why .title {
  color: white;
}

.whyGrid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(145deg, #102d58, #071b39);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  color: #bfd0e9;
  font-size: 0.95rem;
}

.whyCopy p {
  color: #bfcee3;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.checks div {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.checks div::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

/* ONLINE STORES SECTION */
.stores {
  background: white;
}

.storeGrid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.store-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 800;
}

.benefit-text p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* BROWSER SIMULATOR */
.browser {
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid #dce5ef;
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: var(--transition-smooth);
}

.browser:hover {
  transform: rotate(0deg) scale(1.01);
}

.dots {
  height: 44px;
  background: #edf2f7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid #dce5ef;
}

.dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
}

.dots i:nth-child(2) {
  background: var(--yellow);
}

.dots i:nth-child(3) {
  background: var(--cyan);
}

.shophead {
  padding: 22px 25px;
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.prod {
  padding: 16px;
  border-radius: 18px;
  background: #f4f7fa;
  border: 1px solid #e4ebf3;
  transition: var(--transition-smooth);
}

.prod:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.shirt {
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1d2b45, #081224);
  position: relative;
  clip-path: polygon(25% 0, 39% 10%, 61% 10%, 75% 0, 100% 21%, 85% 40%, 76% 32%, 79% 100%, 21% 100%, 24% 32%, 15% 40%, 0 21%);
  transition: var(--transition-smooth);
}

.prod:nth-child(2) .shirt {
  background: linear-gradient(145deg, var(--pink), #8a0c2b);
}

.prod:nth-child(3) .shirt {
  background: linear-gradient(145deg, var(--cyan), #047682);
}

.prod strong {
  display: block;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 800;
}

.prod small {
  display: block;
  margin-top: 4px;
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
}

/* STEPS SECTION */
.stepsSec {
  background: linear-gradient(135deg, #fff7e7, #effcff);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  padding: 35px 30px;
  border-radius: 22px;
  background: white;
  border-top: 6px solid var(--pink);
  box-shadow: 0 12px 35px rgba(5, 25, 55, 0.05);
  transition: var(--transition-smooth);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(5, 25, 55, 0.1);
}

.step:nth-child(2) {
  border-color: var(--orange);
}

.step:nth-child(3) {
  border-color: var(--yellow);
}

.step:nth-child(4) {
  border-color: var(--cyan);
}

.step b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}

.step h3 {
  margin: 12px 0 10px 0;
  font-size: 1.2rem;
  color: var(--navy);
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* QUOTE PAGE / SECTION GENERAL FORM */
.quote {
  background: linear-gradient(135deg, var(--pink), #c41449 45%, var(--orange));
  color: white;
}

.quote .title {
  color: white;
}

.quoteGrid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.quote p {
  color: #ffe4eb;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* FORM STYLING */
.form {
  background: white;
  color: var(--ink);
  padding: 35px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  color: var(--navy);
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d9e1eb;
  border-radius: 12px;
  padding: 14px;
  background: #fbfdff;
  font-family: inherit;
  color: var(--navy);
  transition: var(--transition-smooth);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 36, 93, 0.1);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.success {
  display: none;
  background: #ddfbf4;
  color: #0c6554;
  padding: 16px;
  border-radius: 12px;
  margin-top: 15px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(12, 101, 84, 0.15);
}

/* FOOTER */
.foot {
  background: #040d1d;
  color: #b8c7dd;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footGrid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.foot img {
  width: 200px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  border-radius: 10px;
}

.foot-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.foot-info strong {
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.foot .small {
  font-size: 0.82rem;
  color: #8c9eb9;
}

/* INTERACTIVE CATALOG PAGE styles */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.filter-sidebar {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 20px;
  height: fit-content;
  position: sticky;
  top: 110px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}

.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 4px;
}

.filter-btn:hover,
.filter-btn.active {
  background: white;
  color: var(--pink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

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

.catalog-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(0, 216, 232, 0.3);
}

.catalog-img-container {
  height: 220px;
  background: #f7fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.catalog-img-container .shirt {
  width: 110px;
  height: 130px;
  transform: scale(0.95);
}

.catalog-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-info h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.catalog-info p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f4f8;
  padding-top: 15px;
}

.catalog-price {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}

.catalog-price span {
  color: var(--pink);
}

/* INTERACTIVE CUSTOMIZER WIDGET styles */
.customizer-section {
  background: var(--soft);
}

.customizer-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.customizer-preview {
  background: white;
  border-radius: var(--r);
  border: 1px solid #dbe3eb;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.preview-canvas {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1.05;
  height: auto;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafc;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9e1eb;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

#mockupZoomWrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}

#shirtPhotoMockup {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  z-index: 1;
  transform-origin: center center;
  transition: filter 0.25s ease;
}

/* Back view: same clean color photo — badge + print zone carry the side meaning */
#canvasContainer.is-back-view #shirtPhotoMockup {
  object-position: center center;
  filter: none;
}

#printBoundary {
  position: absolute;
  width: 168px;
  height: 210px;
  border: 1.5px dashed var(--pink);
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

#printBoundaryLabel {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 800;
  background: var(--pink);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

#customLogoOverlay.customizer-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.25));
}

#customTextOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  display: none;
  width: 100%;
  text-align: center;
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1.2;
}

.view-mode-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(6, 21, 47, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  pointer-events: none;
}

#canvasContainer.is-back-view .view-mode-badge {
  background: var(--pink);
}

.preview-hint {
  margin-top: 12px;
  max-width: 560px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.customizer-shirt {
  width: 250px;
  height: 290px;
  transition: var(--transition-smooth);
}

.customizer-logo {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
  transition: var(--transition-smooth);
}

.customizer-logo.logo-back {
  top: 38%;
  width: 90px;
}

.canvas-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 1050px) {
  .preview-canvas {
    width: min(100%, 480px);
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .preview-canvas {
    width: 100%;
    min-height: 360px;
  }

  .customizer-preview {
    padding: 12px;
  }
}

.customizer-options {
  background: white;
  border-radius: var(--r);
  border: 1px solid #dbe3eb;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.option-group {
  margin-bottom: 25px;
}

.option-group h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}

.color-swatches {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #dbe3eb;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.swatch:hover {
  transform: scale(1.15);
}

.swatch.active {
  box-shadow: 0 0 0 2px var(--navy);
  transform: scale(1.1);
}

.customizer-btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.customizer-btn-group button {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid #dbe3eb;
  background: #f7fafc;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.customizer-btn-group button:hover,
.customizer-btn-group button.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.art-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.art-preset {
  background: #f7fafc;
  border: 1px solid #dbe3eb;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.art-preset:hover {
  border-color: var(--cyan);
  background: #eefcfe;
}

.art-preset.active {
  border-color: var(--pink);
  background: #fff5f7;
}

.art-preset img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 6px;
}

.art-preset span {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--navy);
}

/* INTERACTIVE STORE SIMULATOR styles */
.store-simulator {
  background: var(--soft);
}

.store-sim-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.store-sim-controls {
  background: white;
  border-radius: var(--r);
  border: 1px solid #dbe3eb;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

/* STEPPED QUOTE WIZARD styles */
.quote-wizard-container {
  max-width: 800px;
  margin: 0 auto;
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 45px;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #e2e8f0;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-bar-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transform: translateY(-50%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.progress-step {
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 4px solid #e2e8f0;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--muted);
  transition: var(--transition-smooth);
}

.progress-step.active {
  border-color: var(--pink);
  color: var(--pink);
}

.progress-step.completed {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}

.wizard-step-panel {
  display: none;
  animation: slideFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-step-panel.active {
  display: block;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid #f0f4f8;
  padding-top: 24px;
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1050px) {
  .heroGrid, .whyGrid, .storeGrid, .catalog-layout, .customizer-layout, .store-sim-layout, .quoteGrid {
    grid-template-columns: 1fr;
  }
  
  .filter-sidebar {
    position: static;
    margin-bottom: 30px;
  }
  
  .heroVisual {
    min-height: 420px;
  }
  
  .grid4, .catalog-grid, .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: var(--navy);
    padding: 30px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .links a {
    padding: 12px 0;
  }
  
  .links .btn {
    margin-top: 15px;
    text-align: center;
  }
  
  .links.open {
    display: flex;
  }
  
  .menu {
    display: block;
  }
}

@media (max-width: 650px) {
  section {
    padding: 70px 0;
  }
  
  .grid4, .catalog-grid, .steps, .stack, .checks, .fields, .products, .art-options {
    grid-template-columns: 1fr;
  }
  
  .field.full {
    grid-column: auto;
  }
  
  .hero h1 {
    font-size: clamp(3.2rem, 10vw, 4.5rem);
  }
  
  .browser {
    transform: none;
  }
  
  .footGrid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-grid,
  .apparel-browse-layout,
  .store-form-layout,
  .policies-layout {
    grid-template-columns: 1fr !important;
  }

  .size-matrix-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .wizard-nav {
    flex-direction: column;
  }

  .wizard-nav .btn {
    width: 100%;
  }
}

/* ===== Quote-first additions (preserve approved look) ===== */
.foot-links {
  margin-top: 8px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.foot-links a {
  text-decoration: underline;
  color: #adbfdb;
}

.page-hero {
  background: var(--navy);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-bottom: 5px solid var(--pink);
}

.page-hero .title {
  color: white;
  margin-bottom: 10px;
}

.page-hero p {
  color: #bfd0e9;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.proof-notice {
  background: #fffaf0;
  border-left: 4px solid var(--pink);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 0.92rem;
  color: #744210;
  line-height: 1.65;
}

.cta-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.cta-trio a {
  display: block;
  text-align: center;
  padding: 18px 16px;
  border-radius: 16px;
  font-weight: 800;
  border: 1px solid #dce5ef;
  background: white;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(6, 21, 47, 0.06);
}

.cta-trio a:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
}

.cta-trio a.primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  border: none;
}

.apparel-browse-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.garment-preview-card {
  background: white;
  border: 1px solid #dce5ef;
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow);
}

.garment-preview-card img {
  width: 100%;
  border-radius: 16px;
  background: #f7fafc;
}

.color-swatches .swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}

.color-swatches .swatch.active {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(255, 36, 93, 0.25);
}

.print-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.print-location-card {
  background: var(--soft);
  border: 1px solid #dce5ef;
  border-radius: 14px;
  padding: 14px;
}

.print-location-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.print-location-card span {
  font-size: 0.82rem;
  color: var(--muted);
}

.size-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.size-matrix-grid label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.size-matrix-grid input {
  width: 100%;
  text-align: center;
  border: 1px solid #d9e1eb;
  border-radius: 8px;
  padding: 8px 4px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9e1eb;
  background: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.chip input {
  accent-color: var(--pink);
}

.preview-disabled-banner {
  background: #fff5f5;
  color: #9b2c2c;
  border: 1px solid rgba(155, 44, 44, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-status.pending { color: var(--muted); }
.form-status.error { color: #c53030; }
.form-status.success { color: #0c6554; }

.success-panel {
  text-align: center;
  padding: 40px 24px;
  background: #ddfbf4;
  border: 1px solid rgba(12, 101, 84, 0.15);
  border-radius: 16px;
  color: #0c6554;
}

.success-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.request-ref {
  margin: 16px 0 24px;
  color: #167e6c;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.45;
}

.checkbox-row input {
  margin-top: 4px;
  accent-color: var(--pink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.policies-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.option-group h4 {
  color: var(--navy);
  margin-bottom: 10px;
}

.section-soft {
  background: var(--soft);
}

.section-white {
  background: white;
}

@media (max-width: 900px) {
  .cta-trio {
    grid-template-columns: 1fr;
  }
}

.btn-outline {
  background: white;
  color: var(--navy);
  border: 2px solid #d9e1eb;
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}
