:root {
  --white: #ffffff;
  --black: #111111;
  --pink: #e6008d;
  --orange: #ffb000;
  --green: #e6008d;
  --grey: #f4f4f4;
  --muted: #888888;
  --line: rgba(17, 17, 17, 0.08);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.09);
  --shadow-soft: 0 12px 34px rgba(17, 17, 17, 0.07);
  --gradient: linear-gradient(135deg, #e6008d 0%, #ee2f62 48%, #ffb000 100%);
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius-card: 12px;
  --radius-button: 6px;
  --site-max: 1600px;
  --site-gutter: clamp(24px, 3.5vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style-position: inside;
  color: var(--muted);
}

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

.container {
  width: min(var(--site-max), calc(100% - (var(--site-gutter) * 2)));
  margin-inline: auto;
  min-width: 0;
}

.bundle-page {
  --site-max: 1600px;
  --site-gutter: clamp(24px, 3.5vw, 48px);
}

.section-pad {
  padding: 112px 0;
}

.pt-0 {
  padding-top: 0;
}

.alt {
  background: var(--grey);
}

.centered {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: anywhere;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

h1 {
  font-size: clamp(3rem, 6.8vw, 6.25rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  overflow-wrap: break-word;
  line-height: 1.72;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 42px;
  max-width: 760px;
}

.section-head.centered {
  margin-inline: auto;
}

.page-intro {
  max-width: 680px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.title-underline {
  display: block;
  width: 130px;
  height: 7px;
  margin-top: 26px;
  border-radius: 99px;
  background: var(--gradient);
}

.trust-bar {
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
}

.trust-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 44px);
  text-align: center;
}

.trust-bar a,
.trust-bar span {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.trust-bar a:hover {
  color: #ffffff;
  opacity: 0.9;
}

.trust-bar strong {
  color: var(--white);
}

.trust-bar small {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: inherit;
  font-weight: 700;
}

.trust-bar span::before,
.trust-bar a::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.utility-header {
  background: var(--grey);
  color: var(--muted);
  font-size: 0.9rem;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  color: var(--black);
  font-weight: 800;
}

.utility-inner div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.utility-inner a {
  font-weight: 800;
}

.utility-inner a:hover {
  color: var(--pink);
}

.store-topline {
  background: linear-gradient(135deg, #111111 0%, #2b1725 42%, #e6008d 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.store-topline-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2.4vw, 28px);
  font-weight: 800;
  font-size: 0.88rem;
}

.store-topline-inner>span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.store-topline-inner>span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.16);
}

.vat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.vat-toggle input {
  position: absolute;
  opacity: 0;
}

.vat-toggle span {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
}

.vat-toggle span::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--white);
  position: absolute;
  left: 3px;
  top: 3px;
  transition: transform 160ms ease;
}

.vat-toggle input:checked+span::after {
  transform: translateX(18px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.header-actions a {
  color: var(--black);
}

.header-actions span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.78rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-nav.scrolled {
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.4vw, 22px);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(132px, 11vw, 160px);
  height: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  font: 800 1.9rem/1 var(--font-heading);
  text-transform: lowercase;
  box-shadow: 0 14px 24px rgba(232, 53, 122, 0.22);
}

.brand-word {
  color: var(--black);
  font: 800 1.45rem/1 var(--font-heading);
  text-transform: lowercase;
}

.site-search {
  flex: 1 1 320px;
  min-width: 190px;
  max-width: 390px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: var(--grey);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.site-search input {
  min-height: 44px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-search input:focus {
  box-shadow: none;
}

.site-search button {
  border: 0;
  padding: 0 18px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.25vw, 20px);
  min-width: 0;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-button);
  border: 0;
  cursor: pointer;
  font-weight: 800;
  max-width: 100%;
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(232, 53, 122, 0.22);
}

.nav-cta {
  flex: 0 0 auto;
  min-width: 124px;
  padding-inline: 18px;
  white-space: normal;
}

.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
  background: var(--white);
}

.btn-white {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 8px;
  background: var(--black);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-content: center;
  gap: 22px;
  padding: 96px 24px 32px;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.mobile-menu a {
  max-width: 100%;
  font: 800 clamp(1.6rem, 8vw, 2rem)/1 var(--font-heading);
  text-transform: uppercase;
  text-align: center;
}

.store-menu {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}

.store-menu-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

@media (min-width: 1180px) {
  .store-menu-inner {
    justify-content: center;
    gap: clamp(8px, 1.6vw, 22px);
  }
}

.store-menu-inner::-webkit-scrollbar {
  display: none;
}

.store-menu-item {
  position: static;
  flex: 0 0 auto;
}

.store-menu-link {
  flex: 0 0 auto;
  min-width: 72px;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.78rem;
}

.menu-icon {
  width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--pink);
  font: 800 0.72rem/1 var(--font-heading);
}

.menu-icon img {
  width: 42px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 140ms ease, transform 140ms ease;
}

.store-menu-item:hover .menu-icon img,
.store-menu-item:focus-within .menu-icon img {
  filter: grayscale(0);
  transform: translateY(-2px);
}

.store-menu a:hover,
.store-menu-item:hover .store-menu-link,
.store-menu-item:focus-within .store-menu-link {
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.1), rgba(255, 176, 0, 0.14));
  color: var(--black);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(var(--site-max), calc(100vw - (var(--site-gutter) * 2)));
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 30px;
  padding: 30px;
  border-radius: 0 0 18px 18px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  z-index: 1000;
}

.store-menu-item:hover .mega-menu,
.store-menu-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

.mega-tile {
  display: grid;
  gap: 8px;
  padding: 0 !important;
  border-radius: 10px !important;
  color: var(--green) !important;
  font-weight: 800;
}

.mega-tile:hover {
  background: transparent !important;
}

.mega-tile img {
  width: 100%;
  height: 104px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #fafafa;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.mega-tile span {
  padding: 0 2px;
}

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

.mega-column strong {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  padding: 4px 0;
  border-radius: 0;
  color: var(--pink);
  font-weight: 500;
  white-space: normal;
}

.mega-column a:hover {
  background: transparent;
  color: var(--pink);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 86px;
}

.store-hero {
  min-height: auto;
  padding: 92px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
}

.hero h1 {
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: 0.94;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 30px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--grey);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-proof strong {
  color: var(--black);
  font-family: var(--font-heading);
}

.nt-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 53, 122, 0.2), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(249, 115, 22, 0.16), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #fff7fb 42%, #fff2e8 100%);
  color: var(--white);
  padding: 0;
}

.nt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 72%);
  pointer-events: none;
}

.nt-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: min(660px, calc(100vh - 232px));
}

.nt-hero-copy {
  max-width: 720px;
  color: var(--black);
  padding: clamp(58px, 6vw, 92px) 0;
}

.nt-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nt-rating span {
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 0.82rem;
}

.nt-rating strong {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.nt-hero h1 {
  max-width: 760px;
  color: var(--black);
  font-size: clamp(3.05rem, 4.55vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.nt-h-line {
  display: block;
}

.nt-word {
  display: inline-block;
  min-width: 7.3ch;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 240ms ease, transform 240ms ease;
}

.nt-word.changing {
  opacity: 0;
  transform: translateY(12px);
}

.nt-hero-text {
  max-width: 700px;
  margin: 24px 0 24px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.72;
}

.nt-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-bottom: 34px;
}

.nt-proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 800;
}

.nt-proof-list span::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) padding-box,
    var(--gradient) border-box;
  border: 5px solid transparent;
  box-shadow: 0 0 0 5px rgba(232, 53, 122, 0.12);
}

.nt-primary {
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 20px 42px rgba(232, 53, 122, 0.28);
}

.nt-secondary {
  color: var(--black);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
}

.nt-secondary:hover {
  color: var(--black);
  transform: translateY(-2px);
  background: var(--white);
}

.nt-collage-wrapper {
  position: relative;
  align-self: stretch;
  height: 100%;
}

.nt-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  --collage-gap: 18px;
  gap: var(--collage-gap);
  position: absolute;
  inset: -40px 0;
  overflow: hidden;
  padding: 0;
}

.nt-collage-column {
  display: grid;
  gap: var(--collage-gap);
  align-content: start;
  padding-block: 0;
  will-change: transform;
}

.nt-collage-column.slow,
.nt-collage-column.fast,
.nt-collage-column.medium {
  transform: translate3d(0, 0, 0);
}

.nt-collage-column.slow {
  animation: ntMarqueeUp 26s linear infinite;
}

.nt-collage-column.fast {
  animation: ntMarqueeUp 18s linear infinite;
}

.nt-collage-column.medium {
  animation: ntMarqueeUp 22s linear infinite;
}

.nt-photo-card {
  position: relative;
  display: block;
  height: 210px;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.nt-photo-card.tall {
  height: 330px;
}

.nt-photo-card.workshop {
  height: 250px;
}

.nt-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  padding: 0;
  background: #f7f7f7;
  transition: transform 420ms ease, filter 420ms ease;
}

.nt-photo-card:not(.workshop) img[src*="catalog-items"] {
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.nt-photo-card::after {
  display: none;
}

.nt-photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.nt-photo-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(232, 53, 122, 0.28);
  z-index: 1;
}

@keyframes ntMarqueeUp {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, calc(-50% - (var(--collage-gap) / 2)), 0);
  }
}

.hero-visual {
  position: relative;
  min-height: 560px;
  min-width: 0;
  overflow: hidden;
}

.mockup {
  position: absolute;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mockup-product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100% - 58px);
  margin-top: 42px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #fafafa;
}

.mockup-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(232, 53, 122, 0.08);
  color: var(--pink);
  font-weight: 800;
  font-size: 0.72rem;
}

.mockup-shirt .mockup-label {
  left: auto;
  right: 18px;
}

.mockup-shirt {
  inset: 68px 34px auto auto;
  width: 300px;
  height: 360px;
  padding: 24px;
  transform: rotate(4deg);
  z-index: 2;
}

.shirt-icon {
  width: 190px;
  height: 220px;
  margin: 38px auto 0;
  border-radius: 40px 40px 22px 22px;
  background: var(--black);
  position: relative;
}

.shirt-icon::before,
.shirt-icon::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 72px;
  height: 80px;
  background: var(--black);
  border-radius: 18px;
}

.shirt-icon::before {
  left: -48px;
  transform: rotate(22deg);
}

.shirt-icon::after {
  right: -48px;
  transform: rotate(-22deg);
}

.shirt-icon::after,
.shirt-icon::before {
  z-index: -1;
}

.shirt-icon {
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.1);
}

.mockup-card {
  left: 0;
  top: 190px;
  width: 260px;
  padding: 26px;
  transform: rotate(-7deg);
  z-index: 4;
}

.mockup-card strong {
  display: block;
  margin-top: 62px;
  font: 800 2rem/1 var(--font-heading);
  text-transform: uppercase;
}

.mockup-dtf {
  inset: 0 258px auto auto;
  width: 190px;
  height: 190px;
  padding: 18px;
  transform: rotate(-5deg);
  z-index: 5;
}

.mockup-stack {
  right: 0;
  bottom: 28px;
  width: 280px;
  padding: 18px;
  display: grid;
  gap: 12px;
  transform: rotate(-2deg);
  z-index: 6;
}

.mockup-stack span {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--grey);
  font-weight: 800;
}

.mockup-stack span:nth-child(2) {
  background: linear-gradient(135deg, rgba(232, 53, 122, 0.14), rgba(249, 115, 22, 0.14));
}

.float-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  animation: float 3.8s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.shape-one {
  width: 190px;
  height: 190px;
  left: 70px;
  top: 20px;
  background: rgba(232, 53, 122, 0.15);
}

.shape-two {
  width: 230px;
  height: 230px;
  right: 30px;
  bottom: 82px;
  background: rgba(249, 115, 22, 0.15);
  animation-delay: 0.8s;
}

@keyframes float {
  to {
    transform: translateY(-18px) translateX(10px);
  }
}

.marquee {
  position: relative;
  height: 54px;
  max-width: 100vw;
  overflow: hidden;
  contain: paint;
  background: var(--gradient);
  color: var(--white);
}

.marquee-track {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  height: 54px;
  white-space: nowrap;
  font: 800 1rem/1 var(--font-heading);
  text-transform: uppercase;
}

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

.shop-slider {
  padding: 28px 0 14px;
}

.shop-slider+.section-pad {
  padding-top: 18px;
}

.home-departments {
  padding-bottom: 44px;
}

.home-packages {
  padding-top: 44px;
  padding-bottom: 44px;
}

.home-process {
  padding-top: 44px;
}

.slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.slides {
  position: relative;
  min-height: 456px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  align-items: end;
  gap: 34px;
  padding: clamp(34px, 6vw, 64px) clamp(34px, 6vw, 64px) clamp(70px, 7vw, 92px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.58) 44%, rgba(17, 17, 17, 0.08));
}

.slide>div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-bottom: 0;
}

.slide h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide h2,
.slide p {
  color: var(--white);
}

.slide p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  margin: 18px 0 24px;
}

.slide .btn {
  min-height: 46px;
  padding-inline: 24px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.slider-dots button.active {
  width: 24px;
  background: var(--white);
}

.card-grid,
.value-grid,
.team-grid,
.testimonial-grid,
.package-teaser-grid {
  display: grid;
  gap: 24px;
}

.department-grid,
.product-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.department-card,
.product-card,
.faq-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.department-card:hover,
.product-card:hover,
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.department-card h3,
.product-card h3,
.faq-card h3 {
  margin: 16px 0 10px;
}

.department-card {
  padding: 14px;
}

.department-card h3 {
  margin: 14px 0 6px;
  font-size: 1.02rem;
  line-height: 1.05;
}

.department-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-figure {
  width: 86px;
  height: 96px;
  display: block;
  margin-bottom: 16px;
  border-radius: 24px 24px 14px 14px;
  background: var(--black);
  position: relative;
}

.product-figure::before,
.product-figure::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 32px;
  height: 42px;
  border-radius: 12px;
  background: inherit;
}

.product-figure::before {
  left: -22px;
  transform: rotate(22deg);
}

.product-figure::after {
  right: -22px;
  transform: rotate(-22deg);
}

.product-figure.hoodie {
  background: #232323;
}

.product-figure.sweatshirt {
  background: linear-gradient(135deg, #f7dce8, #ffe4d2);
}

.product-figure.workwear {
  background: linear-gradient(135deg, #111, #555);
}

.product-figure.graphic {
  background: var(--gradient);
}

.product-figure.music {
  background: linear-gradient(135deg, #111, #e6008d);
}

.product-figure.bundle {
  background: linear-gradient(135deg, #e6008d, #ffb000);
}

.product-figure.upload {
  background: #f4f4f4;
  box-shadow: inset 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.generated-thumb {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  border-radius: 12px;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: 500% 200%;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.catalog-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  min-height: 150px;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
  transition: transform 180ms ease, filter 180ms ease;
}

.product-image {
  min-height: 170px;
  display: grid;
  place-items: center;
  margin: -8px -8px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  --print-left: 50%;
  --print-top: 36%;
  --print-size: 28%;
  --print-rotate: 0deg;
}

.product-image-wrap .catalog-photo-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 160ms ease;
}

.product-image-wrap::after {
  display: none !important;
}

.product-image-wrap:hover::after,
.listing-card:hover .product-image-wrap::after,
.product-card:hover .product-image-wrap::after,
.department-card:hover .product-image-wrap::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--print-rotate)) scale(1);
}

.product-image-wrap:hover .catalog-photo-hover,
.listing-card:hover .catalog-photo-hover,
.product-card:hover .catalog-photo-hover,
.department-card:hover .catalog-photo-hover {
  opacity: 0;
}

.product-image-wrap[data-category="t-shirts"]::after {
  display: none;
}

.product-image-wrap[data-category="t-shirts"]:hover .catalog-photo-hover,
.listing-card:hover .product-image-wrap[data-category="t-shirts"] .catalog-photo-hover,
.product-card:hover .product-image-wrap[data-category="t-shirts"] .catalog-photo-hover,
.department-card:hover .product-image-wrap[data-category="t-shirts"] .catalog-photo-hover {
  opacity: 1;
}

.product-image-wrap[data-category="t-shirts"],
.product-image-wrap[data-category="sustainable"],
.product-image-wrap[data-category="offers"] {
  --print-left: 50%;
  --print-top: 43%;
  --print-size: 26%;
}

.product-image-wrap[data-category="polo-shirts"] {
  --print-left: 58%;
  --print-top: 35%;
  --print-size: 15%;
}

.product-image-wrap[data-category="hoodies"] {
  --print-left: 50%;
  --print-top: 42%;
  --print-size: 25%;
}

.product-image-wrap[data-category="sweatshirts"] {
  --print-left: 50%;
  --print-top: 42%;
  --print-size: 26%;
}

.product-image-wrap[data-category="jackets"] {
  --print-left: 57%;
  --print-top: 34%;
  --print-size: 16%;
}

.product-image-wrap[data-category="workwear"] {
  --print-left: 57%;
  --print-top: 35%;
  --print-size: 16%;
}

.product-image-wrap[data-category="headwear"] {
  --print-left: 51%;
  --print-top: 36%;
  --print-size: 23%;
  --print-rotate: -2deg;
}

.product-image-wrap[data-category="accessories"] {
  --print-left: 50%;
  --print-top: 54%;
  --print-size: 23%;
}

.product-image .product-figure {
  margin: 0;
}

.product-image .generated-thumb {
  width: 100%;
  min-height: 170px;
}

.product-image .catalog-photo {
  height: 220px;
  min-height: 0;
  max-height: none;
}

.department-card .department-thumb {
  height: 300px;
  min-height: 300px;
  margin-bottom: 8px;
  object-fit: contain;
}

.department-card:hover .catalog-photo-hover {
  opacity: 1 !important;
}

.department-card .product-image-wrap::after {
  display: none !important;
}

.product-image small {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 9px;
  border-radius: 99px;
  background: var(--white);
  color: var(--pink);
  font-weight: 800;
}

.product-card .tag {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  font-weight: 800;
}

.product-meta span {
  color: var(--black);
}

.product-meta a {
  color: var(--pink);
}

.process-section {
  background: var(--white);
}

.process-section .section-head {
  max-width: 900px;
  margin: 0 auto clamp(42px, 6vw, 72px);
}

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

.process-steps article {
  min-height: 285px;
  padding: 28px clamp(20px, 2.4vw, 38px);
  text-align: center;
  border-right: 1px solid rgba(17, 17, 17, 0.09);
}

.process-steps article:last-child {
  border-right: 0;
}

.process-steps span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: var(--gradient);
  color: var(--white);
  font: 900 1.15rem/1 var(--font-heading);
  box-shadow: 0 16px 28px rgba(232, 53, 122, 0.18);
}

.process-steps h3 {
  max-width: 220px;
  margin: 0 auto 16px;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.12;
}

.process-steps p {
  max-width: 270px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.process-statement {
  max-width: 780px;
  margin: clamp(48px, 6vw, 76px) auto 0;
  text-align: center;
  color: var(--orange);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.1;
}

.why-story {
  background: var(--white);
  overflow: hidden;
}

.why-story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.why-story-copy {
  max-width: 610px;
}

.why-story-copy h2 {
  font-size: clamp(2.2rem, 3.25vw, 4.05rem);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.why-story-copy h2 span {
  color: var(--orange);
}

.why-story-copy h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--gradient);
}

.why-story-copy p {
  color: #4f4f4f;
  font-size: 1.05rem;
  line-height: 1.75;
}

.why-story-copy .btn {
  margin-top: 24px;
}

.why-story-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  min-height: 560px;
}

.why-story-media::before {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -14%;
  width: 58%;
  aspect-ratio: 1;
  border: 8px solid rgba(249, 115, 22, 0.62);
  border-radius: 38px;
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
}

.why-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.12);
}

.why-shot-large {
  grid-row: span 2;
}

.newsletter-band {
  background: var(--black);
  color: var(--white);
}

.newsletter-inner {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.newsletter-inner h2,
.newsletter-inner p {
  color: var(--white);
}

.mini-form {
  display: flex;
  width: min(460px, 100%);
  gap: 10px;
}

.mini-form input {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-button);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.quote-card,
.value-card,
.team-card,
.package-card,
.whatsapp-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.icon,
.whatsapp-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  font: 800 1.25rem/1 var(--font-heading);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.service-card h3,
.value-card h3 {
  margin-bottom: 12px;
}

.service-card a {
  margin-top: auto;
  color: var(--black);
  font-weight: 800;
}

.service-card a:hover,
.center-link a:hover {
  color: var(--pink);
}

.service-card,
.quote-card,
.value-card,
.team-card,
.package-card,
.tint-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.quote-card:hover,
.value-card:hover,
.team-card:hover,
.package-card:hover,
.tint-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.split-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-row .icon {
  margin: 0;
}

.feature-row h3 {
  margin-bottom: 8px;
}

.section-intro {
  max-width: 820px;
  margin: 16px auto 0;
  font-size: 1.08rem;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--black);
  font-weight: 900;
}

.read-more-link span {
  color: var(--orange);
  transition: transform 160ms ease;
}

.read-more-link:hover {
  color: var(--pink);
}

.read-more-link:hover span {
  transform: translateX(4px);
}

.reasons-section {
  background: #f5f5f5;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(42px, 6vw, 70px);
}

.reason-card {
  min-height: 280px;
  padding: 26px clamp(18px, 2vw, 34px);
  text-align: center;
  border-right: 1px solid rgba(17, 17, 17, 0.09);
}

.reason-card:last-child {
  border-right: 0;
}

.reason-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(230, 0, 141, 0.18);
}

.reason-card h3 {
  max-width: 230px;
  margin: 0 auto 16px;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.08;
}

.reason-card p {
  max-width: 280px;
  margin: 0 auto;
  color: #666;
  font-size: 0.98rem;
  line-height: 1.62;
}

.reasons-statement {
  max-width: 820px;
  margin: clamp(48px, 7vw, 76px) auto 0;
  color: var(--orange);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  text-transform: none;
}

.brand-strip-section {
  padding: 0 0 54px;
  background: var(--white);
}

.brand-strip {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 36px) 0;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff 0%, #fffafc 100%);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.brand-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gradient);
}

.brand-strip h2 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo-row {
  display: grid;
  margin-bottom: 0;
}

.brand-logo-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: brandLogoSlide 26s linear infinite;
}

.brand-wordmark {
  display: inline-flex;
  flex: 0 0 146px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 8px;
  background: #ffffff;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.1vw, 1.08rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.05);
}

.brand-wordmark.henbury {
  background: linear-gradient(135deg, #2b175e, #4c2d8d);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-wordmark.justhoods {
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.brand-wordmark.ascolours {
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 0.78;
  text-transform: lowercase;
}

.brand-wordmark.nimbus {
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-wordmark.tridri {
  border: 3px solid #008c8f;
  background: #1f1f1f;
  color: #18b6b9;
  letter-spacing: 0.04em;
}

.brand-wordmark.fruit {
  font-family: Georgia, serif;
  font-size: clamp(0.7rem, 0.95vw, 0.92rem);
}

@keyframes brandLogoSlide {
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.brands-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.brands-faq {
  position: sticky;
  top: 138px;
  padding: 20px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.brands-faq h2 {
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brands-faq a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  color: #078338;
  font-size: 0.9rem;
  font-weight: 700;
}

.brands-directory h1 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(82px, 1fr));
  gap: 24px 18px;
  align-items: start;
}

.brand-directory-item {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #078338;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.brand-directory-logo {
  display: grid;
  width: 82px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 0.95;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

.brand-directory-logo img {
  display: block;
  width: 76px;
  max-width: 82%;
  height: 34px;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.04);
}

.brand-logo-svg {
  display: block;
  width: 92%;
  height: 82%;
}

.brand-logo-svg text {
  fill: currentColor;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  dominant-baseline: middle;
}

.brand-directory-logo.dark .brand-logo-svg text {
  fill: var(--white);
}

.brand-directory-logo.green .brand-logo-svg text {
  fill: #078338;
}

.brand-directory-logo.pink .brand-logo-svg text {
  fill: var(--pink);
}

.brand-directory-logo.dark {
  background: #171717;
  color: var(--white);
}

.brand-directory-logo.green {
  background: #eafaf0;
  color: #078338;
}

.brand-directory-logo.pink {
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.14), rgba(255, 176, 0, 0.18));
}

.package-teaser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tint-card {
  padding: 34px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(232, 53, 122, 0.08), rgba(249, 115, 22, 0.12));
}

.tint-card p {
  margin: 12px 0 24px;
}

.tint-card span,
.center-link a {
  font-weight: 800;
}

.center-link {
  text-align: center;
  margin-top: 28px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  padding: 30px;
}

.quote-mark {
  display: block;
  font: 800 4rem/0.7 var(--font-heading);
  color: var(--pink);
}

.quote-card p {
  font-style: italic;
  margin: 18px 0;
  color: #333;
}

.quote-card strong,
.quote-card small {
  display: block;
}

.quote-card small {
  color: var(--muted);
}

.stars {
  margin-top: 12px;
  color: var(--pink);
  letter-spacing: 0.08em;
}

.cta-banner,
.stats-bar {
  background: var(--gradient);
  color: var(--white);
}

.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.cta-banner::before {
  width: 260px;
  height: 260px;
  right: 8%;
  top: -90px;
}

.cta-banner::after {
  width: 180px;
  height: 180px;
  left: 9%;
  bottom: -76px;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.cta-banner h2,
.stats-bar span,
.stats-bar strong {
  color: var(--white);
}

.cta-banner h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.92;
}

.cta-banner p {
  max-width: 580px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.cta-banner .btn {
  padding: 18px 40px;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-hero {
  padding-top: 150px;
}

.bundle-hero {
  padding-top: 96px;
  padding-bottom: 56px;
}

.bundle-hero .container,
.packages-section .container,
.bundle-detail-page .container {
  width: min(var(--site-max), calc(100% - (var(--site-gutter) * 2)));
}

.bundle-hero .page-intro {
  max-width: 760px;
}

.service-rows .container {
  display: grid;
  gap: 30px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  min-width: 0;
}

.service-row:nth-child(even) .service-block {
  order: 2;
}

.service-block {
  min-width: 0;
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--gradient);
  color: var(--white);
  overflow: hidden;
}

.service-block span {
  font: 700 clamp(2.1rem, 4.3vw, 4.9rem)/0.95 var(--font-heading);
  text-transform: uppercase;
  text-align: center;
}

.services-page .service-row {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
}

.services-page .service-row:nth-child(even) .service-block {
  order: 0;
}

.service-visual {
  position: relative;
  min-height: 430px;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
}

.service-visual::before,
.service-visual::after {
  display: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
  transform: none;
}

.service-visual span {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  color: var(--white);
  text-align: left;
  text-shadow: 0 12px 28px rgba(17, 17, 17, 0.20);
}

.service-visual span::before {
  content: "";
  position: absolute;
  inset: -18px -22px;
  z-index: -1;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(4px);
}

.services-page .service-copy {
  padding: clamp(34px, 5vw, 58px);
}

.services-page .service-copy .eyebrow {
  margin-bottom: 12px;
}

.services-page .service-copy p:first-of-type {
  font-size: 1.1rem;
  line-height: 1.78;
}

.services-page .service-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 28px;
}

.service-copy {
  min-width: 0;
  padding: 40px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1;
}

.service-copy p {
  margin: 16px 0;
  color: #5f5f5f;
  font-size: 1.02rem;
}

.service-copy ul {
  margin: 0 0 24px;
  list-style-position: outside;
  padding-left: 20px;
}

.service-copy li {
  margin: 8px 0;
  color: #666;
}

.tabs {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  scrollbar-width: thin;
}

.tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--grey);
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  background: var(--gradient);
  color: var(--white);
}

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

.tab-panel.active {
  display: grid;
}

.bundle-panel,
.bundle-panel.active {
  grid-template-columns: none;
}

.bundle-panel.active {
  display: block;
}

.bundle-panel-head {
  max-width: 820px;
  margin: 0 0 26px;
}

.bundle-panel-head h2 {
  margin: 8px 0 8px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.bundle-panel-head p:last-child {
  color: var(--muted);
  max-width: 720px;
}

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

.package-listing-grid {
  gap: clamp(18px, 2vw, 30px);
}

.bundle-card {
  position: relative;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.bundle-card>a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  color: inherit;
}

.bundle-card-media {
  min-height: 245px;
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 12px;
  align-items: stretch;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.08), rgba(255, 176, 0, 0.16));
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.package-listing-card>a {
  padding: 14px;
}

.package-listing-card .bundle-card-media {
  aspect-ratio: 1;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #12bfc4;
}

.bundle-card-media>img,
.bundle-stack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: var(--white);
}

.package-listing-card .bundle-card-media>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  background: transparent;
  transition: transform 220ms ease, filter 220ms ease;
}

.package-listing-card:hover .bundle-card-media>img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.deal-art {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #13c0c4 0%, #10b6c7 58%, #04aeb7 100%);
  color: var(--white);
  isolation: isolate;
}

.deal-art::before {
  content: "P";
  position: absolute;
  right: 17%;
  top: 28%;
  z-index: -1;
  color: rgba(17, 17, 17, 0.08);
  font: 900 9rem/1 var(--font-heading);
  transform: rotate(-14deg);
}

.deal-copy {
  position: absolute;
  left: 18px;
  top: 20px;
  z-index: 2;
  text-transform: uppercase;
}

.deal-copy span,
.deal-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.deal-copy span {
  font-size: clamp(1.35rem, 3vw, 2.05rem);
}

.deal-copy strong {
  font-size: clamp(1.95rem, 4.8vw, 3.2rem);
}

.deal-copy small {
  display: block;
  max-width: 130px;
  margin-top: 96px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
}

.deal-price {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 4;
  width: 76px;
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 0 18px 0 48px;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
  transform: rotate(15deg);
  text-align: center;
}

.deal-price del {
  position: absolute;
  left: -48px;
  top: 12px;
  color: var(--white);
  font-weight: 900;
  text-decoration-color: #e6008d;
  text-decoration-thickness: 4px;
  transform: rotate(-15deg);
}

.deal-price b {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1;
}

.deal-dots {
  position: absolute;
  left: 18px;
  top: 116px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 16px);
  gap: 8px;
}

.deal-dots i {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.deal-dots i:nth-child(2) {
  background: #f4f4f4;
}

.deal-dots i:nth-child(3) {
  background: #e8357a;
}

.deal-dots i:nth-child(4) {
  background: #f97316;
}

.deal-dots i:nth-child(5) {
  background: #1f6feb;
}

.deal-dots i:nth-child(6) {
  background: #7e57c2;
}

.deal-art img {
  position: absolute;
  right: 12px;
  bottom: 18px;
  z-index: 2;
  width: 68%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(17, 17, 17, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
}

.package-listing-card:hover .deal-art img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 24px 32px rgba(17, 17, 17, 0.22));
}

.deal-art em {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 3;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.bundle-stack {
  display: grid;
  gap: 10px;
}

.bundle-card .tag {
  margin: 18px 0 8px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.bundle-card h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.bundle-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.package-listing-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.bundle-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--black);
}

.bundle-card li {
  margin: 5px 0;
}

.bundle-card .btn {
  margin-top: auto;
  justify-content: center;
}

.bundle-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.bundle-card-bottom strong {
  color: var(--black);
  font-weight: 900;
}

.bundle-card-bottom span {
  color: var(--pink);
  font-weight: 900;
}

.bundle-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 900;
  font-size: 0.78rem;
  box-shadow: 0 12px 30px rgba(230, 0, 141, 0.22);
}

.package-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

.package-card.popular {
  padding-top: 58px;
}

.package-card.popular>span:not(.btn) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.package-card .tag {
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.package-card h2 {
  font-size: 2.1rem;
  margin: 10px 0;
}

.package-card ul {
  margin: 20px 0 26px;
}

.package-image-grid {
  align-items: stretch;
}

.package-image-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.package-image-card.popular {
  padding-top: 58px;
}

.package-image-card.popular>.popular-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

.package-image-wrap {
  display: block;
  height: 270px;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--gradient);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.package-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.package-image-card:hover .package-image-wrap img {
  transform: scale(1.045) rotate(-1deg);
}

.package-image-card p:not(.tag) {
  margin: 0 0 4px;
}

.package-image-card .btn {
  width: fit-content;
  margin-top: auto;
}

.custom-package p {
  max-width: 610px;
  margin: 18px auto 26px;
}

.bundle-detail-page {
  padding-top: 150px;
}

.bundle-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.bundle-detail-media {
  position: sticky;
  top: 126px;
  min-width: 0;
}

.bundle-detail-art {
  min-height: 620px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.bundle-detail-art .deal-copy {
  left: 34px;
  top: 34px;
}

.bundle-detail-art .deal-copy span {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.bundle-detail-art .deal-copy strong {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.bundle-detail-art .deal-copy small {
  max-width: 210px;
  margin-top: 150px;
  font-size: 1.08rem;
}

.bundle-detail-art .deal-price {
  width: 118px;
  min-height: 118px;
  right: 28px;
  top: 26px;
}

.bundle-detail-art .deal-price del {
  left: -72px;
  top: 18px;
  font-size: 1.2rem;
}

.bundle-detail-art .deal-price b {
  font-size: 1.55rem;
}

.bundle-detail-art img {
  right: 22px;
  bottom: 32px;
  width: 72%;
  height: 70%;
}

.bundle-detail-summary h1 {
  margin: 10px 0 18px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.9;
}

.bundle-detail-intro {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.2rem;
}

.bundle-price-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  padding: 22px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
}

.bundle-price-panel span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.bundle-price-panel strong {
  font: 900 2.4rem/1 var(--font-heading);
}

.bundle-price-panel del {
  color: rgba(255, 255, 255, 0.55);
  text-decoration-color: var(--pink);
  text-decoration-thickness: 4px;
}

.bundle-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.bundle-detail-tags a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--grey);
  color: var(--black);
  font-weight: 900;
}

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

.bundle-detail-grid article,
.bundle-step-list {
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.bundle-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-weight: 900;
}

.bundle-detail-grid p {
  margin: 0;
  color: var(--muted);
}

.bundle-step-list {
  margin: 20px 0 24px;
}

.bundle-step-list h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.bundle-step-list ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.bundle-step-list li+li {
  margin-top: 8px;
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}

.story-statement h2 {
  position: sticky;
  top: 120px;
}

.story-copy p+p {
  margin-top: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.team-card {
  padding: 28px;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.avatar {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font: 800 1.2rem/1 var(--font-heading);
}

.team-card p {
  font-weight: 800;
  color: var(--pink);
}

.team-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 52px 0;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font: 800 3rem/1 var(--font-heading);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.contact-info h2 {
  margin-bottom: 28px;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-list p {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--grey);
  color: var(--muted);
  overflow-wrap: anywhere;
}

.info-list a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info-list strong {
  display: block;
  color: var(--black);
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-socials {
  margin: 24px 0;
}

.map-placeholder {
  min-height: 240px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(230, 0, 141, 0.08), rgba(255, 176, 0, 0.14)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  color: var(--black);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-placeholder span {
  font: 800 1.4rem/1 var(--font-heading);
  text-transform: uppercase;
}

.map-placeholder small {
  max-width: 430px;
  margin-top: 10px;
  color: #666;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.map-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.full-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  padding: 13px 14px;
  font: inherit;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-height: 0;
  margin-right: 8px;
  accent-color: var(--pink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232, 53, 122, 0.12);
}

.field-error {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 4px rgba(217, 48, 37, 0.1) !important;
}

.form-status {
  min-height: 24px;
  color: var(--pink);
  font-weight: 800;
}

.whatsapp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.whatsapp-btn {
  background: #25d366;
  color: var(--white);
}

.site-footer {
  background: #080808;
  color: rgba(255, 255, 255, 0.78);
}

.footer-line {
  height: 4px;
  background: var(--gradient);
}

.footer-reference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 0.9fr minmax(250px, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: 48px 0 40px;
}

.footer-column,
.footer-faq-card {
  min-width: 0;
}

.footer-reference h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a,
.footer-faq-card a {
  display: block;
  width: fit-content;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
  line-height: 1.25;
}

.footer-column a:hover,
.footer-faq-card a:hover {
  color: var(--pink);
}

.footer-contact-column p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.25;
}

.footer-contact-column strong {
  color: var(--orange);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-payments span {
  flex: 0 0 100%;
  margin-bottom: 6px;
}

.footer-payments strong {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.8rem;
  box-shadow: 0 1px 5px rgba(17, 17, 17, 0.08);
}

.footer-badges {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-badges span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-faq-card {
  padding: 26px 26px 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121212;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.footer-faq-card h3 {
  margin-bottom: 18px;
}

.footer-faq-card a {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  border-radius: 999px;
  background: #e8e8e8;
  color: var(--muted) !important;
  font-weight: 800;
}

.socials a:hover {
  background: var(--gradient);
  color: var(--white) !important;
}

.footer-subbar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.footer-subbar-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: 126px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
}

.breadcrumbs {
  margin-bottom: 18px;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumbs a {
  color: var(--pink);
  font-weight: 800;
}

.breadcrumbs span,
.breadcrumbs a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.catalog-page.section-pad {
  padding-top: 58px;
}

.product-page.section-pad {
  padding-top: 58px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

/* ── Sidebar Filter Panel ────────────────────────────── */

.filters-panel {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 0;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
  scrollbar-width: thin;
  scrollbar-color: rgba(236, 72, 153, 0.3) transparent;
}

.filters-panel::-webkit-scrollbar { width: 5px; }
.filters-panel::-webkit-scrollbar-track { background: transparent; }
.filters-panel::-webkit-scrollbar-thumb { background: rgba(236, 72, 153, 0.25); border-radius: 99px; }

.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 16px 16px 0 0;
}

.filter-sidebar-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  font-family: var(--font-heading);
}

.filter-clear-all-btn {
  background: none;
  border: none;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s ease;
  font-family: inherit;
}

.filter-clear-all-btn:hover {
  background: rgba(236, 72, 153, 0.08);
}

/* Active filter pills */
.filter-active-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.filter-active-pills.has-pills {
  max-height: 200px;
  padding: 12px 22px;
}

.filter-active-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(255, 176, 0, 0.08));
  border: 1px solid rgba(236, 72, 153, 0.2);
  color: #9d174d;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.filter-active-pill:hover {
  background: rgba(236, 72, 153, 0.18);
  border-color: rgba(236, 72, 153, 0.4);
}

.filter-active-pill .pill-x {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.6;
}

/* ── Filter Accordion Sections ──────────────────────── */

.filter-section {
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.filter-section-header:hover {
  background: rgba(17, 17, 17, 0.02);
}

.filter-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
}

.filter-section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.filter-section-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.filter-section.open .filter-section-chevron {
  transform: rotate(225deg);
}

.filter-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filter-section.open .filter-section-body {
  max-height: 600px;
}

.filter-section-options {
  padding: 0 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-section-clear {
  display: none;
  background: none;
  border: none;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  margin-left: auto;
}

.filter-section.has-checked .filter-section-clear {
  display: inline;
}

/* ── Filter Checkbox Labels ─────────────────────────── */

.filter-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease;
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
}

.filter-option-label:hover {
  background: rgba(236, 72, 153, 0.05);
}

.filter-option-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.filter-option-label input[type="checkbox"]:checked {
  background: var(--pink);
  border-color: var(--pink);
}

.filter-option-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-option-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-option-count {
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 600;
  flex-shrink: 0;
}
.filter-option-label.is-disabled{opacity:.42;cursor:not-allowed}.quick-filter-chip img{object-fit:contain;background:linear-gradient(145deg,#f7f3f8,#fff);object-position:center}.quick-filter-chip.active img{transform:scale(1.04)}

/* ── Colour Swatches in Filter ──────────────────────── */

.filter-colour-grid {
  padding: 0 22px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-colour-swatch {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  background: none;
  font-size: 0;
}

.filter-colour-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.filter-colour-swatch.active {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3);
  transform: scale(1.1);
}

.filter-colour-swatch.active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.filter-colour-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px dashed #d1d5db;
  background: #f9fafb;
  color: #6b7280;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  font-family: inherit;
}

.filter-colour-more:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* ── Price Range Slider ─────────────────────────────── */

/* ── Modern Price Component Styling ───────────────────── */

.filter-price-wrapper {
  padding: 4px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-presets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.price-preset-chip {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.price-preset-chip:hover,
.price-preset-chip.active {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(255, 176, 0, 0.08));
  color: #9d174d;
}

.price-inputs-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-input-box {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #6b7280;
  pointer-events: none;
}

.price-input-box input[type="number"] {
  width: 100%;
  padding: 8px 8px 8px 24px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -moz-appearance: textfield;
}

.price-input-box input[type="number"]::-webkit-outer-spin-button,
.price-input-box input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-input-box input[type="number"]:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

.price-separator {
  color: #9ca3af;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Mobile Filter Toggle Button ────────────────────── */

.filter-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.filter-mobile-toggle:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.listing-toolbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── Mobile Filter Drawer ───────────────────────────── */

.filter-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.filter-drawer-backdrop.active {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {
  .filters-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 85vw);
    max-height: 100vh;
    z-index: 1000;
    border-radius: 0 16px 16px 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
  }

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

  .filter-mobile-toggle {
    display: inline-flex;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .listing-grid {
    grid-template-columns: 1fr !important;
  }
}

.quick-filter-row {
  max-width: 100%;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}

.quick-filter-chip {
  position: relative;
  min-width: 104px;
  min-height: 110px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  flex-shrink: 0;
  text-align: center;
}

.quick-filter-chip:hover,
.quick-filter-chip.active {
  transform: translateY(-2px);
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(255, 176, 0, 0.12));
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.15);
}

.quick-filter-chip img {
  width: 54px;
  height: 54px;
  display: block;
  margin: 0 auto 6px;
  object-fit: contain;
  border-radius: 50%;
  background: #f3f4f6;
}

.quick-filter-chip span {
  display: block;
  line-height: 1.1;
  font-size: 0.82rem;
}

.next-day-filter {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 13px 18px;
  border: 1px solid rgba(230, 0, 141, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.06), rgba(255, 176, 0, 0.09));
  font-weight: 900;
}

.category-banner {
  min-width: 0;
  min-height: 210px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.08), rgba(255, 176, 0, 0.14));
}

.category-banner>div,
.category-banner p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-banner .product-figure,
.category-banner .category-generated-thumb,
.category-banner .category-catalog-photo {
  width: 130px;
  height: 150px;
  aspect-ratio: auto;
  min-height: 150px;
  margin: 0 auto;
}

.category-banner h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
  overflow-wrap: normal;
  word-break: normal;
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  color: var(--muted);
}

.listing-toolbar strong {
  color: var(--black);
}

.listing-toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
}

.listing-toolbar select {
  width: min(240px, 55vw);
  padding: 10px 14px;
}

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

.listing-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.listing-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.listing-card .product-image {
  position: relative;
  margin: 0;
  padding: 20px;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
}

.listing-card .product-image small {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.listing-card .product-image .quick-view-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.listing-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.listing-card .product-image-wrap {
  align-self: stretch;
  height: 100%;
}

.listing-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 6px;
}

.listing-card .card-category {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.listing-card h3 {
  font-size: 0.95rem;
  line-height: 1.15;
  margin: 0;
  color: var(--black);
}

.listing-card .card-colours {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.listing-card .card-brand-code {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.listing-card .card-brand-code span {
  color: var(--black);
}

.listing-card .card-price {
  display: block;
  margin-top: auto;
  padding-top: 8px;
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
}

.listing-card .card-price small {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.listing-card .card-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.listing-card .card-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,17,17,0.1);
  flex-shrink: 0;
}

.listing-card .card-desc {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
}

.listing-card .card-add-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: var(--radius-button);
  border: 0;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  text-align: center;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.listing-card .card-add-btn:hover {
  opacity: 0.88;
}

.empty-results {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 60px);
}

.product-gallery,
.product-summary,
.product-main-image,
.product-info-panel,
.thumb-row {
  min-width: 0;
  max-width: 100%;
}

.product-title-row h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.product-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: block;
}

.product-main-image .product-figure,
.product-main-image .generated-thumb-large,
.product-main-image .product-catalog-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  display: block;
}

.product-catalog-photo-hover {
  position: absolute;
  opacity: 0;
  transition: opacity 160ms ease;
}

.product-main-image:hover .product-catalog-photo-hover {
  opacity: 1;
}

.product-store-detail {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.brand-stamp {
  color: var(--pink);
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  border: 1.5px solid var(--pink);
  padding: 4px 12px;
  border-radius: 99px;
}

.customisation-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.customisation-strip span {
  color: #6b7280;
  font-weight: 700;
  font-size: 0.88rem;
}

.customisation-strip strong {
  color: #10b981;
  font-size: 0.88rem;
}

.customisation-strip button,
.price-detail-link {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: var(--white);
  color: #374151;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 10px;
  font-size: 0.82rem;
  transition: all 0.2s;
}

.customisation-strip button:hover,
.price-detail-link:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.price-breaks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}

.price-break {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.price-break .label-lbl {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
}

.price-break .price-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 !important;
}

.price-break.active .price-val {
  color: var(--pink, #ec4899);
}

.price-break .discount-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pink, #ec4899);
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
}

.config-panel,
.calculator-panel,
.product-info-panel {
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.config-panel h2 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #374151;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 22px);
  gap: 13px;
  max-width: 100%;
}

.swatch {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.12);
  cursor: pointer;
}

.swatch.active {
  border-color: var(--black);
  transform: scale(1.12);
}

.swatch[style*="#ffffff"],
.swatch[style*="rgb(255, 255, 255)"] {
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.28), 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.colour-filter #listingColourName {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.listing-colour-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, 22px);
  gap: 10px;
  margin-top: 12px;
}

.listing-colour {
  cursor: pointer;
}

.panel-heading,
.selected-colour-row,
.matrix-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.selected-colour-row {
  justify-content: flex-start;
  margin: 18px 0;
}

.selected-colour-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.15);
}

#clearSizes {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.size-matrix {
  display: grid;
  grid-template-columns: repeat(8, minmax(48px, 1fr));
  gap: 10px;
}

.size-matrix label {
  display: grid;
  gap: 8px;
  text-align: center;
  font-weight: 800;
}

.size-matrix input {
  min-height: 34px;
  padding: 4px;
  border-radius: 999px;
  text-align: center;
  background: var(--white);
}

.matrix-total {
  justify-content: flex-start;
  margin-top: 14px;
  font-weight: 800;
}

.matrix-total strong {
  min-width: 84px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #444;
  color: var(--white);
  text-align: center;
}

.size-guide {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
}

.add-customisation {
  margin: 16px 0;
  color: var(--green);
  border-color: var(--green);
}

.selected-customisations {
  display: grid;
  gap: 8px;
}

.customisation-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.customisation-line button {
  border: 0;
  background: transparent;
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.total-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
  font-size: 1.2rem;
}

.total-row strong {
  color: var(--green);
  font-size: 1.7rem;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: start;
}

.product-thumbs button {
  width: 78px;
  height: 98px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: block;
}

.product-thumbs button.active {
  border: 2.5px solid var(--pink);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.product-tab {
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 0 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.product-tab.active {
  color: var(--green);
  border-color: var(--green);
}

.product-tab-panel {
  display: none;
  color: var(--muted);
}

.product-tab-panel.active {
  display: block;
}

.product-tab-panel ul {
  margin: 10px 0 0 18px;
}

.product-tab-panel,
.product-tab-panel li,
.product-info-panel {
  overflow-wrap: anywhere;
}

.payment-placeholder,
.auth-card,
.cart-summary,
.cart-line {
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.payment-placeholder {
  margin-top: 18px;
  color: var(--muted);
}

.auth-layout,
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

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

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

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--grey);
}

.auth-switch button {
  border: 0;
  min-height: 40px;
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.auth-switch button.active {
  background: var(--gradient);
  color: var(--white);
}

.auth-card[data-mode="login"] .register-only,
.auth-card[data-mode="login"] #accountName {
  display: none;
}

.account-profile {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.social-login {
  width: 100%;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
}

.cart-line button {
  border: 0;
  background: transparent;
  color: var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 14px;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-line-detailed {
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
}

.cart-line-detailed img {
  width: 72px;
  height: 86px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.cart-line-detailed>div {
  display: grid;
  gap: 5px;
}

.cart-line-detailed span,
.cart-logo-detail {
  color: var(--muted);
  font-weight: 700;
}

.cart-logo-detail {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f2f5f3;
}

.cart-logo-detail b {
  color: var(--black);
}

.link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  font: 800 0.95rem/1.2 var(--font-body);
  text-decoration: underline;
  cursor: pointer;
}

.basket-modal,
.logo-wizard-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.62);
  z-index: 2200;
}

.basket-modal.open,
.logo-wizard-modal.open {
  display: grid;
}

.basket-panel,
.logo-wizard {
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: 28px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.24);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--grey);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.success-line {
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.success-line::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
}

.basket-product {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.basket-product img,
.side-product img {
  width: 76px;
  height: 88px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.basket-product h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.basket-product p {
  color: var(--muted);
}

.basket-product strong span {
  color: var(--muted);
  font-weight: 700;
}

.basket-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 16px;
}

.logo-wizard {
  width: min(var(--site-max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  background: #f5f5f5;
}

.logo-wizard-main,
.logo-wizard-side {
  min-width: 0;
}

.returning-customer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: center;
  margin-bottom: 30px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
}

.returning-customer span {
  color: rgba(255, 255, 255, 0.74);
}

.returning-customer .btn {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.wizard-step {
  display: none;
}

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

.wizard-step h3 {
  margin: 24px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.wizard-note {
  margin-bottom: 16px;
  color: var(--muted);
}

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

.position-card,
.application-options button {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.position-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 12px;
  text-align: center;
  border-radius: 12px;
  background: var(--white);
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
}

.position-card.selected,
.application-options button.selected {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(230, 0, 141, 0.2);
}

.position-shirt {
  width: 100%;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  padding: 2px;
}

.position-shirt img,
.position-card img {
  max-width: 100%;
  height: 100%;
  max-height: 145px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.position-card small {
  color: var(--muted);
  font-size: 0.75rem;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  font-weight: 900;
}

.upload-card,
.complete-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 12px;
  background: #ededed;
  text-align: center;
}

.upload-card textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
}

.option-row {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: var(--white);
  text-align: left;
}

.application-options {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 12px;
  background: #ededed;
}

.application-options button {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  text-align: left;
}

.application-options span {
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 900;
}

.application-options small {
  color: var(--muted);
}

.logo-wizard-side {
  padding: 22px;
  border-radius: 14px;
  background: var(--white);
}

.side-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 16px 0;
}

.confidence-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.confidence-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.confidence-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
}

.logo-page {
  padding-top: 170px;
  background:
    radial-gradient(circle at 10% 4%, rgba(230, 0, 141, 0.10), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(255, 176, 0, 0.12), transparent 28%),
    #fafafa;
}

.logo-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.logo-page-card,
.logo-page-summary {
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.logo-page-card {
  overflow: hidden;
}

.logo-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.logo-progress button {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 82px;
  border: 0;
  background: #f8f8f8;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.logo-progress span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
}

.logo-progress button.active {
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.10), rgba(255, 176, 0, 0.16));
  color: var(--black);
}

.logo-progress button.done span,
.logo-progress button.active span {
  background: var(--gradient);
  color: var(--white);
}

.logo-page-body {
  padding: clamp(24px, 4vw, 48px);
}

.logo-page-body h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.logo-page-intro {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.logo-page-positions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-page-options {
  background: #f6f6f6;
}

.method-options {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 16px;
  background: #f1f1f1;
}

.method-options button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}

.method-options button.selected {
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(0, 153, 68, 0.16);
}

.method-options button.selected::after {
  content: "✓";
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.method-options button>span:last-child {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 24px;
}

.method-options strong {
  color: var(--black);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.method-options small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.method-preview {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.embroidery-preview {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(135deg, #39505b, #19242d);
  background-size: 9px 9px, 9px 9px, auto;
  letter-spacing: 0.04em;
}

.print-preview {
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #111111, #2a2a2a 50%, #e6008d 160%);
  letter-spacing: 0.08em;
}

.logo-upload-zone,
.logo-config-card,
.logo-choice-list {
  display: grid;
  gap: 14px;
  border-radius: 16px;
}

.logo-upload-zone,
.logo-config-card {
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(135deg, #f3f3f3, #fff6ef);
  text-align: center;
  justify-items: center;
}

.logo-choice-list {
  margin-top: 18px;
}

.logo-choice-list label,
.logo-config-card label {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: left;
  font-weight: 800;
}

.logo-choice-list label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.logo-config-card textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
}

.logo-review-card {
  align-items: start;
  justify-items: start;
  text-align: left;
}

.logo-page-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #fbfbfb;
}

.logo-page-actions .btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.logo-page-summary {
  position: sticky;
  top: 150px;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.summary-product-new {
  position: relative;
}

.summary-product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.summary-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.summary-product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(17,17,17,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.summary-product-info strong {
  color: #fff;
  font-size: 0.95rem;
}

.summary-product-info span {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.summary-data {
  padding: 16px 20px;
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,0.06);
  font-size: 0.88rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--muted);
  font-weight: 700;
}

.summary-row strong {
  font-weight: 900;
  color: var(--black);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.summary-cost-badge {
  margin: 16px 20px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-cost-badge span {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 800;
}

.summary-cost-badge strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.summary-proof-note {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px 18px;
  font-size: 0.8rem;
  color: #16a34a;
  font-weight: 800;
  margin: 0;
}

/* ── Wizard Step Badge & Header ──────────────────────────────── */
.wiz-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.12), rgba(255, 176, 0, 0.15));
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wiz-step-header {
  margin-bottom: 32px;
}

.wiz-step-header h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

/* ── Logo Progress (6 steps) ──────────────────────────────────── */
.logo-progress {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

/* ── Method Cards (Step 2) ────────────────────────────────────── */
.method-options-new {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.method-card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 6px 28px rgba(17,17,17,0.07);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  padding: 0;
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(17,17,17,0.12);
}

.method-card.selected {
  border-color: var(--pink);
  box-shadow: 0 10px 40px rgba(230, 0, 141, 0.2);
}

.method-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.method-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.method-card:hover .method-card-img img {
  transform: scale(1.04);
}

.method-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.method-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.25);
}

.method-card.selected .method-card-overlay {
  background: linear-gradient(to top, rgba(230, 0, 141, 0.45) 0%, transparent 55%);
}

.method-card-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.method-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.method-card-title strong {
  font-size: 1.2rem;
  color: var(--black);
}

.method-card-badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.method-badge-emb {
  background: rgba(0, 153, 68, 0.12);
  color: var(--green);
}

.method-badge-print {
  background: rgba(230, 0, 141, 0.1);
  color: var(--pink);
}

.method-card-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.method-card-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.method-card-perks li {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--black);
}

/* ── Artwork Options (Step 3) ─────────────────────────────────── */
.artwork-options-grid {
  display: grid;
  gap: 14px;
}

.artwork-option {
  display: block;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.artwork-option input[type="radio"] {
  display: none;
}

.artwork-option.selected {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(230, 0, 141, 0.12);
}

.artwork-option-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.artwork-option-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  flex-shrink: 0;
  color: var(--black);
  transition: background 0.2s;
}

.artwork-option.selected .artwork-option-icon {
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.1), rgba(255, 176, 0, 0.12));
  color: var(--pink);
}

.artwork-option-inner div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.artwork-option-inner strong {
  font-size: 1rem;
  color: var(--black);
}

.artwork-option-inner span {
  font-size: 0.86rem;
  color: var(--muted);
}

.artwork-upload-zone {
  margin: 0 20px 18px;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8f8f8, #fff5f0);
  border: 1.5px dashed #e0c0d8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.artwork-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.artwork-upload-btn:hover {
  background: var(--pink);
}

.artwork-upload-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.artwork-uploaded {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.artwork-uploaded span {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--black);
}

.artwork-change-btn {
  padding: 4px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.15s;
}

.artwork-change-btn:hover {
  border-color: var(--pink);
}

/* ── Application Type Cards (Step 4) ─────────────────────────── */
.apptype-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.apptype-card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  padding: 0;
  text-align: left;
}

.apptype-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(17,17,17,0.1);
}

.apptype-card.selected {
  border-color: var(--pink);
  box-shadow: 0 8px 30px rgba(230, 0, 141, 0.18);
}

.apptype-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.apptype-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.apptype-card:hover .apptype-card-img img {
  transform: scale(1.05);
}

.apptype-icon-wrap {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(17,17,17,0.15);
}

.apptype-card.selected .apptype-icon-wrap {
  background: var(--pink);
  color: #fff;
}

.apptype-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apptype-card-body strong {
  font-size: 1rem;
  color: var(--black);
}

.apptype-card-body span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Config Step (Step 5) ─────────────────────────────────────── */
.config-step-body {
  display: grid;
  gap: 20px;
}

.config-text-box,
.config-note-box {
  display: grid;
  gap: 10px;
}

.config-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.config-label-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
}

.config-optional {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.85rem;
}

.config-label-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.config-textarea {
  width: 100%;
  min-height: 130px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: #fafafa;
  resize: vertical;
  transition: border-color 0.2s;
}

.config-textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}

.config-file-status {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  border: 2px solid var(--line);
}

.config-file-status.has-file {
  background: linear-gradient(135deg, rgba(22,163,74,0.06), rgba(22,163,74,0.02));
  border-color: rgba(22,163,74,0.3);
}

.config-file-status.no-file {
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(245,158,11,0.02));
  border-color: rgba(245,158,11,0.3);
}

.config-file-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.config-file-icon.success { background: rgba(22,163,74,0.1); }
.config-file-icon.pending { background: rgba(245,158,11,0.1); }

.config-file-status strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.config-file-status p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

/* ── Review Card (Step 6) ─────────────────────────────────────── */
.review-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  border: 2px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}

.review-card-hero {
  position: relative;
  overflow: hidden;
}

.review-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.review-hero-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(17,17,17,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.2);
}

.review-card-details {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.review-row:last-of-type {
  border-bottom: none;
}

.review-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}

.review-value {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--black);
  text-align: right;
}

.review-value.review-pending {
  color: #f59e0b;
}

.review-proof-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(22,163,74,0.07);
  font-size: 0.84rem;
  font-weight: 800;
  color: #16a34a;
  margin-top: auto;
}

.size-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.62);
  z-index: 2000;
}

.size-modal.open {
  display: grid;
}

.size-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.25);
  overflow: auto;
}

.size-modal-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.size-modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.thumb-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: start;
}

.thumb-row span {
  height: 90px;
  border-radius: 12px;
  background: var(--grey);
}

.product-summary .tag {
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 12px 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.product-price {
  font-size: 1.6rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.choice-grid label {
  display: grid;
  gap: 6px;
}

.product-help {
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--grey);
}

.product-help strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.artwork-hero {
  padding: 96px 0 64px;
}

.artwork-hero-grid,
.artwork-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.artwork-hero-image,
.artwork-check-image {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 22px 44px rgba(17, 17, 17, 0.08));
}

.artwork-guide-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.artwork-guide-nav {
  position: sticky;
  top: 160px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.artwork-guide-nav strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.artwork-guide-nav a {
  color: var(--muted);
  font-weight: 800;
}

.artwork-guide-nav a:hover {
  color: var(--pink);
}

.artwork-guide-content {
  display: grid;
  gap: 22px;
}

.guide-block {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.guide-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.guide-block ul {
  margin-top: 16px;
  display: grid;
  gap: 7px;
  list-style-position: outside;
  padding-left: 20px;
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.tracking-card,
.tracking-result {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tracking-card {
  display: grid;
  gap: 16px;
}

.tracking-card h2,
.tracking-summary h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.tracking-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.tracking-result {
  background: linear-gradient(135deg, rgba(230, 0, 141, 0.06), rgba(255, 176, 0, 0.12));
}

.tracking-summary {
  margin-bottom: 30px;
}

.tracking-steps {
  display: grid;
  gap: 18px;
}

.tracking-steps article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.tracking-steps span {
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 999px;
  background: #d7d7d7;
  box-shadow: inset 0 0 0 6px var(--white);
}

.tracking-steps article.complete span,
.tracking-steps article.active span {
  background: var(--gradient);
}

.tracking-steps h3 {
  margin-bottom: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.992);
  transition: opacity 360ms cubic-bezier(0.2, 0, 0.2, 1), transform 360ms cubic-bezier(0.2, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .department-grid,
  .product-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-teaser-grid,
  .testimonial-grid,
  .tab-panel,
  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-grid {
    grid-template-columns: repeat(5, minmax(74px, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  }

  .hero-visual {
    min-height: 520px;
  }

  .nt-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
  }

  .nt-collage {
    --collage-gap: 16px;
    gap: var(--collage-gap);
  }

  .quick-filter-row {
    grid-template-columns: repeat(4, minmax(128px, 1fr));
  }

  .filter-dropdown-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-faq-card {
    padding-bottom: 80px;
  }
}

@media (max-width: 1450px) {
  .site-nav .nav-cta {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .logo-page-shell {
    grid-template-columns: 1fr;
  }

  .logo-page-summary {
    position: static;
  }
}

@media (max-width: 980px) {
  .site-search {
    display: flex;
  }

  .store-topline,
  .store-menu,
  .nav-links,
  .header-actions {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .nav-inner {
    min-height: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 14px;
    padding: 12px 0;
  }

  .brand {
    order: 1;
  }

  .brand-logo {
    width: clamp(118px, 32vw, 152px);
  }

  .header-actions {
    order: 2;
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
    margin-left: auto;
    font-size: clamp(0.78rem, 2.7vw, 0.95rem);
  }

  .site-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }

  .site-search input {
    min-height: 42px;
  }

  .site-search button {
    padding-inline: 16px;
  }

  .nav-links {
    order: 4;
    display: flex;
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: clamp(0.78rem, 2.75vw, 0.95rem);
  }

  .store-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px 4px;
    min-height: 0;
    padding: 9px 0 11px;
    overflow: visible;
  }

  .store-menu-item {
    min-width: 0;
  }

  .store-menu-link {
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    text-align: center;
    font-size: clamp(0.56rem, 2vw, 0.7rem);
    white-space: normal;
    line-height: 1.12;
  }

  .menu-icon {
    width: 28px;
    height: 28px;
    margin-inline: auto;
    font-size: 0.66rem;
  }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .service-row,
  .services-page .service-row,
  .auth-layout,
  .cart-layout,
  .artwork-hero-grid,
  .artwork-check-grid,
  .tracking-layout {
    grid-template-columns: 1fr;
  }

  .nt-hero {
    padding: 0;
  }

  .nt-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .nt-hero-copy {
    padding: 56px 0 14px;
  }

  .nt-collage {
    height: 500px;
    min-height: 500px;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    padding: 0;
    margin: 0;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-layout .filters-panel {
    display: none;
  }

  .product-detail,
  .bundle-detail {
    grid-template-columns: 1fr;
  }

  .bundle-detail-media {
    position: static;
  }

  .artwork-guide-layout {
    grid-template-columns: 1fr;
  }

  .artwork-guide-nav {
    position: static;
  }

  .listing-area {
    order: 1;
  }

  .filters-panel {
    order: 2;
  }

  .filters-panel {
    position: static;
  }

  .category-filter-deck {
    order: 0;
  }

  .quick-filter-row {
    display: flex;
  }

  .quick-filter-chip {
    flex: 0 0 132px;
  }

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

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

  .price-breaks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .size-matrix {
    grid-template-columns: repeat(4, minmax(48px, 1fr));
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .slides {
    min-height: 410px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .process-steps article {
    border-right: 0;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
  }

  .why-story-grid {
    grid-template-columns: 1fr;
  }

  .why-story-copy {
    max-width: 760px;
  }

  .why-story-media {
    min-height: 460px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .services-grid,
  .value-grid,
  .department-grid,
  .product-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reason-card {
    border-right: 0;
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .testimonial-grid,
  .package-teaser-grid,
  .tab-panel,
  .team-grid,
  .footer-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .footer-reference-grid {
    grid-template-columns: 1fr;
  }

  .footer-faq-card {
    padding-bottom: 34px;
  }

  .brands-page-layout {
    grid-template-columns: 1fr;
  }

  .brands-faq {
    position: static;
  }

  .service-row:nth-child(even) .service-block {
    order: 0;
  }

  .service-visual {
    min-height: 360px;
  }

  .service-visual img {
    max-height: 270px;
  }

  .story-statement h2 {
    position: static;
  }

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

  .cta-banner .container {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .whatsapp-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .logo-wizard {
    grid-template-columns: 1fr;
  }

  .logo-wizard-side {
    order: -1;
  }
}

@media (max-width: 900px) {
  .tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    border-radius: 18px;
  }

  .tab {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .trust-bar-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: stretch;
    gap: 6px 10px;
    padding: 8px 0;
    overflow: visible;
    font-size: clamp(0.6rem, 2.45vw, 0.72rem);
    line-height: 1.12;
  }

  .trust-bar span,
  .trust-bar a {
    display: block;
    position: relative;
    min-width: 0;
    padding-left: 13px;
    white-space: normal;
    text-align: left;
    overflow-wrap: normal;
  }

  .trust-bar small {
    margin-left: 2px;
    font-weight: 800;
  }

  .trust-bar span::before,
  .trust-bar a::before {
    position: absolute;
    left: 0;
    top: 0.34em;
    width: 6px;
    height: 6px;
    display: block;
    margin-right: 0;
  }

  .utility-header {
    display: block;
  }

  .utility-inner {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 7px 0;
    font-size: clamp(0.64rem, 2.45vw, 0.76rem);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .utility-inner::-webkit-scrollbar {
    display: none;
  }

  .utility-inner p {
    display: none;
  }

  .utility-inner div {
    flex: 1 0 auto;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
    flex-wrap: nowrap;
  }

  .utility-inner a {
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1.15;
  }

  .store-topline-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    padding: 8px 0;
    overflow: visible;
    font-size: clamp(0.58rem, 2.35vw, 0.7rem);
    line-height: 1.12;
  }

  .store-topline-inner>span {
    min-width: 0;
    white-space: normal;
    align-items: flex-start;
  }

  .store-topline-inner>span::before {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-top: 0.3em;
    margin-right: 7px;
    box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.16);
  }

  .vat-toggle {
    grid-column: 1 / -1;
    justify-self: end;
    justify-content: flex-end;
    font-size: clamp(0.66rem, 2.5vw, 0.76rem);
  }

  .vat-toggle span {
    width: 34px;
    height: 19px;
  }

  .vat-toggle span::after {
    width: 13px;
    height: 13px;
  }

  .vat-toggle input:checked+span::after {
    transform: translateX(15px);
  }

  .nav-inner {
    padding: 10px 0;
  }

  .site-search input {
    min-width: 0;
    font-size: 0.86rem;
  }

  .site-search button {
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .section-pad {
    padding: 88px 0;
  }

  .shop-slider {
    padding-bottom: 12px;
  }

  .shop-slider+.section-pad {
    padding-top: 18px;
  }

  .home-departments {
    padding-bottom: 36px;
  }

  .home-packages {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .home-process {
    padding-top: 36px;
  }

  .page-hero {
    padding-top: 138px;
  }

  .bundle-hero {
    padding-top: 88px;
    padding-bottom: 46px;
  }

  .hero {
    padding-top: 116px;
  }

  .store-hero {
    padding: 82px 0 54px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-text {
    max-width: 100%;
    padding-right: 10px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .button-row {
    width: 100%;
  }

  .button-row .btn {
    flex: 1 1 220px;
  }

  .mockup-shirt {
    width: 240px;
    height: 300px;
    right: 8px;
    top: 48px;
  }

  .mockup-card {
    width: 230px;
    top: 158px;
  }

  .mockup-stack {
    width: 230px;
    right: 12px;
    bottom: 6px;
  }

  .mockup-stack span {
    padding: 12px 14px;
  }

  .service-card,
  .quote-card,
  .value-card,
  .team-card,
  .tint-card {
    padding: 24px;
  }

  .package-card {
    padding: 26px;
  }

  .package-card.popular {
    padding-top: 56px;
  }

  .bundle-card-media {
    min-height: 220px;
  }

  .tabs {
    top: 78px;
    width: 100%;
    margin-inline: 0;
    border-radius: 18px;
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-padding-inline: 12px;
  }

  .tab {
    flex: 1 1 calc(50% - 8px);
    padding-inline: 16px;
  }

  .service-block {
    min-height: 250px;
    border-radius: 18px;
  }

  .cta-banner .container {
    min-height: 280px;
  }

  .stats-grid strong {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 0;
  }

  .mini-form {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .section-pad {
    padding: 78px 0;
  }

  .shop-slider+.section-pad {
    padding-top: 16px;
  }

  .home-departments {
    padding-bottom: 32px;
  }

  .home-packages {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-process {
    padding-top: 32px;
  }

  .pt-0 {
    padding-top: 0;
  }

  .nav-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 138px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-word {
    font-size: 1.25rem;
  }

  .hero {
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .nt-hero {
    padding: 0;
  }

  .nt-hero-copy {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 8px;
  }

  .nt-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .nt-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.8vw, 2.65rem);
    line-height: 0.96;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .nt-word {
    min-width: 0;
  }

  .nt-hero-text {
    max-width: 100%;
  }

  .nt-proof-list {
    gap: 12px;
  }

  .nt-proof-list span {
    flex: 1 1 100%;
    min-width: 0;
    font-size: 0.94rem;
  }

  .nt-hero .button-row .btn {
    width: 100%;
  }

  .nt-collage {
    height: 410px;
    min-height: 410px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --collage-gap: 14px;
    gap: var(--collage-gap);
  }

  .nt-collage-column.medium {
    display: none;
  }

  .nt-photo-card {
    height: 180px;
    border-radius: 18px;
  }

  .nt-photo-card.tall {
    height: 250px;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
    overflow-wrap: anywhere;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .mockup-shirt {
    width: 220px;
    height: 270px;
    right: 8px;
    top: 48px;
  }

  .shirt-icon {
    width: 130px;
    height: 150px;
    margin-top: 28px;
  }

  .shirt-icon::before,
  .shirt-icon::after {
    width: 48px;
    height: 56px;
    top: 16px;
  }

  .shirt-icon::before {
    left: -32px;
  }

  .shirt-icon::after {
    right: -32px;
  }

  .mockup-card {
    width: 210px;
    top: 150px;
  }

  .mockup-dtf {
    width: 150px;
    height: 160px;
    right: auto;
    left: 18px;
    top: 0;
  }

  .mockup-card strong {
    margin-top: 54px;
    font-size: 1.35rem;
  }

  .mockup-stack {
    width: 220px;
    bottom: 10px;
  }

  .services-grid,
  .value-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: auto;
  }

  .why-story-media {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .why-shot,
  .why-shot-large {
    min-height: 240px;
    grid-row: auto;
  }

  .why-story-media::before {
    display: none;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: auto;
  }

  .department-grid,
  .product-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .brand-strip-section {
    padding-bottom: 36px;
  }

  .brand-strip {
    padding: 18px 0 20px;
  }

  .brand-wordmark {
    flex-basis: 128px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
    gap: 18px 12px;
  }

  .brand-directory-logo {
    width: 74px;
    height: 40px;
  }

  .category-filter-deck {
    padding: 12px;
  }

  .quick-filter-row,
  .thumb-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .filter-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .listing-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .listing-toolbar label {
    justify-content: space-between;
  }

  .listing-grid,
  .choice-grid,
  .category-banner {
    grid-template-columns: 1fr;
  }

  .price-breaks,
  .size-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line-detailed {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-line-detailed>span,
  .cart-line-detailed>button {
    grid-column: 2;
  }

  .basket-actions,
  .position-grid,
  .logo-page-positions {
    grid-template-columns: 1fr 1fr;
  }

  .logo-progress {
    grid-template-columns: 1fr;
  }

  .logo-progress button {
    min-height: 56px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    padding: 10px 14px;
  }

  .returning-customer {
    grid-template-columns: 1fr;
  }

  .returning-customer .btn {
    grid-column: auto;
    grid-row: auto;
    width: fit-content;
  }

  .product-title-row {
    flex-direction: column;
  }

  .bundle-detail-art {
    min-height: 460px;
  }

  .bundle-detail-grid {
    grid-template-columns: 1fr;
  }

  .bundle-detail-summary h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .category-banner {
    text-align: left;
  }

  .category-banner {
    max-width: 100%;
    overflow: hidden;
  }

  .category-banner p {
    max-width: 100%;
    width: 100%;
    overflow-wrap: anywhere;
  }

  .category-banner h1 {
    overflow-wrap: anywhere;
  }

  .breadcrumbs {
    display: block;
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .breadcrumbs a,
  .breadcrumbs span {
    display: inline;
  }

  .mobile-optional-crumb {
    display: none !important;
  }

  .product-main-image {
    aspect-ratio: 3 / 4;
    min-height: auto;
    width: 100%;
  }

  .product-main-image .product-figure,
  .product-main-image .generated-thumb-large,
  .product-main-image .product-catalog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    display: block;
  }

  .product-info-panel,
  .config-panel,
  .calculator-panel {
    padding: 18px;
  }

  .product-tabs {
    gap: 10px;
    overflow-x: auto;
  }

  .product-tab {
    white-space: nowrap;
  }

  .thumb-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }

  .thumb-row button {
    flex: 0 0 78px;
    height: 98px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .guide-block {
    grid-template-columns: 1fr;
  }

  .service-copy,
  .package-card,
  .enquiry-form {
    padding: 24px;
  }

  .bundle-card>a {
    padding: 14px;
  }

  .bundle-card-media {
    min-height: 210px;
    grid-template-columns: 1fr 74px;
  }

  .service-block span {
    font-size: clamp(2rem, 13vw, 3.3rem);
    overflow-wrap: anywhere;
  }

  .service-copy h2 {
    font-size: clamp(1.7rem, 9vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .tabs {
    top: 78px;
    border-radius: 18px;
  }

  .page-hero {
    padding-top: 126px;
  }

  .bundle-hero {
    padding-top: 78px;
    padding-bottom: 38px;
  }

  .marquee {
    height: 46px;
  }

  .marquee-track {
    animation-duration: 16s;
  }

  .marquee span {
    height: 46px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .section-pad {
    padding: 70px 0;
  }

  .shop-slider+.section-pad {
    padding-top: 14px;
  }

  .home-departments {
    padding-bottom: 28px;
  }

  .home-packages {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .home-process {
    padding-top: 28px;
  }

  .catalog-page.section-pad,
  .product-page.section-pad {
    padding-top: 52px;
  }

  .page-hero {
    padding-top: 116px;
  }

  .bundle-hero {
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .nav-inner {
    min-height: 0;
    gap: 9px 12px;
  }

  .brand-logo {
    width: clamp(108px, 34vw, 128px);
  }

  .product-main-image {
    aspect-ratio: 3 / 4;
    min-height: auto;
    border-radius: 16px;
  }

  .bundle-detail-page {
    padding-top: 116px;
  }

  .bundle-detail-art {
    min-height: 360px;
    border-radius: 14px;
  }

  .bundle-detail-art .deal-copy {
    left: 18px;
    top: 20px;
  }

  .bundle-detail-art .deal-copy small {
    margin-top: 92px;
    max-width: 145px;
    font-size: 0.86rem;
  }

  .bundle-detail-art .deal-price {
    width: 82px;
    min-height: 82px;
    right: 14px;
    top: 16px;
  }

  .bundle-detail-art .deal-price del {
    left: -48px;
    font-size: 0.92rem;
  }

  .bundle-detail-art .deal-price b {
    font-size: 1.1rem;
  }

  .bundle-price-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-main-image .product-figure,
  .product-main-image .generated-thumb-large,
  .product-main-image .product-catalog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: auto;
  }

  .product-info-panel,
  .config-panel,
  .calculator-panel {
    padding: 16px;
  }

  .product-tab {
    padding-inline: 0;
    font-size: 0.78rem;
  }

  .thumb-row button {
    min-width: 0;
  }

  .thumb-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    padding-inline: 18px;
  }

  .mobile-menu .btn {
    width: min(280px, 100%);
  }

  .hero {
    padding-top: 100px;
  }

  .store-hero {
    padding: 70px 0 48px;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 3.5rem);
  }

  .hero h1 {
    font-size: clamp(2.12rem, 11vw, 2.72rem);
  }

  .nt-hero h1 {
    font-size: clamp(1.82rem, 9vw, 2.25rem);
  }

  .nt-hero-text {
    font-size: 0.98rem;
  }

  .nt-proof-list {
    gap: 12px;
  }

  .nt-proof-list span {
    flex: 1 1 100%;
    font-size: 0.9rem;
  }

  .nt-collage {
    height: 365px;
    min-height: 365px;
  }

  .nt-photo-card {
    height: 156px;
  }

  .nt-photo-card.tall {
    height: 220px;
  }

  .nt-photo-card img {
    padding: 12px;
  }

  h2 {
    font-size: clamp(1.85rem, 11vw, 2.6rem);
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-text,
  .page-intro {
    max-width: 340px;
    font-size: 1rem;
  }

  .button-row {
    gap: 10px;
  }

  .button-row .btn,
  .cta-banner .btn,
  .whatsapp-card .btn {
    width: 100%;
  }

  .button-row .btn {
    flex: 1 1 100%;
  }

  .basket-modal,
  .logo-wizard-modal {
    padding: 12px;
  }

  .basket-panel,
  .logo-wizard {
    padding: 20px;
    border-radius: 14px;
  }

  .basket-product,
  .side-product {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .basket-product img,
  .side-product img {
    width: 60px;
    height: 72px;
  }

  .basket-actions,
  .position-grid,
  .logo-page-positions,
  .method-options button,
  .application-options {
    grid-template-columns: 1fr;
  }

  .logo-page {
    padding-top: 112px;
  }

  .logo-page-body,
  .logo-page-actions,
  .logo-page-summary {
    padding: 20px;
  }

  .logo-page-actions {
    flex-direction: column;
  }

  .logo-page-actions .btn {
    width: 100%;
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .slides {
    min-height: 330px;
  }

  .slide {
    padding: 28px 22px 54px;
  }

  .slider-btn {
    display: none;
  }

  .process-steps article {
    padding: 24px 18px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .mockup {
    border-radius: 18px;
  }

  .mockup-label {
    font-size: 0.65rem;
  }

  .mockup-dtf {
    width: 126px;
    height: 138px;
    right: auto;
    left: 8px;
    top: 0;
    padding: 14px;
  }

  .mockup-shirt {
    width: 185px;
    height: 230px;
    right: 2px;
    top: 44px;
    padding: 18px;
  }

  .shirt-icon {
    width: 104px;
    height: 124px;
    margin-top: 25px;
    border-radius: 30px 30px 18px 18px;
  }

  .shirt-icon::before,
  .shirt-icon::after {
    width: 38px;
    height: 46px;
    top: 14px;
  }

  .shirt-icon::before {
    left: -24px;
  }

  .shirt-icon::after {
    right: -24px;
  }

  .mockup-card {
    width: 178px;
    top: 122px;
    padding: 18px;
  }

  .mockup-card strong {
    margin-top: 50px;
    font-size: 1.08rem;
  }

  .mockup-stack {
    width: 178px;
    right: 0;
    bottom: 0;
    padding: 12px;
    gap: 8px;
  }

  .mockup-stack span {
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 0.86rem;
  }

  .shape-one {
    width: 130px;
    height: 130px;
    left: 24px;
  }

  .shape-two {
    width: 150px;
    height: 150px;
    right: 0;
    bottom: 54px;
  }

  .service-card,
  .quote-card,
  .value-card,
  .team-card,
  .tint-card,
  .feature-row,
  .whatsapp-card {
    padding: 22px;
  }

  .service-copy,
  .package-card,
  .enquiry-form {
    padding: 20px;
  }

  .package-card h2 {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .bundle-panel-head h2 {
    font-size: clamp(2.1rem, 14vw, 4rem);
  }

  .bundle-card-media {
    min-height: 190px;
  }

  .tabs {
    top: 72px;
    padding: 10px;
    gap: 8px;
  }

  .tab {
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .service-block {
    min-height: 210px;
  }

  .info-list p {
    padding: 16px;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 16px;
  }

  textarea {
    min-height: 132px;
  }

  .footer-grid,
  .footer-reference-grid {
    gap: 28px;
    padding-top: 42px;
  }

  .footer-subbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px);
  }

  .brand-logo {
    width: 112px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .mockup-shirt {
    width: 164px;
    height: 208px;
  }

  .mockup-card,
  .mockup-stack {
    width: 160px;
  }

  .mockup-card {
    top: 116px;
  }

  .mockup-stack {
    bottom: 0;
  }

  .service-card,
  .quote-card,
  .value-card,
  .team-card,
  .tint-card,
  .feature-row,
  .whatsapp-card {
    padding: 18px;
  }

  .service-copy,
  .package-card,
  .enquiry-form {
    padding: 18px;
  }

  .icon,
  .whatsapp-icon {
    width: 44px;
    height: 44px;
  }

  .socials {
    flex-wrap: wrap;
  }
}

/* Dashboard styles */
.auth-layout.logged-in {
  grid-template-columns: 1fr;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.dashboard-card h4 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-display);
}

.profile-info h3 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin: 0;
}

.profile-email {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 4px 0 8px 0;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-success {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
}

.mock-orders {
  display: grid;
  gap: 16px;
}

.mock-order {
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.order-id {
  font-weight: 700;
  color: var(--black);
}

.order-details p {
  margin: 2px 0;
  font-size: 0.95rem;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--grey);
  padding-top: 10px;
  margin-top: 6px;
}

.order-total {
  font-weight: 700;
  font-size: 0.95rem;
}

.order-status {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

.status-production {
  background: #fef3c7;
  color: #d97706;
}

.status-delivered {
  background: #d1fae5;
  color: #059669;
}

.logout-btn-dash {
  width: 100%;
}

.account-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.address-card form {
  display: grid;
  gap: 10px;
}

.address-card form label {
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 700;
}

.address-card form input {
  padding: 8px 12px;
  font-size: 0.9rem;
  border: 1px solid var(--grey);
  border-radius: var(--radius-card);
  min-height: 38px;
}

.btn-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* Production Auth Form Styling */
.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
}

.input-wrapper label {
  font-size: 0.9rem;
  font-weight: 700;
}

.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-container input {
  width: 100%;
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.2s;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--primary);
}

.eye-icon {
  width: 20px;
  height: 20px;
}

.validation-msg {
  font-size: 0.78rem;
  color: #ef4444;
  display: block;
  min-height: 16px;
  margin-top: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.validation-msg.active {
  opacity: 1;
}

input.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

input.field-success {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

/* Password Strength Meter */
.strength-meter {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
}

.strength-bar-container {
  width: 100%;
  height: 4px;
  background: var(--grey);
  border-radius: 99px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s, background-color 0.3s;
  background: #ef4444;
}

.strength-text {
  color: var(--muted);
  font-weight: 500;
}

/* Social Branded Buttons & Dividers */
.social-login-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.social-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  width: 100%;
  height: 44px;
  cursor: pointer;
  transition: transform 0.1s, background-color 0.2s;
}

.social-login:active {
  transform: scale(0.98);
}

.social-row {
  display: flex;
  gap: 10px;
}

.flex-social {
  flex: 1;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 16px 0 8px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--grey);
}

.divider::before {
  margin-right: .8em;
}

.divider::after {
  margin-left: .8em;
}

/* Form Meta (Remember Me & Forgot Link) */
.form-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  margin: 8px 0 14px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-weight: 500 !important;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.forgot-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.forgot-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Button Loading & Spinner States */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

.btn-outline .btn-spinner {
  border-color: rgba(249, 115, 22, 0.2);
  border-top-color: var(--primary);
}

.btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn.loading .btn-text {
  visibility: hidden;
  opacity: 0;
}

.btn.loading .btn-spinner {
  display: block;
  position: absolute;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form Error Shake Animation */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-6px);
  }

  40%,
  80% {
    transform: translateX(6px);
  }
}

.input-wrapper.shake {
  animation: shake 0.4s ease-in-out;
}

/* Form Instructions */
.form-instructions {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Bundle Builder UI */
.bundle-builder {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.bundle-builder-header {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 5px;
}

.bundle-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--grey);
  padding: 12px;
  border-radius: var(--radius-card);
  animation: fade-in 0.3s ease forwards;
}

.bundle-add-btn {
  background: transparent;
  border: 2px dashed var(--line);
  color: #666;
  padding: 16px;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-weight: 800;
  transition: all 180ms ease;
  width: 100%;
}

.bundle-add-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(232, 53, 122, 0.05);
}

.bundle-row-remove {
  background: transparent;
  border: none;
  color: #d93025;
  cursor: pointer;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  font-weight: bold;
  transition: all 180ms ease;
}

.bundle-row-remove:hover {
  background: rgba(217, 48, 37, 0.1);
}

.bundle-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--grey);
  border-radius: var(--radius-card);
  font-weight: 800;
  color: var(--black);
  font-size: 1.1rem;
}

/* Premium Bundle Builder UI */
.bundle-builder {
  margin-top: 10px;
  grid-column: 1 / -1;
}

.bundle-builder-header {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.bundle-table-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

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

.bundle-table th {
  background: var(--grey);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
}

.bundle-table td {
  padding: 6px 12px;
  border-bottom: 1px solid var(--line);
}

.bundle-table tr:last-child td {
  border-bottom: none;
}

.bundle-table select,
.bundle-table input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-button);
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
  transition: all 0.2s ease;
  min-height: 40px;
}

.bundle-table select:hover,
.bundle-table input:hover {
  background: var(--grey);
}

.bundle-table select:focus,
.bundle-table input:focus {
  background: var(--white);
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 53, 122, 0.1);
}

.bundle-row-remove {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: #a0a0a0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin: 0 auto;
}

.bundle-row-remove:hover {
  background: #fee2e2;
  color: #d93025;
}

.bundle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--grey);
  border-top: 1px solid var(--line);
}

.bundle-add-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-button);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.bundle-add-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.bundle-total {
  font-weight: 800;
  color: var(--black);
  font-size: 1.1rem;
}

.bundle-total span:first-child {
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 8px;
}

/* ==========================================================================
   GOCUSTOM PRODUCT CARD LISTING LAYOUT STYLE
   ========================================================================== */

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

@media (max-width: 1200px) {
  .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 500px) {
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.gocustom-product-card {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.gocustom-product-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gocustom-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gocustom-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 350 / 475;
  background: #f7f7f8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gocustom-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pink, #ec4899);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 5;
  text-transform: uppercase;
}

.gocustom-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.gocustom-img-primary,
.gocustom-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gocustom-img-hover {
  opacity: 0;
}

.gocustom-product-card:hover .gocustom-img-hover {
  opacity: 1;
}

/* Color swatches */
.gocustom-color-swatches {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.15);
  border-color: var(--pink-primary, #e6008d);
  box-shadow: 0 2px 8px rgba(230, 0, 141, 0.25);
}

.color-swatch.active {
  border-color: var(--pink-primary, #e6008d);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--pink-primary, #e6008d);
}

.color-swatch:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--pink);
}

/* Basket Modal Styles */
.basket-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.basket-modal.open {
  opacity: 1;
  visibility: visible;
}

.basket-panel {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 620px;
  width: 92%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  padding: 32px;
  scrollbar-width: thin;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4b5563;
  font-weight: 700;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}

.success-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 24px 0;
  padding-top: 4px;
}

#basketAddedProduct.basket-product {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  padding: 0 !important;
  border: none !important;
  width: 100% !important;
}

.basket-product-summary {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  width: 100% !important;
  margin-bottom: 24px;
  padding: 16px;
  background: #fbfbfb;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 14px;
}

.basket-thumbnail-container {
  flex-shrink: 0;
  width: 85px;
  height: 85px;
}

.basket-thumbnail {
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  padding: 4px;
}

.basket-product-info {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.basket-prod-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.3;
  text-transform: uppercase;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

.basket-product-details {
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.basket-product-details .detail-label {
  color: #9ca3af;
  font-weight: 600;
}

.basket-product-price-section {
  flex-shrink: 0;
  text-align: right;
  padding-left: 12px;
}

.basket-quantity {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 600;
}

.basket-product-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.basket-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.basket-actions-row {
  display: flex;
  gap: 12px;
}

.basket-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.btn-view-cart {
  background: #111827;
  color: #FFFFFF;
  border: none;
}

.btn-view-cart:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

.btn-continue-shopping {
  background: #FFFFFF;
  color: #111827;
  border: 2px solid #111827;
}

.btn-continue-shopping:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

.btn-checkout {
  background: #34d399;
  color: #FFFFFF;
  border: none;
  font-size: 0.98rem;
  padding: 15px 24px;
  width: 100%;
}

.btn-checkout:hover {
  background: #10b981;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.35);
}

.basket-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}

.recommendations-section {
  margin-top: 20px;
}

.recommendations-heading {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.recommendations-carousel {
  overflow: hidden;
  margin-bottom: 14px;
  padding: 4px 2px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-card {
  flex: 0 0 calc(33.333% - 8px);
  min-width: 135px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.recommendation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.recommendation-image-wrap {
  width: 100%;
  height: 120px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.recommendation-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recommendation-info {
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.recommendation-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #059669;
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recommendation-colors {
  font-size: 0.72rem;
  color: #059669;
  margin: 0;
  font-weight: 600;
}

.recommendation-code {
  font-size: 0.7rem;
  color: #059669;
  margin: 0;
  font-weight: 700;
}

.recommendation-price {
  font-size: 0.8rem;
  color: #111827;
  margin-top: auto;
  font-weight: 800;
  padding-top: 4px;
}

.recommendation-price .from-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b7280;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: #111827;
  width: 18px;
  border-radius: 999px;
}
}

.carousel-dot:hover {
  background: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .basket-panel {
    width: 95%;
    padding: 24px;
    max-height: 95vh;
  }
  
  .success-heading {
    font-size: 32px;
  }
  
  .basket-product-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .basket-thumbnail {
    width: 100px;
    height: 100px;
  }
  
  .basket-product-price-section {
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }
  
  .basket-actions-row {
    flex-direction: column;
  }
  
  .basket-actions .btn {
    width: 100%;
  }
  
  .carousel-track {
    gap: 12px;
  }
  
  .recommendation-card {
    min-width: 140px;
  }
  
  .recommendation-image {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .basket-panel {
    padding: 20px;
    width: 100%;
    border-radius: 16px 16px 0 0;
    position: absolute;
    bottom: 0;
    max-height: 85vh;
  }
  
  .basket-modal {
    align-items: flex-end;
  }
  
  .success-heading {
    font-size: 28px;
  }
  
  .recommendation-card {
    min-width: 120px;
  }
}

.gocustom-card-details {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gocustom-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.gocustom-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  margin: 0 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

.gocustom-colours-count {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0 0 6px 0;
  font-weight: 500;
}

.gocustom-brand-ref {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 8px;
}

.gocustom-brand-ref .brand-name {
  color: #4b5563;
}

.gocustom-price-row {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.gocustom-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
}

/* ==========================================================================
   PAGINATION STYLING
   ========================================================================== */

.category-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 50px 0 20px 0;
  width: 100%;
}

.pagination-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-nav-btn {
  background: var(--white);
  border: 1px solid #d1d5db;
  color: #374151;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-nav-btn:hover:not(:disabled) {
  border-color: var(--pink, #ec4899);
  color: var(--pink, #ec4899);
  background: #fdf2f8;
}

.page-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.page-numbers-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-num-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d1d5db;
  background: var(--white);
  color: #374151;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  padding: 0;
}

.page-num-btn:hover {
  border-color: var(--pink, #ec4899);
  color: var(--pink, #ec4899);
}

.page-num-btn.active {
  background: var(--pink, #ec4899);
  border-color: var(--pink, #ec4899);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.2);
}

.page-dots {
  color: #9ca3af;
  font-weight: 700;
  padding: 0 4px;
}

.pagination-info {
  font-size: 0.88rem;
  color: #6b7280;
  font-weight: 500;
}

/* ==========================================================================
   GOCUSTOM LOGO WIZARD MODAL STYLE OVERRIDES
   ========================================================================== */

.application-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.method-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  gap: 8px;
}

.method-btn:hover {
  border-color: var(--pink, #ec4899);
  background: #fdf2f8;
}

.method-btn.selected {
  border-color: var(--pink, #ec4899);
  background: #fdf2f8;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}

.method-btn span {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.method-btn small {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 500;
}

.artwork-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.artwork-options .option-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.artwork-options .option-row:hover {
  border-color: var(--pink, #ec4899);
  background: #fdf2f8;
}

.artwork-options .option-row input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--pink, #ec4899);
  width: 18px;
  height: 18px;
}

.artwork-options .option-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.artwork-options .option-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.artwork-options .option-info span {
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 500;
}

.configure-block {
  margin: 16px 0;
}

.uploaded-filename {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: #10b981;
  font-weight: 700;
}

/* ==========================================================================
   GOCUSTOM FLOATING SUMMARY CONTAINER STYLES
   ========================================================================== */

.floating_product_price_container {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0;
}

.floating_product_price {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.current_price_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 14px;
}

.garment-unit-price ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.garment-unit-price li {
  font-size: 0.92rem;
  color: #4b5563;
  font-weight: 500;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.current-price-total-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
}

.tax-shipping-delivery-label {
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   NAMES & NUMBERS TOGGLE AND POSITION CARD CAROUSEL STYLES
   ========================================================================== */

.switch-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.switch-toggle input:checked + .switch-slider {
  background-color: var(--pink);
}

.switch-toggle input:checked + .switch-slider:before {
  transform: translateX(18px);
}

.position-card {
  flex: 0 0 165px;
  width: 165px;
  min-height: 230px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.position-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.position-card.selected {
  border-color: var(--pink, #ec4899) !important;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.position-card .pos-type {
  font-size: 0.8rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.position-card .pos-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-top: 4px;
}

.checkerboard-bg {
  background-color: #f3f4f6;
  background-image: linear-gradient(45deg, #e5e7eb 25%, transparent 25%, transparent 75%, #e5e7eb 75%, #e5e7eb),
                    linear-gradient(45deg, #e5e7eb 25%, transparent 25%, transparent 75%, #e5e7eb 75%, #e5e7eb);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
}

/* Floating WhatsApp Chat Widget */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 99999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: #111827;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
  font-family: inherit;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111827;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
  .whatsapp-float-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float-tooltip {
    display: none;
  }
}

/* ==========================================================================
   CHECKOUT DUAL-OPTION MODAL (MEMBER LOGIN vs GUEST FORM + PAYMENT + WHATSAPP)
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.checkout-modal-overlay.active .checkout-modal-card {
  transform: translateY(0) scale(1);
}

.checkout-modal-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 24px 28px;
  position: relative;
}

.checkout-modal-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.checkout-modal-header p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

.checkout-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.checkout-modal-close:hover {
  background: rgba(230, 0, 141, 0.8);
  transform: rotate(90deg);
}

.checkout-modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: 80vh;
}

/* STEP 1: INITIAL 2-BUTTON CHOICE */
.checkout-step-choice {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.choice-btn-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  text-align: left;
}

.choice-btn-card:hover {
  border-color: #e6008d;
  box-shadow: 0 10px 25px rgba(230, 0, 141, 0.15);
  transform: translateY(-2px);
  background: #ffffff;
}

.choice-btn-card.guest-card {
  border-color: #25d366;
  background: #f0fdf4;
}

.choice-btn-card.guest-card:hover {
  border-color: #16a34a;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
  background: #ffffff;
}

.choice-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.choice-icon.login-icon {
  background: rgba(230, 0, 141, 0.12);
  color: #e6008d;
}

.choice-icon.guest-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.choice-text {
  flex: 1;
}

.choice-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #0f172a;
}

.choice-text p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.choice-arrow {
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.choice-btn-card:hover .choice-arrow {
  color: #e6008d;
  transform: translateX(4px);
}

.choice-btn-card.guest-card:hover .choice-arrow {
  color: #16a34a;
}

/* STEP 2: COMPACT GUEST FORM */
.checkout-step-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guest-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guest-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guest-form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.guest-form-group input,
.guest-form-group select {
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.92rem;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.guest-form-group input:focus,
.guest-form-group select:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.guest-payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.payment-radio-card {
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.payment-radio-card:hover,
.payment-radio-card.active {
  border-color: #25d366;
  background: #f0fdf4;
  color: #16a34a;
}

.btn-guest-submit {
  background: #25d366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-guest-submit:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.back-to-choices-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.back-to-choices-btn:hover {
  color: #0f172a;
}

/* STEP 3: ORDER SUCCESS VIEW */
.checkout-step-success {
  text-align: center;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 16px;
  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.12);
}

.checkout-step-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.checkout-step-success p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  max-width: 440px;
}

.order-ref-badge {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.btn-open-whatsapp-direct {
  background: #25d366;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-open-whatsapp-direct:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .guest-form-row {
    grid-template-columns: 1fr;
  }
  .guest-payment-options {
    grid-template-columns: 1fr;
  }
  .checkout-modal-body {
    padding: 20px;
  }
}
/* Consistent keyboard focus across links, controls and custom buttons. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #0b7f85;
  outline-offset: 3px;
}
/* Printla artwork guide refresh */
.artwork-page{background:#f6f7fb;color:#131321}.artwork-new-hero{position:relative;overflow:hidden;padding:88px 0 82px;background:radial-gradient(circle at 82% 16%,rgba(255,52,154,.24),transparent 30%),linear-gradient(135deg,#151024 0%,#25113d 52%,#111827 100%);color:#fff}.artwork-new-hero:after{content:"";position:absolute;inset:auto -10% -140px 38%;height:260px;background:#e6008d;filter:blur(120px);opacity:.16}.artwork-new-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:70px;align-items:center}.artwork-kicker{margin:0 0 12px;color:#e6008d;font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.artwork-new-hero .artwork-kicker{color:#ff71bd}.artwork-hero-copy h1{max-width:760px;margin:0;font-family:'Space Grotesk',sans-serif;font-size:clamp(2.8rem,5.8vw,5.5rem);line-height:.96;letter-spacing:-.055em;color:#fff}.artwork-lead{max-width:660px;margin:25px 0 30px;color:#d8d3e1;font-size:1.1rem;line-height:1.7}.artwork-actions{display:flex;gap:12px;flex-wrap:wrap}.artwork-secondary-btn{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.08);color:#fff}.artwork-trust-row{display:flex;gap:24px;flex-wrap:wrap;margin-top:28px;color:#d8d3e1;font-size:.85rem;font-weight:700}.artwork-trust-row span:before{content:"✓";margin-right:7px;color:#ff71bd}.artwork-hero-visual{position:relative}.artwork-visual-card{padding:14px;border:1px solid rgba(255,255,255,.16);border-radius:30px;background:rgba(255,255,255,.08);box-shadow:0 30px 70px rgba(0,0,0,.3);transform:rotate(1.5deg);backdrop-filter:blur(12px)}.artwork-visual-card img{display:block;width:100%;border-radius:20px;background:#fff}.artwork-file-pill{position:absolute;z-index:2;top:-16px;left:-20px;padding:10px 15px;border-radius:999px;background:#fff;color:#21172c;font-size:.78rem;font-weight:800;box-shadow:0 12px 28px rgba(0,0,0,.22)}.artwork-proof-status{display:flex;gap:12px;align-items:center;margin:13px 5px 2px;padding:12px 14px;border-radius:16px;background:#fff;color:#191323}.artwork-proof-status>span{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#dcfce7;color:#15803d;font-weight:900}.artwork-proof-status strong,.artwork-proof-status small{display:block}.artwork-proof-status small{margin-top:2px;color:#6b6572}.artwork-quick{padding:78px 0;background:#fff}.artwork-section-heading{max-width:650px;margin-bottom:34px}.artwork-section-heading h2,.artwork-final-cta h2{margin:0 0 10px;font-family:'Space Grotesk',sans-serif;font-size:clamp(2rem,4vw,3.4rem);letter-spacing:-.04em}.artwork-section-heading>p:last-child{color:#696575}.artwork-check-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.artwork-check-grid article{min-height:220px;padding:26px;border:1px solid #e9e6ee;border-radius:22px;background:#faf9fc;transition:.25s ease}.artwork-check-grid article:hover{transform:translateY(-4px);border-color:#f4a8d4;box-shadow:0 18px 45px rgba(51,32,67,.09)}.artwork-check-grid span,.artwork-card-number{color:#e6008d;font-family:'Space Grotesk',sans-serif;font-weight:800}.artwork-check-grid h3{margin:35px 0 9px;font-size:1.12rem}.artwork-check-grid p{margin:0;color:#696575;line-height:1.6}.artwork-guide-layout{padding:84px 0}.artwork-guide-grid{display:grid;grid-template-columns:250px minmax(0,1fr);gap:38px;align-items:start}.artwork-side-card{position:sticky;top:120px;padding:24px;border:1px solid #e8e3ed;border-radius:22px;background:#fff;box-shadow:0 12px 35px rgba(40,25,51,.05)}.artwork-side-card nav{display:grid;gap:4px}.artwork-side-card nav a{padding:10px 12px;border-radius:10px;color:#504a59;font-size:.9rem;font-weight:700;text-decoration:none}.artwork-side-card nav a:hover{background:#fff0f8;color:#c50079}.artwork-help-box{margin-top:20px;padding:17px;border-radius:16px;background:#21172c;color:#fff}.artwork-help-box p{margin:6px 0 11px;color:#cfc7d5;font-size:.82rem;line-height:1.5}.artwork-help-box a{color:#ff71bd;font-size:.85rem;font-weight:800}.artwork-guide-content{display:grid;gap:22px}.artwork-guide-card{scroll-margin-top:120px;display:grid;grid-template-columns:54px minmax(0,1fr);gap:20px;padding:34px;border:1px solid #e8e3ed;border-radius:26px;background:#fff;box-shadow:0 12px 36px rgba(38,24,48,.045)}.artwork-guide-card h2{margin:0 0 13px;font-family:'Space Grotesk',sans-serif;font-size:1.75rem;letter-spacing:-.03em}.artwork-guide-card p{color:#666170;line-height:1.7}.artwork-card-number{display:grid;place-items:center;width:48px;height:48px;border-radius:15px;background:#fff0f8}.artwork-format-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:24px}.artwork-format-grid>div{padding:22px;border:1px solid #e6e1e9;border-radius:17px;background:#faf9fb}.artwork-format-grid .artwork-format-best{border-color:#f4aed4;background:#fff2f9}.artwork-format-grid strong{color:#e6008d;font-size:.75rem;text-transform:uppercase;letter-spacing:.08em}.artwork-format-grid h3{margin:10px 0 5px;font-size:1rem}.artwork-format-grid p{margin:0;font-size:.9rem}.artwork-tick-list{display:grid;gap:12px;padding:0;list-style:none}.artwork-tick-list li{position:relative;padding-left:30px;color:#504a59}.artwork-tick-list li:before{content:"✓";position:absolute;left:0;display:grid;place-items:center;width:20px;height:20px;border-radius:50%;background:#dcfce7;color:#15803d;font-size:.72rem;font-weight:900}.artwork-note{margin-top:20px;padding:18px 20px;border-left:4px solid #e6008d;border-radius:0 14px 14px 0;background:#fff2f9;color:#5e4052}.artwork-specs{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:22px}.artwork-specs>div{padding:20px;border-radius:16px;background:#f7f5f9}.artwork-specs strong,.artwork-specs span{display:block}.artwork-specs strong{font-size:1.4rem;color:#24192c}.artwork-specs span{margin-top:5px;color:#6f6875;font-size:.8rem;line-height:1.4}.artwork-proof-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:0;list-style:none}.artwork-proof-flow li{padding:14px 10px;border-radius:14px;background:#f7f5f9;color:#554f5d;font-size:.8rem;font-weight:700;text-align:center}.artwork-proof-flow span{display:grid;place-items:center;width:26px;height:26px;margin:0 auto 8px;border-radius:50%;background:#e6008d;color:#fff}.artwork-final-cta{padding:70px 0;background:#21172c;color:#fff}.artwork-final-cta>.container{display:flex;justify-content:space-between;gap:30px;align-items:center}.artwork-final-cta h2{max-width:760px;color:#fff}.artwork-final-cta p{color:#cbc3d1}.footer-bottom{display:flex;gap:22px;align-items:center;flex-wrap:wrap;padding:28px 0}.footer-bottom span{margin-right:auto}.footer-bottom a{color:inherit}.logo-page-redesign{background:linear-gradient(180deg,#f8f4fa 0,#fff 300px)}.logo-page-intro{display:flex;align-items:end;justify-content:space-between;gap:30px;margin:10px 0 34px;padding:32px;border:1px solid #eadfeb;border-radius:26px;background:radial-gradient(circle at 95% 0,rgba(230,0,141,.12),transparent 35%),#fff;box-shadow:0 16px 40px rgba(47,26,56,.06)}.logo-page-intro h1{margin:0 0 8px;font-family:'Space Grotesk',sans-serif;font-size:clamp(2rem,4vw,3.3rem);letter-spacing:-.04em}.logo-page-intro p:last-child{max-width:650px;margin:0;color:#686170}.logo-guide-link{min-width:240px;padding:18px 20px;border-radius:17px;background:#21172c;color:#fff;text-decoration:none}.logo-guide-link span,.logo-guide-link strong{display:block}.logo-guide-link span{margin-bottom:5px;color:#cfc5d4;font-size:.78rem}.logo-guide-link strong{color:#ff71bd}.logo-page-redesign #logoCustomiseApp{overflow:hidden;border:1px solid #e7e0e9;border-radius:26px;background:#fff;box-shadow:0 20px 55px rgba(42,24,51,.08)}
@media(max-width:900px){.artwork-new-hero-grid{grid-template-columns:1fr;gap:48px}.artwork-hero-visual{max-width:620px}.artwork-check-grid{grid-template-columns:repeat(2,1fr)}.artwork-guide-grid{grid-template-columns:1fr}.artwork-side-card{position:static}.artwork-side-card nav{grid-template-columns:repeat(2,1fr)}.artwork-final-cta>.container,.logo-page-intro{align-items:flex-start;flex-direction:column}.logo-guide-link{width:100%}}
@media(max-width:620px){.artwork-new-hero{padding:62px 0}.artwork-hero-copy h1{font-size:2.85rem}.artwork-actions .btn{width:100%;text-align:center}.artwork-trust-row{display:grid;gap:8px}.artwork-check-grid{grid-template-columns:1fr}.artwork-check-grid article{min-height:auto}.artwork-guide-card{grid-template-columns:1fr;padding:24px}.artwork-format-grid,.artwork-specs,.artwork-proof-flow{grid-template-columns:1fr}.artwork-side-card nav{grid-template-columns:1fr}.artwork-final-cta{padding:54px 0}.logo-page-intro{padding:23px}.artwork-file-pill{left:5px}}

/* Keep mobile shopping controls useful without burying the page content. */
@media (max-width: 760px) {
  .utility-header,
  .store-topline { display: none; }

  .trust-bar-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-height: 30px;
    padding: 0;
    overflow-x: auto;
    gap: 18px;
    white-space: nowrap;
  }

  .trust-bar-inner > :nth-child(n+3) { display: none; }
  .trust-bar span,
  .trust-bar a { flex: 0 0 auto; white-space: nowrap; }

  .nav-inner { padding: 9px 0; }
  .nav-links { display: none; }
  .site-search input { min-height: 40px; }

  .store-menu-inner {
    display: flex;
    flex-wrap: nowrap;
    min-height: 48px;
    padding: 5px 0;
    gap: 4px;
    overflow-x: auto;
  }

  .store-menu-item { min-width: 74px; }
  .store-menu-link { font-size: 0.62rem; }
  .menu-icon,
  .menu-icon img { width: 28px; height: 24px; }
}

.cart-pricing-note {
  display: block;
  margin: 4px 0 16px;
  color: var(--muted);
  line-height: 1.45;
}

.header-actions .header-whatsapp {
  color: #128c4a;
  font-weight: 800;
}

.whatsapp-eyebrow { color: #128c4a; }

.whatsapp-order-btn {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #128c4a;
  background: #128c4a;
  color: #fff;
  font-weight: 800;
}

.whatsapp-order-btn:hover {
  border-color: #0d713b;
  background: #0d713b;
  color: #fff;
}

.online-payment-btn { width: 100%; }

/* Printla-branded secure checkout */
.checkout-modal-overlay {
  background: rgba(32, 18, 31, 0.58);
  backdrop-filter: blur(7px);
}

.checkout-modal-card {
  max-width: 540px;
  border: 1px solid rgba(230, 0, 141, 0.16);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(65, 20, 49, 0.3);
}

.checkout-modal-header {
  padding: 30px 32px 26px;
  background: radial-gradient(circle at 88% 12%, rgba(255, 176, 0, 0.2), transparent 32%), linear-gradient(135deg, #fff7fb 0%, #fff 100%);
  color: var(--black);
  border-bottom: 1px solid #f3dbe9;
}

.checkout-brand-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.checkout-modal-header h2 {
  color: var(--black);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.checkout-modal-header p { color: #6f6470; }

.checkout-modal-close {
  background: #fff;
  border: 1px solid #eed9e6;
  color: var(--black);
  box-shadow: 0 5px 14px rgba(73, 35, 58, 0.08);
}

.checkout-modal-close:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.checkout-modal-body { padding: 30px 32px 32px; }

.checkout-intro {
  margin: 0 0 20px;
  color: #625a63;
  line-height: 1.65;
}

.checkout-trust-row {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 17px 18px;
  border: 1px solid #f0deea;
  border-radius: 16px;
  background: #fff8fc;
  color: #51474f;
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-trust-row span::before {
  content: "✓";
  margin-right: 9px;
  color: var(--pink);
  font-weight: 900;
}

.btn-guest-submit {
  min-height: 54px;
  background: var(--gradient);
  box-shadow: 0 12px 25px rgba(230, 0, 141, 0.24);
  font-weight: 850;
}

.btn-guest-submit:hover {
  background: var(--gradient);
  filter: brightness(0.96);
  box-shadow: 0 16px 30px rgba(230, 0, 141, 0.3);
}

.checkout-inline-error {
  display: none;
  margin-top: 15px;
  padding: 13px 15px;
  border: 1px solid #f2b8d8;
  border-radius: 12px;
  background: #fff2f9;
  color: #8f155c;
  font-size: 0.86rem;
  line-height: 1.5;
}

.checkout-inline-error:not(:empty) { display: block; }

@media (max-width: 560px) {
  .checkout-modal-card { border-radius: 20px; }
  .checkout-modal-header,
  .checkout-modal-body { padding: 24px 20px; }
  .checkout-modal-header h2 { font-size: 1.4rem; }
}
.logo-page-intro h2{margin:0 0 8px;font-family:'Space Grotesk',sans-serif;font-size:clamp(2rem,4vw,3.3rem);letter-spacing:-.04em}
