/* Off Theory storefront */
:root {
  --ot-black: #050505;
  --ot-text: #111111;
  --ot-muted: #666666;
  --ot-soft: #f7f7f7;
  --ot-border: #e8e8e8;
  --ot-white: #ffffff;
  --ot-gold: #dac49f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.offtheory-site {
  margin: 0;
  background: var(--ot-white);
  color: var(--ot-text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.ot-shop-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ot-topbar {
  background: var(--ot-black);
  color: var(--ot-white);
  font-size: 12px;
}

.ot-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ot-topbar a {
  color: var(--ot-white);
  text-decoration: none;
}

.ot-topbar__inner div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ot-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ot-white);
  border-bottom: 1px solid var(--ot-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.ot-header__inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
}

.ot-brand,
.ot-footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--ot-black);
  text-decoration: none;
  font-weight: 800;
}

.ot-brand img,
.ot-footer__brand img {
  width: 180px;
  height: 112px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.ot-footer__tagline {
  width: max-content;
  max-width: 100%;
  margin: 14px 0 22px;
  padding: 10px 0;
  border-top: 2px solid var(--ot-black);
  border-bottom: 2px solid var(--ot-black);
  color: var(--ot-black);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.ot-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.ot-nav a,
.ot-header__actions a,
.ot-footer a {
  color: var(--ot-black);
  text-decoration: none;
}

.ot-nav a {
  font-size: 14px;
  font-weight: 700;
}

.ot-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ot-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ot-black);
  cursor: pointer;
}

.ot-cart {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ot-black);
  color: var(--ot-white) !important;
  border-radius: 8px;
  font-weight: 800;
}

.ot-shop-hero {
  background: linear-gradient(90deg, #fbfbfb 0%, #ffffff 48%, #f5f5f5 100%);
  padding: 58px 0 34px;
}

.ot-shop-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.ot-shop-hero__copy h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ot-black);
}

.ot-shop-hero__copy p {
  max-width: 380px;
  margin: 30px 0 0;
  color: #333;
  font-size: 18px;
  line-height: 1.65;
}

.ot-shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.ot-shop-btn {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.ot-shop-btn--light {
  border: 1px solid #cfcfcf;
  color: var(--ot-black);
  background: var(--ot-white);
}

.ot-shop-hero__visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.ot-shop-hero__visual img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.18));
}

.ot-price-badge {
  position: absolute;
  right: 18px;
  bottom: 72px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ot-white);
  background: var(--ot-black);
  border: 3px solid var(--ot-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.ot-price-badge span {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.ot-price-badge strong {
  display: block;
  font-size: 26px;
}

.ot-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.ot-benefits div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 12px;
}

.ot-benefits i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #111;
  border-radius: 50%;
}

.ot-benefits strong,
.ot-benefits span {
  grid-column: 2;
}

.ot-benefits strong {
  font-size: 12px;
}

.ot-benefits span {
  color: var(--ot-muted);
  font-size: 11px;
}

.ot-shop-section {
  padding: 44px 0;
}

.ot-shop-title {
  margin: 0 0 34px;
  text-align: center;
  font-size: 30px;
}

.ot-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.ot-category-card,
.ot-product-card,
.ot-customizer {
  background: var(--ot-white);
  border: 1px solid var(--ot-border);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.ot-category-card img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  object-position: 58% center;
  background: #f4f4f4;
}

.ot-category-card h3,
.ot-category-card p {
  text-align: center;
}

.ot-category-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ot-category-card.active {
  border-color: var(--ot-black);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.11);
}

.ot-category-card h3 {
  margin: 16px 8px 4px;
  font-size: 14px;
}

.ot-category-card p {
  margin: 0 8px 18px;
  color: var(--ot-muted);
  font-size: 12px;
}

.ot-section-row {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ot-section-row h2 {
  margin: 0;
  font-size: 26px;
}

.ot-section-row a {
  color: var(--ot-black);
  text-decoration: none;
  font-weight: 800;
}

.ot-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.ot-product-card {
  position: relative;
  padding: 16px;
}

.ot-product-card button {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.ot-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 8px;
  background: #f5f5f5;
}

.ot-product-card__media {
  display: block;
  background: #f5f5f5;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.ot-product-card h3 {
  min-height: 48px;
  margin: 18px 0 10px;
  font-size: 15px;
  line-height: 1.45;
}

.ot-product-card h3 a {
  color: var(--ot-black);
  text-decoration: none;
}

.ot-rating {
  color: #f7a800;
  font-weight: 800;
  font-size: 14px;
}

.ot-rating span {
  color: var(--ot-muted);
  font-weight: 500;
}

.ot-price {
  margin: 14px 0 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.ot-price strong {
  font-size: 20px;
}

.ot-price span {
  color: #999;
  text-decoration: line-through;
}

.ot-product-card > a:not(.ot-product-card__media),
.ot-option-panel > a,
.ot-option-panel > button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ot-black);
  color: var(--ot-white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.ot-option-panel > button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.ot-customizer {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfb 100%);
}

.ot-customizer__copy h2 {
  margin: 0 0 20px;
  font-size: 24px;
}

.ot-customizer__copy ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
  color: #333;
}

.ot-customizer__copy li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  line-height: 1.5;
}

.ot-tool-rail {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: var(--ot-white);
  border: 1px solid var(--ot-border);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.ot-tool-rail span {
  min-height: 48px;
  display: grid;
  place-items: center;
  gap: 2px;
  font-size: 10px;
  color: #333;
}

.ot-design-shirt {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 330px;
  padding: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1px),
    linear-gradient(180deg, #eef6f8 0%, #d7e8ee 100%);
  background-size: 10px 10px, auto;
  border: 1px solid rgba(160, 190, 202, 0.55);
  border-radius: 10px;
  place-items: center;
}

.ot-shirt-stage {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 18px;
  align-items: end;
}

.ot-shirt-preview {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  display: grid;
  place-items: center;
  perspective: 900px;
  perspective-origin: 50% 42%;
}

.ot-shirt-preview > span {
  margin-top: 8px;
  color: #222;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ot-shirt-mockup {
  --shirt-color: #111111;
  position: relative;
  width: 78%;
  height: 82%;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 28%, rgba(0, 0, 0, 0.18) 100%),
    var(--shirt-color);
  clip-path: polygon(23% 8%, 36% 0, 64% 0, 77% 8%, 98% 25%, 85% 45%, 76% 37%, 76% 100%, 24% 100%, 24% 37%, 15% 45%, 2% 25%);
  filter: drop-shadow(0 20px 24px rgba(30, 56, 64, 0.25));
  transform-style: preserve-3d;
  animation: ot-shirt-slow-rotate 12s ease-in-out infinite;
  will-change: transform;
}

.ot-shirt-mockup::before {
  content: "";
  position: absolute;
  inset: 8% 10% 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 36%, rgba(0, 0, 0, 0.3) 100%),
    var(--shirt-color);
  clip-path: inherit;
  opacity: 0.75;
  transform: translateZ(-22px) scaleX(0.94);
}

.ot-shirt-mockup::after {
  content: "";
  position: absolute;
  inset: 7% 18% 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 44%, rgba(0, 0, 0, 0.14));
  border-radius: 0 0 42px 42px;
  pointer-events: none;
  transform: translateZ(8px);
}

.ot-shirt-mockup.is-light {
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ot-shirt-mockup--back {
  animation-delay: -6s;
  clip-path: polygon(25% 8%, 35% 0, 65% 0, 75% 8%, 98% 25%, 84% 44%, 76% 36%, 76% 100%, 24% 100%, 24% 36%, 16% 44%, 2% 25%);
}

.ot-shirt-collar {
  position: absolute;
  top: 2.5%;
  left: 50%;
  z-index: 4;
  width: 28%;
  aspect-ratio: 1.8 / 1;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.16);
}

.ot-shirt-mockup.is-light .ot-shirt-collar {
  border-color: rgba(0, 0, 0, 0.12);
}

.ot-shirt-back-neck {
  position: absolute;
  top: 2.5%;
  left: 50%;
  z-index: 4;
  width: 30%;
  aspect-ratio: 2.2 / 1;
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%) translateZ(14px);
}

.ot-shirt-mockup.is-light .ot-shirt-back-neck {
  background: rgba(0, 0, 0, 0.1);
}

.ot-shirt-back-panel {
  position: absolute;
  left: 50%;
  top: 20%;
  z-index: 3;
  width: 50%;
  height: 55%;
  border-radius: 999px 999px 32px 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 55%, rgba(0, 0, 0, 0.08));
  transform: translateX(-50%) translateZ(18px);
}

.ot-shirt-artwork {
  position: absolute;
  left: 50%;
  top: 31%;
  z-index: 5;
  width: 42%;
  min-height: 24%;
  padding: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  transform: translateX(-50%) translateZ(26px);
}

.ot-shirt-artwork--back {
  top: 29%;
  width: 44%;
  min-height: 30%;
  border-style: solid;
  transform: translateX(-50%) translateZ(28px);
}

.ot-shirt-artwork.ot-placement-left-logo,
.ot-shirt-artwork.ot-placement-right-logo {
  top: 26%;
  width: 24%;
  min-height: 14%;
  padding: 7px;
}

.ot-shirt-artwork.ot-placement-left-logo {
  left: 38%;
}

.ot-shirt-artwork.ot-placement-right-logo {
  left: 62%;
}

.ot-shirt-artwork.ot-placement-chest {
  left: 50%;
  top: 31%;
  width: 42%;
  min-height: 24%;
}

.ot-shirt-mockup.is-light .ot-shirt-artwork {
  color: rgba(0, 0, 0, 0.66);
  border-color: rgba(0, 0, 0, 0.28);
}

.ot-shirt-artwork img {
  display: none;
  width: 100%;
  max-height: 118px;
  object-fit: contain;
}

.ot-shirt-artwork--back img {
  max-height: 150px;
}

.ot-shirt-artwork img.active {
  display: block;
}

.ot-shirt-artwork span {
  max-width: 140px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.ot-preview-copy {
  max-width: 360px;
  display: grid;
  gap: 4px;
  text-align: center;
}

.ot-preview-copy strong {
  font-size: 16px;
}

.ot-preview-copy span {
  color: #445;
  font-size: 12px;
  line-height: 1.5;
}

@keyframes ot-shirt-slow-rotate {
  0%, 100% {
    transform: rotateX(2deg) rotateY(-22deg);
  }
  50% {
    transform: rotateX(2deg) rotateY(22deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ot-shirt-mockup {
    animation: none;
    transform: rotateX(2deg) rotateY(-16deg);
  }
}

.ot-option-panel {
  padding: 18px;
  background: var(--ot-white);
  border: 1px solid var(--ot-border);
  border-radius: 10px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.08);
}

.ot-option-panel h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.ot-swatches,
.ot-sizes,
.ot-qty {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.ot-swatches button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #111;
  cursor: pointer;
}

.ot-swatches button:nth-child(2) { background: #ffffff; border: 1px solid #aaa; }
.ot-swatches button:nth-child(3) { background: #d71919; }
.ot-swatches button:nth-child(4) { background: #f04a23; }
.ot-swatches button:nth-child(5) { background: #f2a900; }
.ot-swatches button:nth-child(6) { background: #dfc8ac; }

.ot-swatches button.active {
  outline: 2px solid var(--ot-black);
  outline-offset: 3px;
}

.ot-sizes button,
.ot-qty button,
.ot-qty span {
  min-width: 38px;
  height: 36px;
  border: 1px solid var(--ot-border);
  border-radius: 6px;
  background: var(--ot-white);
}

.ot-sizes .active {
  background: var(--ot-black);
  color: var(--ot-white);
}

.ot-qty span {
  display: grid;
  place-items: center;
}

.ot-custom-order-form {
  display: block;
}

.ot-custom-fields {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.ot-custom-fields label {
  display: grid;
  gap: 7px;
  color: #333;
  font-size: 12px;
  font-weight: 800;
}

.ot-custom-fields input,
.ot-custom-fields select,
.ot-custom-fields textarea {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--ot-border);
  border-radius: 6px;
  background: var(--ot-white);
  font: inherit;
}

.ot-custom-alert {
  margin-bottom: 16px;
  padding: 10px 12px;
  color: #8a1f1f;
  background: #ffecec;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.ot-custom-alert--success {
  color: #116033;
  background: #e7f7ed;
}

.ot-service-strip {
  padding: 34px 0;
}

.ot-service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ot-black);
  color: var(--ot-white);
  border-radius: 10px;
  overflow: hidden;
}

.ot-service-strip__grid div {
  min-height: 118px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ot-service-strip__grid i {
  grid-row: span 2;
  font-size: 28px;
}

.ot-service-strip__grid strong {
  font-size: 17px;
}

.ot-service-strip__grid span {
  color: #d5d5d5;
}

.ot-footer {
  padding: 48px 0 0;
  background: var(--ot-white);
  color: var(--ot-black);
}

.ot-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 70px;
  padding-bottom: 48px;
}

.ot-footer h3 {
  margin: 0 0 24px;
  font-size: 15px;
}

.ot-footer p,
.ot-footer a {
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}

.ot-footer a {
  display: block;
  margin-bottom: 8px;
}

.ot-footer__gstin {
  margin: 14px 0 0;
  letter-spacing: 0.3px;
}

.ot-social {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.ot-newsletter {
  margin-top: 20px;
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 54px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  overflow: hidden;
}

.ot-newsletter input,
.ot-newsletter button {
  border: 0;
  background: var(--ot-white);
}

.ot-newsletter input {
  padding: 0 18px;
}

.ot-footer__bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ot-border);
  color: #777;
}

.ot-footer__bottom div {
  display: flex;
  gap: 16px;
}

.ot-footer__partners {
  align-items: center;
  gap: 28px;
}

.ot-footer__partners img {
  width: auto;
  max-width: 190px;
  height: 58px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.ot-product-page {
  padding: 44px 0 70px;
  background: var(--ot-white);
}

.ot-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #777;
  font-size: 14px;
}

.ot-breadcrumbs a {
  color: #777;
  text-decoration: none;
}

.ot-breadcrumbs strong {
  color: var(--ot-black);
  font-weight: 600;
}

.ot-pdp-grid {
  display: grid;
  grid-template-columns: 116px minmax(360px, 1fr) 520px;
  gap: 18px 36px;
  align-items: start;
}

.ot-pdp-thumbs {
  display: grid;
  gap: 16px;
}

.ot-pdp-thumbs button {
  width: 104px;
  height: 104px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f8f8f8;
}

.ot-pdp-thumbs button.active {
  border-color: var(--ot-black);
}

.ot-pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.ot-pdp-image {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fafafa;
  border-radius: 10px;
}

.ot-pdp-image > button {
  position: absolute;
  top: 26px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ot-border);
  border-radius: 50%;
  background: var(--ot-white);
  font-size: 18px;
  cursor: pointer;
}

.ot-pdp-zoom-out {
  left: 26px;
  right: auto;
}

.ot-pdp-zoom-in {
  left: auto;
  right: 26px;
}

.ot-pdp-image > button:disabled {
  color: #999;
  cursor: not-allowed;
  opacity: 0.55;
}

.ot-pdp-image img {
  width: 88%;
  max-height: 680px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.18));
  transform: scale(1);
  transform-origin: center;
  transition: transform 180ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.ot-pdp-image img.is-draggable {
  cursor: grab;
  touch-action: none;
}

.ot-pdp-image img.is-dragging {
  cursor: grabbing;
  transition: none;
}

.ot-pdp-info {
  padding: 8px 0 0;
}

.ot-pdp-info h1 {
  max-width: 460px;
  margin: 0 0 20px;
  color: var(--ot-black);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
}

.ot-pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.ot-pdp-rating span {
  color: #f7a800;
  letter-spacing: 2px;
}

.ot-pdp-rating strong {
  font-size: 16px;
}

.ot-pdp-rating em,
.ot-tax {
  color: var(--ot-muted);
  font-style: normal;
}

.ot-pdp-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.ot-pdp-price strong {
  font-size: 34px;
}

.ot-pdp-price span {
  color: #999;
  font-size: 20px;
  text-decoration: line-through;
}

.ot-pdp-price em {
  padding: 9px 12px;
  color: #ff2d2d;
  background: #ffe9e9;
  border-radius: 6px;
  font-style: normal;
  font-weight: 800;
}

.ot-tax {
  margin: 0 0 34px;
}

.ot-pdp-block {
  margin-bottom: 30px;
}

.ot-pdp-block h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.ot-pdp-block h2 span {
  color: #333;
  font-weight: 500;
}

.ot-pdp-swatches,
.ot-pdp-sizes,
.ot-pdp-qty,
.ot-pdp-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ot-pdp-swatches button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ot-border);
  border-radius: 50%;
  background: #050505;
}

.ot-pdp-swatches button.active {
  outline: 2px solid var(--ot-black);
  outline-offset: 3px;
}

.ot-pdp-sizes button {
  min-width: 62px;
  height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: var(--ot-white);
  font-size: 16px;
}

.ot-pdp-sizes button.active {
  background: var(--ot-black);
  color: var(--ot-white);
}

.ot-size-chart {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  color: var(--ot-black);
  font-size: 14px;
}

.ot-pdp-qty {
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--ot-border);
  border-radius: 8px;
}

.ot-pdp-qty button,
.ot-pdp-qty span {
  width: 54px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--ot-white);
}

.ot-pdp-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 32px;
}

.ot-pdp-actions a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 7px;
  color: var(--ot-black);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.ot-pdp-actions button {
  min-height: 58px;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.ot-pdp-cart {
  border: 1px solid var(--ot-black);
  background: var(--ot-black);
  color: var(--ot-white) !important;
}

.ot-pdp-buy {
  border: 1px solid var(--ot-black);
  background: var(--ot-white);
}

.ot-checkout-page {
  min-height: 70vh;
  padding: 48px 0 80px;
  background: #f6f8f9;
}

.ot-checkout-steps {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.ot-checkout-steps span,
.ot-checkout-steps strong {
  padding: 13px;
  border-radius: 8px;
  background: #e5eaed;
}

.ot-checkout-steps strong {
  background: #111;
  color: #fff;
}

.ot-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.ot-checkout-card {
  padding: 28px;
  border: 1px solid #dce3e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(26, 39, 46, 0.07);
}

.ot-checkout-card h1,
.ot-checkout-card h2 {
  margin-top: 0;
}

.ot-checkout-fields {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ot-checkout-fields label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.ot-checkout-fields .wide {
  grid-column: 1 / -1;
}

.ot-checkout-fields input,
.ot-checkout-fields textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd4d9;
  border-radius: 8px;
  box-sizing: border-box;
  font: inherit;
}

.ot-checkout-primary {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.ot-order-product {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
}

.ot-order-product img {
  width: 92px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
}

.ot-order-product div,
.ot-order-product span {
  display: block;
}

.ot-order-product span {
  margin-top: 5px;
  color: #667078;
}

.ot-order-total {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #dce3e7;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}

.ot-payment-note {
  margin-top: 18px;
  color: #5f6b72;
}

.ot-checkout-success {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ot-checkout-success > i {
  color: #179447;
  font-size: 64px;
}

.ot-tracking-number {
  max-width: 440px;
  margin: 24px auto;
  padding: 18px;
  border: 1px dashed #111;
  border-radius: 10px;
  background: #f4f7f8;
}

.ot-tracking-number span,
.ot-tracking-number strong {
  display: block;
}

.ot-tracking-number strong {
  margin-top: 6px;
  font-size: 22px;
  letter-spacing: 1px;
}

.ot-success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ot-checkout-secondary {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid #111;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.ot-track-layout {
  display: grid;
  gap: 24px;
}

.ot-track-form {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.ot-track-form form {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ot-track-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.ot-track-form input {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #cbd4d9;
  border-radius: 8px;
  font: inherit;
}

.ot-track-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.ot-track-result__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.ot-track-result__head span,
.ot-track-result__head strong {
  display: block;
}

.ot-track-result__head strong {
  margin-top: 5px;
  font-size: 20px;
}

.ot-track-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: #dff4e6;
  color: #126a32;
  font-weight: 800;
}

.ot-track-progress {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.ot-track-progress div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #a0a8ad;
  text-align: center;
}

.ot-track-progress div::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 50%;
  width: 100%;
  height: 3px;
  background: #d9dfe2;
  z-index: 0;
}

.ot-track-progress div:first-child::before {
  display: none;
}

.ot-track-progress i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d9dfe2;
  color: #fff;
  z-index: 1;
}

.ot-track-progress div.active {
  color: #111;
  font-weight: 800;
}

.ot-track-progress div.active::before,
.ot-track-progress div.active i {
  background: #179447;
}

.ot-track-cancelled {
  margin: 24px 0;
  padding: 16px;
  border-radius: 8px;
  background: #fde3e3;
  color: #a01818;
  font-weight: 800;
}

.ot-track-cancelled span {
  margin-left: 5px;
}

.ot-track-cancelled p {
  margin: 10px 0 0;
  font-weight: 500;
}

.ot-track-details {
  padding-top: 18px;
  border-top: 1px solid #dce3e7;
}

.ot-shipping-details {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 4px solid #179447;
  border-radius: 6px;
  background: #eef8f1;
}

.ot-shipping-details p {
  margin: 5px 0;
}

.ot-refund-details {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 4px solid #c48312;
  border-radius: 6px;
  background: #fff7e6;
}

.ot-refund-details p {
  margin: 5px 0;
}

.ot-about-page {
  --about-gold: #aa7933;
  padding: 42px 0 56px;
  background:
    radial-gradient(circle at 13% 18%, rgba(188, 147, 89, 0.07), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(188, 147, 89, 0.06), transparent 30%),
    #fbf7f1;
  color: #111;
}

.ot-about-shell {
  width: min(924px, calc(100% - 40px));
  margin: 0 auto;
}

.ot-about-hero {
  display: grid;
  grid-template-columns: 42.5% 57.5%;
  gap: 40px;
  align-items: start;
}

.ot-about-brand {
  width: 210px;
  margin: -28px 0 42px;
  text-align: center;
}

.ot-about-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ot-about-brand span {
  display: block;
  margin-top: -4px;
  font-size: 6px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.ot-about-kicker {
  margin: 0 0 18px;
  color: var(--about-gold);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ot-about-copy h1 {
  margin: 0;
  font-size: clamp(58px, 6.4vw, 70px);
  line-height: 1.1;
  letter-spacing: 0.4px;
}

.ot-about-rule {
  width: 108px;
  height: 2px;
  margin: 32px 0 34px;
  display: block;
  background: var(--about-gold);
}

.ot-about-story {
  font-size: 18px;
  line-height: 1.56;
}

.ot-about-story p {
  margin: 0 0 24px;
}

.ot-about-signature {
  margin-top: 28px;
}

.ot-about-signature strong {
  display: block;
  color: var(--about-gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.ot-about-signature span {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.ot-about-portrait {
  height: 910px;
  margin: 98px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: #eee4d7;
}

.ot-about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.ot-about-features {
  margin-top: 42px;
  padding: 28px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 30px rgba(118, 85, 43, 0.035);
}

.ot-about-features article {
  min-height: 162px;
  padding: 0 24px;
  display: grid;
  align-content: start;
  justify-items: center;
  border-right: 1px solid #d8cec2;
  text-align: center;
}

.ot-about-features article:last-child {
  border-right: 0;
}

.ot-about-features img {
  width: 69px;
  height: 69px;
  margin-bottom: 13px;
  object-fit: contain;
}

.ot-about-features h2 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.ot-about-features p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.ot-about-quote {
  margin: 24px 0 0;
  padding: 31px 56px 29px;
  display: grid;
  grid-template-columns: 56px 1fr 230px;
  gap: 20px;
  align-items: center;
  border-radius: 16px;
  background: rgba(243, 234, 223, 0.62);
}

.ot-about-quote-mark {
  align-self: start;
  color: var(--about-gold);
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.8;
}

.ot-about-quote p {
  margin: 0;
  font-size: 21px;
  font-style: italic;
  line-height: 1.45;
}

.ot-about-quote-rule {
  width: 86px;
  height: 2px;
  margin-top: 18px;
  display: block;
  background: var(--about-gold);
}

.ot-about-quote footer {
  display: grid;
  gap: 9px;
}

.ot-about-quote footer strong {
  color: var(--about-gold);
  font-size: 17px;
  text-transform: uppercase;
}

.ot-about-quote footer span {
  font-size: 15px;
}

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

.ot-cart-item {
  padding: 18px 0;
  border-bottom: 1px solid #dce3e7;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.ot-cart-item img {
  width: 110px;
  height: 130px;
  border-radius: 8px;
  object-fit: cover;
}

.ot-cart-item h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.ot-cart-item__actions {
  display: grid;
  gap: 10px;
  text-align: center;
}

.ot-cart-remove {
  color: #a01818;
}

.ot-pdp-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 28px;
  gap: 14px;
  align-items: center;
}

.ot-pdp-benefits div {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.ot-pdp-benefits i {
  font-size: 24px;
}

.ot-pdp-benefits strong {
  font-size: 11px;
}

.ot-pdp-benefits span {
  color: var(--ot-muted);
  font-size: 10px;
}

.ot-pdp-benefits button {
  border: 0;
  background: transparent;
}

.ot-pdp-details {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
  margin-top: 64px;
  padding: 24px;
  border: 1px solid var(--ot-border);
  border-radius: 10px;
}

.ot-tab-head {
  display: flex;
  gap: 42px;
  border-bottom: 1px solid var(--ot-border);
}

.ot-tab-head button {
  padding: 0 0 20px;
  border: 0;
  background: transparent;
  color: var(--ot-black);
  font-size: 17px;
}

.ot-tab-head button.active {
  border-bottom: 3px solid var(--ot-black);
  font-weight: 800;
}

.ot-tab-copy {
  padding: 28px 22px 8px 0;
  color: #222;
  line-height: 1.8;
}

.ot-tab-panel[hidden] {
  display: none;
}

.ot-tab-copy ul {
  padding-left: 20px;
}

.ot-size-table-wrap {
  width: min(100%, 460px);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--ot-border);
  border-radius: 8px;
}

.ot-size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ot-white);
  table-layout: fixed;
}

.ot-size-table th,
.ot-size-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--ot-border);
  text-align: center;
  font-size: 16px;
}

.ot-size-table th:first-child,
.ot-size-table td:first-child {
  width: 64%;
  padding-right: 44px;
}

.ot-size-table th:last-child,
.ot-size-table td:last-child {
  width: 36%;
  padding-left: 34px;
}

.ot-size-table th,
.ot-size-table td:first-child {
  font-weight: 800;
}

.ot-size-table tr:last-child td {
  border-bottom: 0;
}

.ot-pdp-specs {
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--ot-border);
  border-radius: 10px;
}

.ot-pdp-specs div {
  display: grid;
  grid-template-columns: 34px 1fr 1.15fr;
  align-items: center;
  gap: 16px;
}

.ot-pdp-specs i {
  font-size: 22px;
}

.ot-pdp-specs span {
  color: var(--ot-muted);
}

.ot-related {
  margin-top: 42px;
}

.ot-related h2 {
  margin: 0 0 28px;
  font-size: 26px;
}

.ot-policy-page {
  background: #f7fbfc;
}

.ot-policy-hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px),
    linear-gradient(180deg, #d9ebf0 0%, #c4dce5 100%);
  background-size: 8px 8px, auto;
  color: #111111;
}

.ot-policy-hero__inner {
  display: grid;
  gap: 14px;
}

.ot-policy-hero p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ot-policy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
}

.ot-policy-hero span {
  max-width: 760px;
  color: #2d3742;
  font-size: 18px;
  line-height: 1.7;
}

.ot-policy-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0 72px;
}

.ot-policy-nav {
  position: sticky;
  top: 130px;
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce9ee;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(20, 33, 61, 0.05);
}

.ot-policy-nav a {
  min-height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  color: #2f3a45;
  border-bottom: 1px solid #eef4f6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.ot-policy-nav a:last-child {
  border-bottom: 0;
}

.ot-policy-nav a:hover {
  color: #111111;
  background: #eef7fa;
}

.ot-policy-content {
  display: grid;
  gap: 18px;
}

.ot-policy-card {
  scroll-margin-top: 132px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dce9ee;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(20, 33, 61, 0.06);
}

.ot-policy-card h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: 24px;
}

.ot-policy-card h3 {
  margin: 18px 0 8px;
  color: #111111;
  font-size: 17px;
}

.ot-policy-card p {
  margin: 0 0 16px;
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}

.ot-policy-card ul,
.ot-policy-card ol {
  margin: 0;
  padding-left: 22px;
  color: #344054;
  line-height: 1.85;
}

.ot-policy-card li + li {
  margin-top: 4px;
}

.ot-policy-card a {
  color: #111111;
  font-weight: 900;
}

.ot-policy-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ot-policy-contact a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #111111;
  background: #eef7fa;
  border: 1px solid #c7dce4;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
}

.ot-policy-card--contact strong {
  display: block;
  margin-top: 22px;
  color: #111111;
  font-size: 17px;
}

.ot-shipping-banner {
  scroll-margin-top: 132px;
  padding: 22px;
  display: grid;
  grid-template-columns: 48px repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
  color: #111111;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1px),
    linear-gradient(180deg, #d9ebf0 0%, #c4dce5 100%);
  background-size: 8px 8px, auto;
  border: 1px solid #b8d2dc;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(20, 33, 61, 0.06);
}

.ot-shipping-banner i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 8px;
  font-size: 22px;
}

.ot-shipping-banner strong,
.ot-shipping-banner span {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 7px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.ot-account-page {
  padding: 70px 0;
  background: #f7f7f7;
}

.ot-account-card,
.ot-account-dashboard {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.ot-account-card {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 48px;
  align-items: center;
  padding: 46px;
  background: var(--ot-white);
  border: 1px solid var(--ot-border);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

.ot-account-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ot-account-card h1,
.ot-account-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.ot-account-card p,
.ot-account-panel p {
  color: var(--ot-muted);
  line-height: 1.7;
}

.ot-account-form {
  display: grid;
  gap: 16px;
}

.ot-account-login-stack {
  display: grid;
  gap: 0;
}

.ot-account-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-weight: 800;
}

.ot-account-form input,
.ot-account-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  font: inherit;
}

.ot-account-form button,
.ot-account-logout {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ot-black);
  color: var(--ot-white);
  text-decoration: none;
  font-weight: 900;
}

.ot-account-form a {
  color: var(--ot-black);
  font-weight: 900;
}

.ot-account-alert {
  padding: 12px;
  color: #8a1f1f;
  background: #ffecec;
  border-radius: 7px;
}

.ot-account-alert.success {
  color: #166534;
  background: #eaf7ee;
}

.ot-account-note {
  margin: 0;
  padding: 12px;
  background: #f5f5f5;
  border: 1px solid #e2e2e2;
  border-radius: 7px;
}

.ot-account-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ot-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ot-account-divider::before,
.ot-account-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #dfdfdf;
}

.ot-account-password-form {
  margin-top: 16px;
}

.ot-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.ot-payment-methods button {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #d6dbe5;
  border-radius: 9px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 3px;
  align-items: center;
  background: #ffffff;
  color: #111111;
  text-align: left;
  cursor: pointer;
}

.ot-payment-methods button.active {
  border-color: #111111;
  box-shadow: 0 0 0 2px #111111 inset;
}

.ot-payment-methods i {
  grid-row: span 2;
  font-size: 22px;
}

.ot-payment-methods span {
  font-weight: 900;
}

.ot-payment-methods small {
  color: #5f6b72;
  font-weight: 700;
}

.ot-cod-box {
  margin: 20px 0;
}

.ot-coupon-box {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  background: #f7fbfc;
  border: 1px solid #dce9ee;
  border-radius: 8px;
}

.ot-coupon-box label {
  color: #111111;
  font-weight: 900;
}

.ot-coupon-box > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ot-coupon-box input {
  min-height: 44px;
  border: 1px solid #d6dbe5;
  border-radius: 7px;
}

.ot-coupon-box button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  background: #111111;
  color: #ffffff;
  font-weight: 900;
}

.ot-coupon-box .ot-coupon-remove {
  width: max-content;
  max-width: 100%;
  color: #111111;
  background: #ffffff;
  border: 1px solid #111111;
}

.ot-coupon-message,
.ot-coupon-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.ot-coupon-message {
  color: #176b32;
  background: #e9f8ee;
}

.ot-coupon-error {
  color: #8a1f1f;
  background: #ffecec;
}

.ot-order-line {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #555;
  border-top: 1px solid #edf0f2;
}

.ot-order-line strong {
  color: #111111;
}

.ot-order-discount strong {
  color: #176b32;
}

.ot-account-dashboard {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.ot-account-panel {
  padding: 28px;
  background: var(--ot-white);
  border: 1px solid var(--ot-border);
  border-radius: 10px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06);
}

.ot-account-panel h2 {
  margin: 0 0 22px;
}

.ot-account-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ot-account-panel.wide,
.ot-account-grid .wide {
  grid-column: 1 / -1;
}

.ot-account-table {
  overflow-x: auto;
}

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

.ot-account-table th,
.ot-account-table td {
  padding: 14px;
  border-bottom: 1px solid var(--ot-border);
  text-align: left;
}

.ot-banner-hero {
  padding: 54px 0 34px;
  background: #ffffff;
}

.ot-banner-hero__image {
  width: 100%;
  overflow: hidden;
  background: #050505;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.ot-banner-hero__image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.ot-banner-hero__actions {
  justify-content: center;
  margin-top: 28px;
}

.ot-banner-hero .ot-benefits {
  margin-top: 36px;
}

@media (max-width: 720px) {
  .ot-banner-hero {
    padding-top: 28px;
  }

  .ot-banner-hero__image img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1100px) {
  .ot-category-grid,
  .ot-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ot-customizer,
  .ot-pdp-grid,
  .ot-pdp-details {
    grid-template-columns: 1fr;
  }

  .ot-customizer {
    padding: 18px;
  }

  .ot-design-shirt,
  .ot-option-panel {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .ot-pdp-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

  .ot-pdp-image {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .ot-topbar__inner,
  .ot-header__inner,
  .ot-shop-hero__grid,
  .ot-benefits,
  .ot-service-strip__grid,
  .ot-footer__grid,
  .ot-footer__bottom {
    grid-template-columns: 1fr;
  }

  .ot-topbar__inner,
  .ot-footer__bottom {
    display: grid;
  }

  .ot-nav,
  .ot-header__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .ot-header__inner {
    gap: 18px;
    padding: 18px 0;
  }

  .ot-category-grid,
  .ot-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ot-shop-hero__visual {
    min-height: 300px;
  }
}

@media (max-width: 520px) {
  .ot-category-grid,
  .ot-products-grid {
    grid-template-columns: 1fr;
  }

  .ot-shop-hero__copy h1 {
    font-size: 46px;
  }

  .ot-customizer {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 14px;
    gap: 14px;
  }

  .ot-design-shirt {
    min-height: 300px;
    padding: 12px 10px;
  }

  .ot-shirt-preview {
    width: min(220px, 100%);
  }

  .ot-shirt-stage {
    gap: 10px;
  }

  .ot-shirt-artwork {
    width: 50%;
    min-height: 23%;
    padding: 7px;
  }

  .ot-shirt-artwork span {
    font-size: 10px;
  }

  .ot-option-panel {
    padding: 14px;
  }

  .ot-swatches,
  .ot-sizes,
  .ot-qty {
    flex-wrap: wrap;
  }
}

/* Soft editorial storefront inspired by the latest Off Theory reference */
.offtheory-site {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px),
    linear-gradient(180deg, #edf7f8 0%, #f8fbfb 45%, #d7e8ee 100%);
  background-size: 9px 9px, 13px 13px, auto;
}

.ot-header {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: 18px;
}

.ot-header__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 98px;
  grid-template-columns: 1fr auto;
  padding: 0 34px;
  background: rgba(246, 252, 252, 0.92);
  border: 1px solid rgba(182, 205, 211, 0.55);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 20px 60px rgba(70, 102, 111, 0.16);
}

.ot-brand {
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.ot-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.ot-brand strong {
  color: var(--ot-black);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.ot-header__actions a:not(.ot-cart) {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ot-black);
  font-size: 30px;
}

.ot-cart {
  min-height: 58px;
  border-radius: 18px;
  font-size: 18px;
}

.ot-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  justify-content: center;
  gap: clamp(24px, 6vw, 84px);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px),
    linear-gradient(180deg, #bdd4df 0%, #a9c2cf 100%);
  background-size: 8px 8px, auto;
}

.ot-nav a {
  position: relative;
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.ot-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.ot-aezy-hero {
  padding: 72px 0 0;
}

.ot-aezy-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.35fr 0.72fr;
  gap: 34px;
  align-items: center;
}

.ot-aezy-copy span {
  color: #89b8cf;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.ot-aezy-copy h1 {
  margin: 18px 0 28px;
  color: #111;
  font-family: "Courier New", monospace;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ot-aezy-copy p {
  max-width: 310px;
  color: #222;
  font-family: "Courier New", monospace;
  font-weight: 700;
  line-height: 1.45;
}

.ot-aezy-copy > a,
.ot-size-link {
  color: #8db5c4;
  font-weight: 800;
}

.ot-aezy-copy img {
  width: 210px;
  height: 170px;
  margin-top: 24px;
  object-fit: cover;
  object-position: center;
  border: 8px solid rgba(190, 215, 225, 0.75);
}

.ot-aezy-product {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.ot-aezy-product > img {
  width: min(610px, 100%);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(74, 92, 96, 0.28));
}

.ot-aezy-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  text-align: center;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
}

.ot-aezy-caption span {
  display: block;
  color: #9ab9c7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
}

.ot-aezy-caption strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: 2px;
}

.ot-aezy-options {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.ot-aezy-options h2 {
  margin: 16px 0 4px;
  font-family: "Courier New", monospace;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.ot-aezy-size {
  display: flex;
  gap: 12px;
}

.ot-aezy-size button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-weight: 900;
}

.ot-aezy-size .active {
  background: #8bb5cb;
}

.ot-aezy-colors {
  display: grid;
  grid-template-columns: repeat(2, 72px);
  gap: 14px 18px;
}

.ot-aezy-colors button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.ot-aezy-colors span {
  width: 60px;
  height: 60px;
  margin: 0 auto 5px;
  display: block;
  border: 2px solid #111;
  border-radius: 6px;
}

.ot-aezy-outline,
.ot-aezy-cart {
  width: 170px;
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-family: "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.ot-aezy-outline {
  border: 3px solid #111;
  background: transparent;
}

.ot-aezy-cart {
  background: #9fc4d5;
}

.ot-aezy-benefits {
  margin-top: 56px;
  padding: 38px calc((100% - min(1180px, calc(100% - 32px))) / 2);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
    linear-gradient(180deg, #b8cfdb 0%, #adc7d4 100%);
  background-size: 8px 8px, auto;
}

.ot-aezy-benefits div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.ot-aezy-benefits i {
  width: 76px;
  height: 76px;
  border: 3px solid #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
}

.ot-aezy-benefits strong {
  font-size: 18px;
  font-weight: 900;
}

.ot-aezy-categories {
  padding-top: 34px;
  background: rgba(255, 255, 255, 0.34);
}

.ot-aezy-categories .ot-shop-title {
  margin-bottom: 30px;
  text-transform: uppercase;
}

.ot-aezy-categories .ot-category-grid {
  grid-template-columns: repeat(6, 1fr);
}

.ot-aezy-categories .ot-category-card {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ot-aezy-categories .ot-category-card img {
  width: 128px;
  height: 128px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.ot-aezy-categories .ot-category-card h3 {
  min-height: 42px;
  font-size: 16px;
  font-weight: 900;
}

.ot-aezy-categories .ot-category-card p {
  display: none;
}

.ot-products-grid .ot-product-card {
  border-color: rgba(160, 190, 202, 0.55);
}

.ot-service-strip {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
    linear-gradient(180deg, #b8cfdb 0%, #adc7d4 100%);
  background-size: 8px 8px, auto;
}

.ot-service-strip__grid {
  background: transparent;
  color: #111;
  border-radius: 0;
}

.ot-service-strip__grid div {
  border-color: rgba(0, 0, 0, 0.12);
}

.ot-service-strip__grid span {
  color: #333;
}

.ot-footer {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px),
    linear-gradient(180deg, #d9ebf0 0%, #c4dce5 100%);
  background-size: 8px 8px, auto;
}

@media (max-width: 980px) {
  .ot-header__inner,
  .ot-aezy-grid,
  .ot-aezy-benefits,
  .ot-aezy-categories .ot-category-grid {
    grid-template-columns: 1fr;
  }

  .ot-header__inner {
    border-radius: 0 0 28px 28px;
  }

  .ot-nav {
    min-height: auto;
    padding: 24px 12px;
    flex-wrap: wrap;
    gap: 22px;
  }

  .ot-aezy-product {
    min-height: 420px;
  }

  .ot-aezy-options {
    justify-items: center;
  }

  .ot-checkout-grid {
    grid-template-columns: 1fr;
  }

  .ot-about-hero {
    grid-template-columns: 1fr;
  }

  .ot-about-brand {
    margin-top: -18px;
  }

  .ot-about-copy h1 {
    font-size: clamp(52px, 10vw, 70px);
  }

  .ot-about-story br {
    display: none;
  }

  .ot-about-portrait {
    width: min(100%, 560px);
    height: auto;
    aspect-ratio: 497 / 910;
    margin: 8px auto 0;
  }

  .ot-about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ot-about-features article:nth-child(2) {
    border-right: 0;
  }

  .ot-about-features article:nth-child(-n+2) {
    padding-bottom: 24px;
    border-bottom: 1px solid #d8cec2;
  }

  .ot-about-features article:nth-child(n+3) {
    padding-top: 24px;
  }

  .ot-about-quote {
    grid-template-columns: 48px 1fr;
  }

  .ot-about-quote footer {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .ot-checkout-page {
    padding-top: 24px;
  }

  .ot-checkout-steps,
  .ot-checkout-fields {
    grid-template-columns: 1fr;
  }

  .ot-checkout-fields .wide {
    grid-column: auto;
  }

  .ot-checkout-card {
    padding: 20px;
  }

  .ot-pdp-actions,
  .ot-cart-item {
    grid-template-columns: 1fr;
  }

  .ot-cart-item__actions {
    justify-items: start;
  }

  .ot-track-form form,
  .ot-track-progress {
    grid-template-columns: 1fr;
  }

  .ot-track-progress div {
    grid-template-columns: 38px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .ot-track-progress div::before {
    top: -24px;
    left: 18px;
    width: 3px;
    height: 28px;
  }

  .ot-about-page {
    padding-top: 30px;
  }

  .ot-about-shell {
    width: min(100% - 28px, 924px);
  }

  .ot-about-brand {
    width: 180px;
    margin: -20px auto 36px;
  }

  .ot-about-kicker {
    font-size: 20px;
  }

  .ot-about-copy h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .ot-about-story {
    font-size: 17px;
  }

  .ot-about-features {
    grid-template-columns: 1fr;
    padding: 10px 24px;
  }

  .ot-about-features article,
  .ot-about-features article:nth-child(2),
  .ot-about-features article:nth-child(n+3) {
    min-height: 0;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid #d8cec2;
  }

  .ot-about-features article:last-child {
    border-bottom: 0;
  }

  .ot-about-quote {
    padding: 28px 24px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .ot-about-quote-mark {
    font-size: 56px;
  }

  .ot-about-quote p {
    font-size: 18px;
  }
}

/* Consolidated responsive layer */
img,
svg,
video {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .ot-shop-container {
    width: min(100% - 28px, 960px);
  }

  .ot-header__inner,
  .ot-nav {
    width: min(100% - 28px, 960px);
  }

  .ot-header__inner {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 8px 22px;
  }

  .ot-brand img {
    width: 58px;
    height: 58px;
  }

  .ot-brand strong {
    font-size: 25px;
  }

  .ot-header__actions {
    gap: 10px;
  }

  .ot-header__actions a:not(.ot-cart) {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .ot-cart {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 15px;
  }

  .ot-nav {
    min-height: 72px;
    padding: 0 20px;
    justify-content: flex-start;
    gap: 32px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .ot-nav::-webkit-scrollbar {
    display: none;
  }

  .ot-nav a {
    flex: 0 0 auto;
    font-size: 15px;
  }

  .ot-nav a:first-child::after {
    display: none;
  }

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

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

  .ot-benefits,
  .ot-service-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .ot-pdp-grid {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .ot-pdp-info {
    grid-column: 1 / -1;
    width: min(100%, 720px);
    margin: 12px auto 0;
  }

  .ot-pdp-image {
    min-height: 560px;
  }

  .ot-pdp-details,
  .ot-account-dashboard {
    grid-template-columns: 1fr;
  }

  .ot-account-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 32px;
  }

  .ot-policy-shell {
    grid-template-columns: 1fr;
  }

  .ot-policy-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ot-policy-nav a {
    justify-content: center;
    text-align: center;
  }

  .ot-shipping-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-shipping-banner i {
    grid-column: 1 / -1;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .ot-header {
    padding-top: 8px;
  }

  .ot-header__inner {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 0 0 24px 24px;
  }

  .ot-brand {
    min-width: 0;
    gap: 10px;
  }

  .ot-brand img {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
  }

  .ot-brand strong {
    overflow: hidden;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ot-header__actions {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .ot-header__actions a:not(.ot-cart) {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .ot-cart {
    min-height: 40px;
    padding: 0 11px;
    border-radius: 11px;
    font-size: 13px;
  }

  .ot-nav {
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    gap: 26px;
  }

  .ot-nav a {
    font-size: 13px;
    letter-spacing: 0.3px;
  }

  .ot-banner-hero {
    padding: 24px 0 20px;
  }

  .ot-banner-hero__image {
    border-radius: 10px;
  }

  .ot-banner-hero__image img {
    aspect-ratio: 16 / 9;
  }

  .ot-shop-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .ot-shop-btn {
    flex: 1 1 190px;
    padding: 0 18px;
  }

  .ot-benefits {
    gap: 16px;
  }

  .ot-benefits div {
    min-height: 64px;
  }

  .ot-category-grid,
  .ot-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ot-product-card {
    padding: 12px;
  }

  .ot-product-card h3 {
    min-height: auto;
    margin-top: 12px;
  }

  .ot-customizer {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
  }

  .ot-design-shirt,
  .ot-option-panel {
    width: 100%;
  }

  .ot-service-strip {
    padding: 22px 0;
  }

  .ot-service-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-service-strip__grid div {
    min-height: 94px;
    padding: 20px;
    grid-template-columns: 34px 1fr;
  }

  .ot-service-strip__grid i {
    font-size: 23px;
  }

  .ot-service-strip__grid strong {
    font-size: 15px;
  }

  .ot-footer {
    padding-top: 34px;
  }

  .ot-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
    padding-bottom: 34px;
  }

  .ot-footer__bottom {
    min-height: 0;
    padding: 22px 0;
    display: grid;
    gap: 18px;
    justify-items: start;
  }

  .ot-footer__partners {
    flex-wrap: wrap;
  }

  .ot-footer__partners img {
    max-width: 135px;
    height: 44px;
  }

  .ot-product-page {
    padding: 24px 0 50px;
  }

  .ot-breadcrumbs {
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .ot-pdp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ot-pdp-thumbs {
    grid-template-columns: repeat(5, 82px);
    grid-row: 2;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
  }

  .ot-pdp-thumbs button {
    width: 82px;
    height: 82px;
  }

  .ot-pdp-image {
    grid-row: 1;
    min-height: 440px;
  }

  .ot-pdp-info {
    grid-column: auto;
    width: 100%;
  }

  .ot-pdp-info h1 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .ot-pdp-details {
    margin-top: 38px;
    padding: 18px;
  }

  .ot-tab-head {
    gap: 24px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .ot-tab-head button {
    flex: 0 0 auto;
  }

  .ot-pdp-benefits {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .ot-pdp-benefits button {
    display: none;
  }

  .ot-checkout-page,
  .ot-account-page {
    padding: 28px 0 50px;
  }

  .ot-checkout-grid,
  .ot-account-card,
  .ot-account-dashboard {
    grid-template-columns: 1fr;
  }

  .ot-account-card {
    width: min(100% - 28px, 680px);
    padding: 28px;
  }

  .ot-account-dashboard {
    width: min(100% - 28px, 760px);
  }

  .ot-account-grid {
    grid-template-columns: 1fr;
  }

  .ot-account-grid .wide {
    grid-column: auto;
  }

  .ot-track-form form {
    grid-template-columns: 1fr;
  }

  .ot-track-result__head {
    flex-wrap: wrap;
  }

  .ot-cart-item {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .ot-cart-item img {
    width: 90px;
    height: 108px;
  }

  .ot-cart-item__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-policy-hero {
    padding: 48px 0 38px;
  }

  .ot-policy-shell {
    padding: 28px 0 52px;
  }

  .ot-policy-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-policy-card {
    padding: 22px;
  }

  .ot-shipping-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ot-shop-container {
    width: calc(100% - 24px);
  }

  .ot-header__inner {
    width: calc(100% - 16px);
  }

  .ot-brand strong {
    display: none;
  }

  .ot-header-search {
    display: none;
  }

  .ot-cart span {
    font-size: 0;
  }

  .ot-cart span::after {
    content: "Cart";
    font-size: 12px;
  }

  .ot-cart span b {
    margin-left: 3px;
    font-size: 12px;
  }

  .ot-banner-hero__image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .ot-banner-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ot-shop-btn {
    width: 100%;
  }

  .ot-benefits,
  .ot-service-strip__grid,
  .ot-footer__grid {
    grid-template-columns: 1fr;
  }

  .ot-benefits {
    margin-top: 24px;
  }

  .ot-benefits div {
    min-height: 54px;
  }

  .ot-shop-section {
    padding: 32px 0;
  }

  .ot-shop-title,
  .ot-section-row h2 {
    font-size: 24px;
  }

  .ot-section-row {
    align-items: end;
    gap: 12px;
  }

  .ot-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-products-grid {
    grid-template-columns: 1fr;
  }

  .ot-category-card h3 {
    font-size: 13px;
  }

  .ot-product-card {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .ot-shirt-stage {
    grid-template-columns: 1fr;
  }

  .ot-shirt-preview {
    max-width: 250px;
    margin: 0 auto;
  }

  .ot-design-shirt {
    min-height: 0;
  }

  .ot-service-strip__grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .ot-service-strip__grid div:last-child {
    border-bottom: 0;
  }

  .ot-footer__grid {
    gap: 28px;
  }

  .ot-footer__brand img {
    width: 145px;
    height: auto;
  }

  .ot-footer__tagline {
    width: 100%;
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .ot-newsletter {
    width: 100%;
  }

  .ot-pdp-image {
    min-height: 340px;
  }

  .ot-pdp-image > button {
    top: 14px;
    width: 44px;
    height: 44px;
  }

  .ot-pdp-zoom-out {
    left: 14px;
  }

  .ot-pdp-zoom-in {
    right: 14px;
  }

  .ot-pdp-image img {
    width: 94%;
    max-height: 320px;
  }

  .ot-pdp-rating,
  .ot-pdp-price,
  .ot-pdp-sizes,
  .ot-pdp-swatches {
    flex-wrap: wrap;
  }

  .ot-pdp-price {
    gap: 10px 14px;
  }

  .ot-pdp-price strong {
    font-size: 29px;
  }

  .ot-pdp-price span {
    font-size: 17px;
  }

  .ot-pdp-sizes button {
    min-width: 52px;
  }

  .ot-pdp-actions {
    grid-template-columns: 1fr;
  }

  .ot-pdp-details {
    padding: 14px;
  }

  .ot-pdp-specs {
    padding: 18px 14px;
  }

  .ot-pdp-specs div {
    grid-template-columns: 28px 1fr;
  }

  .ot-pdp-specs span {
    grid-column: 2;
  }

  .ot-checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    gap: 8px;
    scrollbar-width: none;
  }

  .ot-checkout-steps span,
  .ot-checkout-steps strong {
    min-width: 0;
  }

  .ot-checkout-card,
  .ot-account-panel {
    padding: 18px;
  }

  .ot-checkout-fields {
    grid-template-columns: 1fr;
  }

  .ot-checkout-fields .wide {
    grid-column: auto;
  }

  .ot-order-product {
    grid-template-columns: 76px 1fr;
  }

  .ot-order-product img {
    width: 76px;
    height: 92px;
  }

  .ot-checkout-primary,
  .ot-checkout-secondary,
  .ot-account-form button {
    width: 100%;
  }

  .ot-track-progress {
    grid-template-columns: 1fr;
  }

  .ot-track-progress div {
    grid-template-columns: 38px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .ot-track-progress div::before {
    top: -24px;
    left: 18px;
    right: auto;
    width: 3px;
    height: 28px;
  }

  .ot-track-details,
  .ot-shipping-details,
  .ot-refund-details {
    overflow-wrap: anywhere;
  }

  .ot-track-result__head strong,
  .ot-tracking-number strong {
    overflow-wrap: anywhere;
    font-size: 18px;
  }

  .ot-cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .ot-cart-item img {
    width: 72px;
    height: 88px;
  }

  .ot-cart-item h2 {
    font-size: 17px;
  }

  .ot-cart-item__actions {
    grid-template-columns: 1fr;
  }

  .ot-account-card {
    width: calc(100% - 24px);
    padding: 20px;
  }

  .ot-account-card h1,
  .ot-account-panel h1 {
    font-size: 36px;
  }

  .ot-account-table {
    margin: 0 -18px;
    padding: 0 18px;
  }

  .ot-policy-hero h1 {
    font-size: 38px;
  }

  .ot-policy-hero span,
  .ot-policy-card p {
    font-size: 15px;
  }

  .ot-policy-nav {
    grid-template-columns: 1fr;
  }

  .ot-policy-contact {
    display: grid;
  }

  .ot-policy-contact a {
    justify-content: center;
    text-align: center;
  }

  .ot-coupon-box > div {
    grid-template-columns: 1fr;
  }

  .ot-payment-methods {
    grid-template-columns: 1fr;
  }

  .ot-coupon-box .ot-coupon-remove {
    width: 100%;
  }
}

/* Keep the generated hero banner visible on tablet and mobile */
.ot-banner-hero__image {
  background: #ffffff;
}

.ot-banner-hero__image img {
  height: auto !important;
  aspect-ratio: 1897 / 829 !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 820px) {
  .ot-banner-hero {
    padding-top: 18px;
  }

  .ot-banner-hero__image {
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(70, 102, 111, 0.14);
  }
}

@media (max-width: 560px) {
  .ot-banner-hero {
    padding-top: 12px;
  }
}

/* Product page mobile polish */
@media (max-width: 620px) {
  .ot-product-page {
    padding-top: 16px;
  }

  .ot-pdp-info h1 {
    font-size: 24px !important;
    line-height: 1.18;
  }

  .ot-pdp-rating {
    gap: 7px;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .ot-pdp-price {
    gap: 10px;
  }

  .ot-pdp-price strong {
    font-size: 25px !important;
  }

  .ot-pdp-price span {
    font-size: 15px !important;
  }

  .ot-pdp-price em {
    padding: 7px 9px;
    font-size: 13px;
  }

  .ot-tax {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .ot-pdp-block {
    margin-bottom: 22px;
  }

  .ot-pdp-block h2 {
    font-size: 16px;
  }

  .ot-pdp-swatches button {
    width: 34px;
    height: 34px;
  }

  .ot-pdp-sizes {
    gap: 10px;
  }

  .ot-pdp-sizes button {
    min-width: 48px !important;
    height: 44px;
    font-size: 15px;
  }

  .ot-pdp-qty {
    width: 100%;
    max-width: 240px;
  }

  .ot-pdp-qty button,
  .ot-pdp-qty span {
    width: 33.333%;
    height: 40px;
  }

  .ot-pdp-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr) !important;
    gap: 12px;
    margin: 18px 0 26px;
  }

  .ot-pdp-actions button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: visible;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .ot-pdp-buy {
    color: #111111 !important;
    background: #ffffff !important;
    border: 1px solid #111111 !important;
  }

  .ot-pdp-benefits {
    grid-template-columns: repeat(4, minmax(76px, 1fr)) !important;
    gap: 10px;
    overflow-x: auto;
  }

  .ot-pdp-benefits i {
    font-size: 24px;
  }

  .ot-pdp-benefits strong {
    font-size: 12px;
    line-height: 1.2;
  }

  .ot-pdp-benefits span {
    font-size: 11px;
    line-height: 1.25;
  }

  .ot-pdp-image {
    min-height: 360px;
    max-height: 70vh;
  }

  .ot-pdp-image img {
    width: 92%;
    max-height: 340px;
  }

  .ot-pdp-thumbs {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .ot-pdp-thumbs button {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .ot-pdp-details {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
    padding: 12px;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
  }

  .ot-tab-head {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    white-space: normal;
  }

  .ot-tab-head button {
    min-width: 0;
    padding: 12px 6px 13px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .ot-tab-head button.active {
    border-bottom-width: 3px;
  }

  .ot-tab-copy {
    width: 100%;
    max-width: 100%;
    padding: 20px 4px 8px;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.65;
    font-size: 15px;
    box-sizing: border-box;
  }

  .ot-tab-copy p,
  .ot-tab-copy li {
    max-width: 100%;
  }

  .ot-tab-copy ul {
    padding-left: 18px;
  }

  .ot-size-table-wrap {
    width: 100%;
    margin: 18px 0 0;
    border: 0;
    overflow-x: visible;
  }

  .ot-size-table {
    table-layout: auto;
  }

  .ot-size-table th,
  .ot-size-table td {
    padding: 9px 4px;
    font-size: 14px;
    text-align: left;
  }

  .ot-size-table th:first-child,
  .ot-size-table td:first-child,
  .ot-size-table th:last-child,
  .ot-size-table td:last-child {
    width: auto;
    padding-left: 4px;
    padding-right: 4px;
  }

  .ot-pdp-specs {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 16px;
    gap: 18px;
    box-sizing: border-box;
  }

  .ot-pdp-specs div {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
  }

  .ot-pdp-specs span {
    grid-column: 2;
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* Header navigation corrections */
@media (min-width: 1101px) {
  .ot-header__inner {
    min-height: 92px;
  }

  .ot-nav {
    min-height: 82px;
    padding: 0 38px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .ot-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(13px, 1.15vw, 16px);
    line-height: 1.2;
  }

  .ot-nav a:first-child::after {
    bottom: -17px;
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .ot-nav {
    width: min(100% - 28px, 960px);
    min-height: 72px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    white-space: normal;
  }

  .ot-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .ot-header__inner {
    width: calc(100% - 20px);
  }

  .ot-menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-size: 19px;
  }

  .ot-nav {
    width: calc(100% - 20px);
    min-height: 0;
    padding: 12px 14px 14px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    overflow: visible;
    white-space: normal;
  }

  .ot-nav a {
    min-height: 42px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 52, 62, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.34);
    text-align: center;
    white-space: normal;
    font-size: 12px;
    line-height: 1.25;
  }

  .ot-header.is-menu-open .ot-nav {
    display: grid;
  }

  .ot-nav a:first-child::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .ot-header__inner {
    min-height: 66px;
    padding: 7px 12px;
  }

  .ot-brand img {
    width: 46px;
    height: 46px;
  }

  .ot-header__actions a:not(.ot-cart) {
    width: 38px;
    height: 38px;
  }

  .ot-cart {
    min-height: 40px;
    padding: 0 12px;
  }

  .ot-cart span,
  .ot-cart span::after {
    font-size: 12px;
  }

  .ot-cart span::after {
    content: none;
  }

  .ot-nav {
    padding: 10px;
    gap: 7px;
  }

  .ot-nav a {
    min-height: 40px;
    padding: 7px 6px;
    font-size: 11px;
  }
}

/* Customer dashboard */
.ot-dashboard-body .ot-header,
.ot-dashboard-body .ot-service-strip,
.ot-dashboard-body .ot-footer {
  display: none;
}

.ot-dashboard-body {
  background: #f4f6fb;
}

.ot-dashboard-page {
  min-height: 100vh;
  padding: 0;
  background: #f4f6fb;
  color: #1d2230;
}

.ot-dashboard-topbar {
  min-height: 74px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  border-bottom: 1px solid #e4e8f0;
  box-shadow: 0 8px 28px rgba(20, 33, 61, 0.04);
}

.ot-dashboard-brand {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
}

.ot-dashboard-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.ot-dashboard-toplinks {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ot-dashboard-toplinks a {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6b7280;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

.ot-dashboard-toplinks .ot-dashboard-logout {
  color: #555d6f;
  background: #ffffff;
  border-color: #e7eaf0;
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.04);
}

.ot-dashboard-shell {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  min-height: calc(100vh - 74px);
}

.ot-dashboard-sidebar {
  background: #ffffff;
  border-right: 1px solid #e4e8f0;
}

.ot-dashboard-user {
  min-height: 230px;
  padding: 44px 22px 28px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  text-align: center;
  border-bottom: 1px solid #eef1f5;
}

.ot-dashboard-avatar {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: #f97316;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 900;
}

.ot-dashboard-avatar img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.ot-dashboard-user strong {
  margin-top: 4px;
  color: #1f2433;
  font-size: 18px;
}

.ot-dashboard-user span {
  color: #9aa2af;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.ot-dashboard-menu {
  display: grid;
  padding: 22px 0;
}

.ot-dashboard-menu a {
  min-height: 48px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #667085;
  border-left: 4px solid transparent;
  text-decoration: none;
  font-size: 15px;
}

.ot-dashboard-menu a i {
  width: 20px;
  text-align: center;
}

.ot-dashboard-menu a.active,
.ot-dashboard-menu a:hover {
  color: #d97706;
  background: #fff7ed;
  border-left-color: #f97316;
  font-weight: 800;
}

.ot-dashboard-content {
  min-width: 0;
  padding: 42px 40px 54px;
}

.ot-dashboard-welcome {
  margin-bottom: 28px;
}

.ot-dashboard-welcome h1 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2433;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.2;
}

.ot-dashboard-welcome h1 i {
  color: #f97316;
  font-size: 25px;
}

.ot-dashboard-welcome p {
  margin: 8px 0 0;
  color: #a0a7b3;
}

.ot-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.ot-dashboard-stats article,
.ot-dashboard-panel,
.ot-dashboard-action {
  background: #ffffff;
  border: 1px solid #e7ebf2;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(20, 33, 61, 0.05);
}

.ot-dashboard-stats article {
  min-height: 126px;
  position: relative;
  padding: 27px 86px 22px 28px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.ot-dashboard-stats strong {
  max-width: 100%;
  color: #141827;
  font-size: 30px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.ot-dashboard-stats span {
  color: #8f98a7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ot-dashboard-stats i {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #2563eb;
  background: #eff6ff;
  border-radius: 10px;
  font-size: 22px;
}

.ot-dashboard-stats article:nth-child(2) i {
  color: #16a34a;
  background: #f0fdf4;
}

.ot-dashboard-stats article:nth-child(3) i {
  color: #9333ea;
  background: #faf5ff;
}

.ot-dashboard-stats small {
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: #9aa2af;
  font-size: 12px;
}

.ot-dashboard-panel {
  padding: 0;
}

.ot-dashboard-panel-head {
  min-height: 68px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #eef1f5;
}

.ot-dashboard-panel-head h2,
.ot-dashboard-panel h2,
.ot-dashboard-action h2 {
  margin: 0;
  color: #202637;
  font-size: 18px;
}

.ot-dashboard-panel-head a {
  color: #b45309;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.ot-dashboard-bookings {
  min-height: 430px;
  margin-bottom: 26px;
}

.ot-dashboard-bookings .ot-account-table {
  padding: 16px 26px 26px;
}

.ot-dashboard-empty {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 46px 24px;
  text-align: center;
}

.ot-dashboard-empty > i {
  color: #2563eb;
  font-size: 44px;
}

.ot-dashboard-empty strong {
  color: #475467;
  font-size: 18px;
  font-weight: 700;
}

.ot-dashboard-empty p {
  margin: 0;
  color: #a0a7b3;
  line-height: 1.55;
}

.ot-dashboard-empty a {
  min-height: 46px;
  margin-top: 8px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #f97316;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
}

.ot-dashboard-lower {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: start;
}

.ot-dashboard-action {
  min-height: 132px;
  padding: 30px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.ot-dashboard-action > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #e11d48;
  background: #fff1f2;
  border-radius: 12px;
  font-size: 22px;
}

.ot-dashboard-action p {
  margin: 8px 0 0;
  color: #8f98a7;
  line-height: 1.6;
}

.ot-dashboard-panel.ot-account-form {
  padding: 26px 28px 28px;
}

.ot-dashboard-panel.ot-account-form h2 {
  margin-bottom: 20px;
}

.ot-dashboard-page .ot-account-form label {
  color: #2c3240;
  font-size: 12px;
}

.ot-dashboard-page .ot-account-form input,
.ot-dashboard-page .ot-account-form textarea {
  min-height: 42px;
  border-color: #d6dbe5;
  border-radius: 6px;
  font-size: 13px;
}

.ot-dashboard-page .ot-account-form button {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 6px;
}

.ot-dashboard-page .ot-account-table th,
.ot-dashboard-page .ot-account-table td {
  padding: 14px 12px;
  font-size: 13px;
}

.ot-dashboard-page .ot-account-table th {
  color: #303747;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .ot-dashboard-shell {
    grid-template-columns: 238px minmax(0, 1fr);
  }

  .ot-dashboard-content {
    padding: 34px 24px 44px;
  }

  .ot-dashboard-stats,
  .ot-dashboard-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .ot-dashboard-topbar {
    min-height: 66px;
    padding: 0 16px;
  }

  .ot-dashboard-shell {
    display: block;
  }

  .ot-dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid #e4e8f0;
  }

  .ot-dashboard-user {
    min-height: 0;
    padding: 24px 16px 18px;
  }

  .ot-dashboard-menu {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 0 12px 14px;
    scrollbar-width: none;
  }

  .ot-dashboard-menu::-webkit-scrollbar {
    display: none;
  }

  .ot-dashboard-menu a {
    min-height: 42px;
    padding: 0 14px;
    border-left: 0;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }

  .ot-dashboard-menu a.active,
  .ot-dashboard-menu a:hover {
    border-left-color: transparent;
    border-bottom-color: #f97316;
  }

  .ot-dashboard-content {
    padding: 26px 14px 38px;
  }

  .ot-dashboard-welcome h1 {
    align-items: flex-start;
  }

  .ot-dashboard-stats {
    gap: 14px;
  }

  .ot-dashboard-panel-head {
    padding: 0 18px;
  }

  .ot-dashboard-lower {
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .ot-dashboard-toplinks a {
    padding: 0 11px;
    font-size: 13px;
  }

  .ot-dashboard-toplinks a:first-child {
    width: 42px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .ot-dashboard-toplinks a:first-child i {
    font-size: 14px;
  }

  .ot-dashboard-stats article {
    padding-right: 72px;
  }

  .ot-dashboard-stats i,
  .ot-dashboard-stats small {
    right: 18px;
  }

  .ot-dashboard-empty {
    min-height: 300px;
    padding: 34px 16px;
  }

  .ot-dashboard-panel.ot-account-form,
  .ot-dashboard-action {
    padding: 20px;
  }

  .ot-dashboard-action {
    grid-template-columns: 1fr;
  }
}

/* Customer dashboard refinements */
.ot-dashboard-page {
  --ot-dashboard-accent: #9fc4d5;
  --ot-dashboard-accent-strong: #111111;
  --ot-dashboard-accent-soft: #eef7fa;
}

.ot-dashboard-avatar {
  overflow: hidden;
  color: #111111;
  background: #eef7fa;
  border-color: #9fc4d5;
}

.ot-dashboard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-profile-photo-form,
.ot-profile-photo-remove {
  width: 100%;
  display: grid;
  justify-items: center;
}

.ot-profile-photo-form label,
.ot-profile-photo-remove button {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #111111;
  background: #eef7fa;
  border: 1px solid #c7dce4;
  border-radius: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.ot-profile-photo-form input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.ot-profile-photo-remove button {
  color: #4b5563;
  background: #ffffff;
}

.ot-dashboard-menu a.active,
.ot-dashboard-menu a:hover {
  color: #111111;
  background: #eef7fa;
  border-left-color: #9fc4d5;
}

.ot-dashboard-welcome h1 i {
  color: #111111;
}

.ot-dashboard-stats i,
.ot-dashboard-stats article:nth-child(2) i,
.ot-dashboard-stats article:nth-child(3) i {
  color: #111111;
  background: #eef7fa;
}

.ot-dashboard-panel-head a {
  color: #111111;
}

.ot-dashboard-empty a {
  background: #111111;
}

.ot-dashboard-action > i {
  color: #111111;
  background: #eef7fa;
}

.ot-dashboard-profile,
.ot-dashboard-info-panel {
  display: none;
  margin-bottom: 26px;
  scroll-margin-top: 24px;
}

.ot-dashboard-profile:target,
.ot-dashboard-info-panel:target {
  display: block;
}

.ot-dashboard-profile .ot-account-form {
  padding: 26px 28px 28px;
}

.ot-dashboard-info-grid {
  padding: 26px 28px 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ot-dashboard-info-grid article,
.ot-dashboard-info-card {
  min-height: 150px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: #f8fbfc;
  border: 1px solid #dce9ee;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
}

.ot-dashboard-info-card:hover {
  border-color: #9fc4d5;
  background: #eef7fa;
}

.ot-dashboard-info-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111111;
  background: #eef7fa;
  border-radius: 10px;
  font-size: 20px;
}

.ot-dashboard-info-grid h3 {
  margin: 0;
  color: #111111;
  font-size: 16px;
}

.ot-dashboard-info-grid p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.ot-dashboard-bookings {
  scroll-margin-top: 24px;
}

.ot-dashboard-lower {
  grid-template-columns: minmax(0, 0.85fr);
}

.ot-dashboard-panel.ot-account-form {
  padding: 0;
}

@media (max-width: 1180px) {
  .ot-dashboard-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .ot-dashboard-content {
    padding: 32px 22px 44px;
  }

  .ot-dashboard-stats {
    gap: 16px;
  }
}

@media (max-width: 920px) {
  .ot-dashboard-stats {
    grid-template-columns: 1fr;
  }

  .ot-dashboard-bookings {
    min-height: 360px;
  }
}

@media (max-width: 780px) {
  .ot-dashboard-menu a.active,
  .ot-dashboard-menu a:hover {
    border-left-color: transparent;
    border-bottom-color: #9fc4d5;
  }

  .ot-dashboard-profile .ot-account-form,
  .ot-dashboard-info-grid {
    padding: 20px;
  }

  .ot-dashboard-info-grid {
    grid-template-columns: 1fr;
  }

  .ot-dashboard-page .ot-account-grid {
    grid-template-columns: 1fr;
  }

  .ot-dashboard-page .ot-account-grid .wide {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .ot-dashboard-brand {
    width: 44px;
    height: 44px;
  }

  .ot-dashboard-brand img {
    width: 34px;
    height: 34px;
  }

  .ot-dashboard-welcome h1 {
    font-size: 22px;
  }

  .ot-dashboard-stats article {
    min-height: 112px;
  }

  .ot-dashboard-empty p br {
    display: none;
  }

  .ot-dashboard-panel-head {
    min-height: 58px;
  }
}

/* Product detail responsive corrections */
@media (max-width: 1180px) {
  .ot-pdp-grid {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px 24px;
  }

  .ot-pdp-info {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 760px;
    margin: 8px auto 0;
  }

  .ot-pdp-image {
    min-height: 560px;
  }

  .ot-pdp-image img {
    max-height: 520px;
  }
}

@media (max-width: 760px) {
  .ot-product-page {
    padding-top: 18px;
  }

  .ot-pdp-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ot-pdp-image {
    grid-row: 1;
    min-height: clamp(330px, 92vw, 520px);
    max-height: none;
    border-radius: 10px;
  }

  .ot-pdp-image img {
    width: 92%;
    max-height: clamp(300px, 82vw, 480px);
  }

  .ot-pdp-image > button {
    top: 18px;
    width: 46px;
    height: 46px;
  }

  .ot-pdp-zoom-out {
    left: 18px;
  }

  .ot-pdp-zoom-in {
    right: 18px;
  }

  .ot-pdp-thumbs {
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(64px, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .ot-pdp-thumbs button {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .ot-pdp-info {
    grid-row: 3;
    max-width: none;
    margin: 4px 0 0;
  }

  .ot-pdp-info h1 {
    max-width: 100%;
    font-size: 30px;
  }

  .ot-pdp-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .ot-pdp-image {
    min-height: 320px;
  }

  .ot-pdp-image img {
    max-height: 300px;
  }

  .ot-pdp-info h1 {
    font-size: 24px;
  }

  .ot-pdp-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Checkout mobile overflow corrections */
.ot-checkout-page,
.ot-checkout-page * {
  max-width: 100%;
  box-sizing: border-box;
}

.ot-checkout-steps span,
.ot-checkout-steps strong {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.ot-checkout-card,
.ot-checkout-success,
.ot-order-summary,
.ot-tracking-number {
  min-width: 0;
}

.ot-checkout-success p,
.ot-order-summary,
.ot-tracking-number strong {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 640px) {
  .ot-checkout-page {
    padding: 22px 0 64px;
  }

  .ot-checkout-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px;
    overflow: visible !important;
  }

  .ot-checkout-steps span,
  .ot-checkout-steps strong {
    min-width: 0 !important;
    flex: initial !important;
    min-height: 54px;
    padding: 9px 4px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(11px, 3.25vw, 13px);
    line-height: 1.15;
    letter-spacing: 0;
  }

  .ot-checkout-card {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .ot-checkout-success > i {
    font-size: 56px;
  }

  .ot-checkout-success h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .ot-checkout-success p {
    font-size: 16px;
    line-height: 1.5;
  }

  .ot-tracking-number {
    width: 100%;
    margin: 20px auto;
    padding: 16px 10px;
  }

  .ot-tracking-number strong {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .ot-success-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ot-checkout-primary,
  .ot-checkout-secondary {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .ot-checkout-steps span,
  .ot-checkout-steps strong {
    min-height: 50px;
    padding: 8px 3px;
    font-size: 10.5px;
  }

  .ot-checkout-success h1 {
    font-size: 29px;
  }

  .ot-tracking-number strong {
    font-size: 16px;
  }
}
