:root {
  --orange: #ff7a00;
  --orange-dark: #e25d00;
  --black: #111317;
  --ink: #202631;
  --muted: #727986;
  --line: #e9edf2;
  --soft: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(26, 28, 32, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x:hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(1350px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 20px;
  background: transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}



.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 70px;
  padding: 0 22px;
  background: var(--white);
  border: 1px solid rgba(17, 19, 23, 0.05);
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(27, 29, 35, 0.09);
}

.brand img {
  width: 165px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 26px 0;
}

.main-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
  content: "";
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-btn,
.cart-btn,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--white);
}

.login-btn {
  position: relative;
  overflow: hidden;
  gap: 9px;
  min-width: 92px;
  height: 42px;
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(17, 19, 23, 0.04);
  transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.login-btn::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--orange), #ff9b2f);
  content: "";
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.login-btn i,
.login-btn span {
  position: relative;
  z-index: 1;
}

.login-btn:hover,
.login-btn:focus-visible {
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.24);
  transform: translateY(-2px);
}

.login-btn:hover::before,
.login-btn:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  color: var(--ink);
  border-left: 1px solid var(--line);
}

.cart-btn i {
  font-size: 22px;
}

.cart-count {
  position: absolute;
  top: 3px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.cart-widget {
  position: relative;
  display: inline-flex;
}

.cart-widget::after {
  position: absolute;
  top: 100%;
  right: -18px;
  width: 430px;
  height: 18px;
  content: "";
}

.cart-preview {
  position: absolute;
  top: calc(100% + 14px);
  right: -22px;
  z-index: 150;
  width: min(430px, calc(100vw - 28px));
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(17, 19, 23, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.cart-widget:hover .cart-preview,
.cart-widget:focus-within .cart-preview {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cart-preview-loader {
  display: none;
  min-height: 250px;
}

.cart-preview.is-loading .cart-preview-loader {
  display: grid;
  align-content: center;
  gap: 13px;
}

.cart-preview.is-loading .cart-preview-body {
  display: none;
}

.cart-loader-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  color: var(--orange);
  background: #fff5eb;
  border-radius: 50%;
  font-size: 20px;
  animation: cartLoaderPulse 0.9s ease-in-out infinite;
}

.cart-skeleton {
  display: block;
  height: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, #edf0f4 0%, #fff6ef 45%, #edf0f4 90%);
  background-size: 220% 100%;
  border-radius: 99px;
  animation: cartSkeleton 1.05s linear infinite;
}

.cart-skeleton-title {
  width: 56%;
  height: 22px;
}

.cart-skeleton-row {
  width: 100%;
}

.cart-skeleton-row.short {
  width: 72%;
}

.cart-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.cart-preview-head strong {
  color: var(--black);
  font-size: 19px;
  font-weight: 900;
}

.cart-preview-head span {
  color: #465060;
  font-size: 16px;
  font-weight: 600;
}

.cart-preview-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto 36px;
  gap: 14px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #dfe4eb;
}

.cart-preview-img {
  position: relative;
  overflow: hidden;
  width: 84px;
  height: 96px;
  background: #f2f3f5;
  border-radius: 8px;
}

.cart-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-preview-img span {
  position: absolute;
  top: 3px;
  right: 3px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.cart-preview-copy {
  min-width: 0;
}

.cart-preview-copy h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.cart-preview-copy p {
  margin: 0 0 10px;
  color: #6f7783;
  font-size: 13px;
  font-weight: 600;
}

.cart-mini-qty {
  display: inline-grid;
  grid-template-columns: 36px 44px 36px;
  overflow: hidden;
  border: 1px solid #dfe4eb;
  border-radius: 6px;
}

.cart-mini-qty button,
.cart-mini-qty output {
  display: grid;
  place-items: center;
  height: 30px;
  color: var(--black);
  background: var(--white);
  border: 0;
  font-size: 14px;
  font-weight: 900;
}

.cart-mini-qty output {
  border-left: 1px solid #dfe4eb;
  border-right: 1px solid #dfe4eb;
}

.cart-mini-qty button:hover {
  color: var(--orange);
  background: #fff7ef;
}

.cart-item-price {
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.cart-remove {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #dfe4eb;
  border-radius: 50%;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.cart-remove:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

.cart-total-row,
.cart-grand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-total-row {
  padding: 22px 0;
  color: #626b78;
  border-bottom: 1px solid #dfe4eb;
  font-size: 16px;
  font-weight: 600;
}

.cart-total-row strong {
  color: var(--black);
  font-weight: 900;
}

.cart-grand-row {
  padding: 22px 0;
  color: var(--black);
  font-size: 19px;
  font-weight: 900;
}

.cart-grand-row strong {
  color: var(--orange);
  font-size: 26px;
}

.cart-view-btn,
.cart-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}

.cart-view-btn {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 25px rgba(255, 122, 0, 0.22);
}

.cart-view-btn:hover {
  background: var(--orange-dark);
}

.cart-checkout-btn {
  margin-top: 12px;
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--orange);
}

.cart-checkout-btn:hover {
  color: var(--white);
  background: var(--orange);
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 230px;
  color: #6f7783;
  text-align: center;
}

.cart-empty i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--orange);
  background: #fff5eb;
  border-radius: 50%;
  font-size: 23px;
}

.cart-empty p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

@keyframes cartLoaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes cartSkeleton {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -120% 0;
  }
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  margin-top: -110px;
  padding: 148px 0 10px;
  background: #ff7a0014;
}

.hero-bg-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left 60px;
}

.hero-stage {
  position: relative;
  min-height: 510px;
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.65s step-end;
}

.hero-grid.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear;
}

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

.hero-full-image {
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24, 24, 24, 0.16);
}

.hero-full-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: #333844;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-top: 20px;
}

.hero-copy h1 {
  position: relative;
  min-height: 160px;
  margin: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title-alt {
  position: relative;
  min-height: 160px;
  margin: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-word {
  display: block;
  letter-spacing: 0;
}

.hero-word-black {
  color: #141922;
  font-family: "Anton", Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(82px, 5.2vw, 118px);
  font-weight: 500;
  letter-spacing: 5px;
  padding: 10px 0px;
}

.hero-word-orange {
  color: var(--orange);
  font-family: "Protest Revolution", "Knewave", Impact, "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(72px, 6.2vw, 104px);
  font-style: normal;
  font-weight: 500;
  transform: skewX(350deg) !important;
  transform-origin: left center;
  padding: 10px 0;
  letter-spacing: -4px;
}

.hero-desc {
  width: min(480px, 100%);
  margin: 18px 0 22px;
  color: #59616c;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.26);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

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

.btn-dark {
  min-height: 38px;
  color: var(--white);
  background: var(--black);
}

.signature {
  display: block;
  width: min(400px, 74%);
  height: auto;
  margin: 0;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  min-height: 300px;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.shirt-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  object-position: center bottom;
}

.quality-badge {
  position: absolute;
  right: 11vw;
  bottom: 74px;
  z-index: 4;
  width: 150px;
}

.comfort-text {
  position: absolute;
  right: 10px;
  bottom: 4vw;
  z-index: 4;
  width: 168px;
  opacity: 0.86;
}

.paint {
  display: none;
}

.paint-orange {
  top: 14px;
  width: 500px;
  height: 165px;
  background: linear-gradient(100deg, rgba(255, 122, 0, 0.05), rgba(255, 122, 0, 0.94));
  clip-path: polygon(4% 39%, 94% 0, 100% 60%, 9% 100%);
}

.paint-black {
  top: 184px;
  right: 42px;
  width: 360px;
  height: 98px;
  background: linear-gradient(100deg, transparent, rgba(0, 0, 0, 0.82));
  clip-path: polygon(0 34%, 100% 0, 95% 78%, 4% 100%);
}

.slider-arrow {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(13, 15, 18, 0.9);
  border: 0;
  border-radius: 50%;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-arrow:hover {
  background: var(--orange);
  transform: scale(1.08);
}

.hero-prev {
  left: 18px;
  top: 46%;
}

.hero-next {
  right: 18px;
  top: 46%;
}

.hero-dots,
.promo-dots,
.small-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  transform: translateX(-50%);
}

.dot,
.small-dots span {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #c8cbd0;
  border: 0;
  border-radius: 50%;
}

.dot.is-active,
.small-dots span:first-child {
  background: var(--orange);
}

.features {
  margin-top: 0;
  padding: 18px 0 34px;
  background: #ff7a0014;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  border-radius: 8px;
  /* box-shadow: 0 8px 30px rgba(28, 31, 36, 0.05); */
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 120px;
  padding: 22px;
  border-right: 2px solid #a7a7a71c;
}

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

.feature-card img {
  width: 94px;
  flex: 0 0 auto;
}

.feature-card h2,
.why-card h3 {
  margin: 0 0 4px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.why-card p {
  margin: 0;
  color: #6a717c;
  font-size: 13px;
}

.promo {
  padding: 42px 0 30px;
}

.promo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-track {
  position: relative;
  aspect-ratio: 2200 / 597;
  background: var(--black);
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.promo-slide.is-active {
  opacity: 1;
}

.promo-slide:nth-child(2) img {
  filter: saturate(1.1) hue-rotate(5deg);
  transform: scale(1.02);
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.promo-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.promo-prev:hover,
.promo-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.promo-dots {
  position: absolute;
  left: 50%;
  bottom: 15px;
  z-index: 4;
  transform: translateX(-50%);
}

.section-heading {
  margin-bottom: 8px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  /* font-size: 2em; */
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 4px;
  background: linear-gradient(to right, var(--black) 50%, var(--orange) 50%);
  border-radius: 2px;
}

.section-title-row h2,
.about-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-heading span,
.section-title-row span,
.about-copy span {
  color: var(--orange);
}

.categories {
  padding: 60px 0;
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-inline: auto;
  gap: 18px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 19, 23, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.12);
  transform: translateY(-8px);
}

.category-img-wrap {
  background: #f2f4f7;
  /* padding: 30px 20px 24px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.08) translateY(-4px);
}

.cat-icon {
  position: absolute;
  left: 50%;
  top: 300px;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: var(--orange);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 13px;
}

.cat-icon i {
  font-size: 1.5rem;
}

.category-card:hover .cat-icon {
  background: var(--orange-dark);
  transform: translate(-50%, -50%) scale(1.08) rotate(8deg);
  box-shadow: 0 8px 20px rgba(226, 93, 0, 0.4);
}

.category-info {
  padding: 38px 18px 24px;
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.category-info strong {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.category-card:hover .category-info strong {
  color: var(--orange);
}

.category-info small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.see-all:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.products {
  padding: 60px 0;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin-inline: auto;
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgb(17 19 23 / 8%);
  border-radius: 16px;
  box-shadow: 0 8px 14px rgb(17 19 23 / 9%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover,
.product-card.highlight {
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
  transform: translateY(-8px);
}

.product-img-wrap {
  position: relative;
  margin: -16px -16px 16px -16px;
  height: 280px;
  overflow: hidden;
  background: #f5f6f8;
}

.product-top {
  position: absolute;
  top: 2px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.wishlist-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #7b838e;
  background: var(--white);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.wishlist-btn:hover {
  color: #e21b3c;
  border-color: rgba(226, 27, 60, 0.2);
  background: #fff5f6;
  transform: scale(1.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 10px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-pill {
  background: var(--orange);
}

.category-product-grid {display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;}
.product-img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  z-index: 3;
  /* align-items: center; */
  /* text-align: center; */
  justify-content: center;
}

.swatches span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(17, 19, 23, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swatches span:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 2px var(--orange);
}

.product-card h3 {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 18px;
  min-height: 42px;
  line-height: 1.4;
  flex-grow: 1;
}

.product-footer {
  /* margin: auto -16px -16px -16px; */
  padding: 16px;
  background: #fcf6f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 4;
  border-radius: 16px;
}

.price-container {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 6px;
  gap: 5px;
}

.price-container::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.price-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.price-amount {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  transition: color 0.4s ease;
}

.add-cart {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.add-cart:hover {
  background: var(--orange-dark);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 14px rgba(226, 93, 0, 0.45);
}

.product-card:hover .product-footer,
.product-card.highlight .product-footer {
  background: #111317;
}

.product-card:hover .price-container::before,
.product-card.highlight .price-container::before {
  opacity: 0;
  transform: scaleX(0);
}

.product-card:hover .price-label,
.product-card.highlight .price-label {
  color: var(--orange);
}

.product-card:hover .price-amount,
.product-card.highlight .price-amount {
  color: var(--white);
}

.services {
  padding: 0;
  background: var(--white);
}

.service-row {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.service-row+.service-row {
  border-top: none;
}

.service-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-photo img {
  width: 60%;
  height: 100%;
  object-fit: cover;
}

.service-manual .service-photo img,
.service-bordir .service-photo img {
  object-position: right center;
  /* justify-content: flex-start; */
  /* text-align: center; */
  margin-left: auto;
  display: block;
}

.service-digital .service-photo img {
  object-position: right center!important;
  /* margin-left: auto!important; */
  display: block!important;
}

.service-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.service-manual .service-panel {
  background-image: url("../img/sablon-manual_background1.webp");
  background-position: right center;
  max-width: 50%;
}

.service-digital .service-panel {
  background-image: url("../img/sablon-digital_background2.webp");
  background-position: left center;
  max-width: 50%!important;
  left: auto!important;
  right: 0!important;
  /* transform: scaleX(-1); */
}

.service-bordir .service-panel {
  background-image: url("../img/cetak-bordir_background2.webp");
  /* background-position: left center; */
  background-position: right center;
  max-width: 50%;
}

.service-row .container {
  position: relative;
  z-index: 3;
  display: flex;
  /* align-items: center; */
  width: 100%;
}

.service-manual .container,
.service-bordir .container {
  justify-content: flex-start;
}

.service-digital .container {
  justify-content: flex-end;
}

.service-inner {
  width: min(520px, 100%);
  padding: 40px 0;
}

.service-digital .service-inner {
  padding-left: 32px;
}

.service-manual .service-inner,
.service-bordir .service-inner {
  padding-left: 50px;
}

.service-header-block {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.service-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.service-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-title span {
  display: inline-block;
  font-family: 'Protest Revolution', 'Knewave', sans-serif;
  font-size: clamp(38px, 4.2vw, 72px);
  font-weight: 400;
  margin-top: 4px;
  transform: skewX(343deg);
}



.service-digital .service-title span,
.service-bordir .service-title span {
  color: var(--white);
}

.service-inner p {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px 0;
  max-width: 450px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(17, 19, 23, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  font-size: 10px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 19, 23, 0.4);
}

.service-btn:hover .btn-icon {
  transform: translateX(4px);
}

.clients {
  background: #fbfbfc;
  margin-top: 30px;
}

.clients-box,
.testimonial-box {
  position: relative;
  overflow: hidden;
  padding: 32px 64px 22px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(27, 29, 35, 0.08);
}

.client-marquee {
  overflow: hidden;
}

.client-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: clientMarquee 22s linear infinite;
}

.client-track img {
  width: 145px;
  height: 54px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }

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

.small-dots {
  margin-top: 22px;
}

.testimonials {
  padding: 30px 0;
}

.testimonial-box {
  color: var(--white);
  background:
    linear-gradient(rgba(14, 16, 18, 0.92), rgba(14, 16, 18, 0.92)),
    url("../img/about-section_foto-1.webp") center / cover;
}

.testimonial-box .section-heading h2 {
  color: var(--white);
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc((100% - 48px) / 3);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.stars {
  color: #ffb000;
  font-size: 14px;
}

.testimonial-card p {
  min-height: 58px;
  color: #d7dae0;
  font-size: 13px;
}

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

.testimonial-card small {
  color: #a9adb5;
}

.testi-prev {
  left: 76px;
  top: 55%;
  background: rgba(255, 255, 255, 0.22);
}

.testi-next {
  right: 76px;
  top: 55%;
  background: rgba(255, 255, 255, 0.22);
}

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

.why-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  background: #fbfbfc;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.why-card:hover {
  background: var(--white);
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-7px);
}

.why-card img {
  width: 52px;
  flex: 0 0 auto;
}

.about {
  padding-bottom: 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 54px;
}

.about-copy p {
  margin: 20px 0;
  color: #4b5360;
}

.about-copy ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.about-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.about-copy i {
  color: var(--orange);
}

.about-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.about-collage img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.about-collage>div {
  display: grid;
  gap: 14px;
}

.site-footer {
  color: #cbd0d7;
  background: #11161c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr 1.4fr;
  gap: 34px;
  padding: 44px 0 30px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 12px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: #cbd0d7;
  font-size: 13px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.footer-contact p {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
}

.footer-contact a {
  display: inline;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--white);
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  font-size: 26px;
}

.flying-img {
  position: fixed;
  z-index: 999;
  width: 70px;
  height: 92px;
  object-fit: contain;
  pointer-events: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 23, 0.68);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.auth-modal.is-open .auth-modal__backdrop {
  opacity: 1;
}

.auth-modal__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1fr);
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal.is-open .auth-modal__shell {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #87909d;
  background: #f5f7fb;
  border: 0;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.auth-modal__close:hover,
.auth-modal__close:focus-visible {
  color: var(--black);
  background: #eef1f6;
  transform: rotate(90deg);
}

.auth-modal__visual {
  position: relative;
  min-height: 660px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.auth-modal__visual::before {
  position: absolute;
  inset: 0;
  background: rgb(12 15 19 / 65%);
  content: "";
}

.auth-modal__visual-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 58px 70px 44px;
}

.auth-modal__logo {
  width: 90px;
  height: auto;
  margin-bottom: 32px;
}



.auth-modal__welcome h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.1;
}

.auth-modal__welcome h2 span {
  color: var(--orange);
}

.auth-modal__welcome p {
  margin: 0;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.auth-modal__benefits {
  display: grid;
  gap: 22px;
  margin: 54px 0 44px;
  padding: 0;
  list-style: none;
}

.auth-modal__benefits li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.auth-modal__benefits i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 0, 0.52);
  border-radius: 8px;
}

.auth-modal__benefits span {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.auth-modal__benefits strong {
  color: var(--white);
  font-size: 14px;
}

.auth-modal__tagline {
  align-self: end;
  display: inline-block;
  width: fit-content;
  color: var(--white);
  font-family: "Knewave", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.86;
  text-shadow: 0 3px 0 rgba(255, 122, 0, 0.82);
  transform: rotate(-7deg);
}

.auth-modal__panel {
  position: relative;
  overflow-y: scroll;
  display: grid;
  align-content: start;
  padding: 58px 54px 40px;
  background: linear-gradient(180deg, #ffffff, #f9fafc);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin: 0 40px 34px;
}

.auth-tab {
  position: relative;
  height: 42px;
  color: #777f8d;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 900;
}

.auth-tab::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
  content: "";
  transform: translateX(-50%);
  transition: width 0.24s ease;
}

.auth-tab.is-active {
  color: var(--black);
}

.auth-tab.is-active::after {
  width: 100%;
}

.auth-form-panel {
  display: none;
  opacity: 0;
  transform: translateX(12px);
}

.auth-form-panel.is-active {
  display: block;
  animation: authPanelIn 0.28s ease forwards;
}

.auth-form-panel h3 {
  margin: 0 0 5px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.2;
}

.auth-form-panel > p {
  margin: 0 0 26px;
  color: #8a92a0;
  font-size: 15px;
}

.windofa-auth-form {
  display: grid;
  gap: 17px;
}

.windofa-auth-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.windofa-auth-form input {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  outline: 0;
  box-shadow: 0 10px 22px rgba(28, 36, 52, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.windofa-auth-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.auth-password-field {
  position: relative;
  display: block;
}

.auth-password-field input {
  padding-right: 52px;
}

.auth-password-field button {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #8a92a0;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
}

.auth-forgot-link {
  justify-self: end;
  margin-top: -6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.auth-message {
  display: none;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.auth-message.is-error {
  display: block;
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.auth-message.is-success {
  display: block;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.auth-submit,
.auth-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.auth-submit {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8f1f);
  border: 0;
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.27);
}

.auth-submit:hover,
.auth-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.34);
}

.auth-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.auth-separator {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 24px;
  color: #98a0ae;
  font-size: 13px;
}

.auth-separator::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #e6ebf2;
  content: "";
}

.auth-separator span {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  background: #fbfcfd;
}

.auth-google {
  color: #4b5563;
  background: var(--white);
  border: 1px solid #dfe5ee;
}

.auth-google i {
  color: #ea4335;
}

.auth-google:hover,
.auth-google:focus-visible {
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
}

.auth-switch-text {
  margin: 1px 0 0;
  color: #8a92a0;
  text-align: center;
  font-size: 14px;
}

.auth-switch-text button {
  color: var(--orange);
  background: transparent;
  border: 0;
  font-weight: 900;
}

body.auth-modal-open {
  overflow: hidden;
}

@keyframes authPanelIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .auth-modal__shell {
    grid-template-columns: 0.86fr 1fr;
    width: min(920px, 100%);
  }

  .auth-modal__visual-overlay {
    padding-inline: 44px;
  }

  .auth-modal__panel {
    padding-inline: 42px;
  }

  .auth-tabs {
    margin-inline: 18px;
    gap: 30px;
  }

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

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

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

@media (max-width: 900px) {
  .auth-modal {
    padding: 18px;
  }

  .auth-modal__shell {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    max-height: calc(100vh - 36px);
  }

  .auth-modal__visual {
    min-height: 260px;
  }

  .auth-modal__visual-overlay {
    min-height: 260px;
    padding: 30px 34px;
  }

  .auth-modal__logo {
    max-width: 90px;
    margin-bottom: 1px;
  }

  .auth-modal__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 0;
  }

  .auth-modal__benefits li {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 9px;
  }

  .auth-modal__benefits i {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .auth-modal__tagline {
    display: none;
  }

  .auth-modal__panel {
    padding: 34px 34px 30px;
  }

  .nav-wrap {
    /* grid-template-columns: auto auto auto; */
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-toggle {
    position: relative;
    z-index: 105;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
  }
  
  .nav-toggle[aria-expanded="true"] {
    transform: rotate(180deg) scale(1.08);
    background: var(--black) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px !important;
    padding: 40px !important;
    background: radial-gradient(circle at 80% 10%, rgba(255, 122, 0, 0.18), transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(17, 19, 23, 0.96), rgba(17, 19, 23, 0.99)) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    
    clip-path: circle(0% at calc(100% - 40px) 45px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.5s ease,
                visibility 0.75s step-end !important;
    z-index: 100 !important;
  }

  .main-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: circle(150% at calc(100% - 40px) 45px) !important;
    transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.3s ease !important;
  }

  .main-nav a {
    position: relative;
    padding: 10px 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: "Anton", "Inter", sans-serif !important;
    font-size: clamp(28px, 6vw, 42px) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border: none !important;
    background: transparent !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    box-shadow: none !important;
    
    opacity: 0 !important;
    transform: translateY(40px) rotate(3deg) !important;
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.3s ease !important;
  }

  .main-nav.is-open a {
    opacity: 1 !important;
    transform: translateY(0) rotate(0deg) !important;
  }

  .main-nav.is-open a:nth-child(1) { transition-delay: 0.15s !important; }
  .main-nav.is-open a:nth-child(2) { transition-delay: 0.22s !important; }
  .main-nav.is-open a:nth-child(3) { transition-delay: 0.29s !important; }
  .main-nav.is-open a:nth-child(4) { transition-delay: 0.36s !important; }
  .main-nav.is-open a:nth-child(5) { transition-delay: 0.43s !important; }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--orange) !important;
    background: transparent !important;
    padding-left: 0 !important;
    box-shadow: none !important;
    transform: scale(1.05) !important;
  }

  .main-nav a::before {
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: var(--orange) !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    opacity: 0.7 !important;
    margin-right: 5px !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
  }

  .main-nav a:nth-child(1)::before { content: "01" !important; }
  .main-nav a:nth-child(2)::before { content: "02" !important; }
  .main-nav a:nth-child(3)::before { content: "03" !important; }
  .main-nav a:nth-child(4)::before { content: "04" !important; }
  .main-nav a:nth-child(5)::before { content: "05" !important; }

  .main-nav a:hover::before,
  .main-nav a.active::before {
    opacity: 1 !important;
    transform: scale(1.2) rotate(-8deg) !important;
  }

  .main-nav a::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, transparent, var(--orange), transparent) !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block !important;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    transform: scaleX(1) !important;
  }

  .main-nav a i {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
    color: var(--orange) !important;
  }
  
  .main-nav a:hover i {
    transform: translateY(3px) !important;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1.3fr 0.7fr;
    margin-right: 0;
  }

  .hero-stage {
    min-height: 820px;
  }

  .hero-copy {
    padding-left: 0;
    max-width: 60vw;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-full-image,
  .hero-full-img {
    min-height: 620px;
  }

  .shirt-img {
    width: 100%;
  }

  .hero-prev {
    left: 0;
  }

  .hero-next {
    right: 0;
  }

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

  .feature-grid {
    width: 100%;
  }

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 2px solid #a7a7a71c;
  }

  .testimonial-card {
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .category-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    }

  .auth-modal {
    padding: 10px;
    align-items: start;
    overflow-y: auto;
  }

  .auth-modal__shell {
    max-height: none;
    margin: 10px 0;
  }

  .auth-modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .auth-modal__visual {
    min-height: 210px;
  }

  .auth-modal__visual-overlay {
    min-height: 210px;
    padding: 24px 22px;
    grid-template-columns: auto auto;
    align-items: center;
    align-content: center;
  }

  .auth-modal__welcome h2 {
    max-width: 270px;
    font-size: 28px;
  }

  .auth-modal__welcome p {
    max-width: 260px;
    font-size: 13px;
  }

  .auth-modal__benefits {
    display: none;
  }

  .auth-modal__panel {
    padding: 28px 18px 24px;
  }

  .auth-tabs {
    gap: 16px;
    margin: 0 8px 24px;
  }

  .auth-form-panel h3 {
    font-size: 21px;
  }

  .auth-form-panel > p,
  .auth-switch-text {
    font-size: 13px;
  }

  .windofa-auth-form input,
  .auth-submit,
  .auth-google {
    min-height: 50px;
  }

  .footer-brand img {text-align: center;
    margin: 0 auto;
    max-width: 100px;}
  .socials {justify-content: center;
    padding-bottom: 30px;}
  .container {
    width: min(100% - 24px, 540px);
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-wrap {
    min-height: 62px;
    gap: 10px;
    padding: 0 12px;
  }

  .brand img {
    width: 132px;
  }

  .login-btn span {
    display: none;
  }

  .login-btn {
    min-width: 38px;
    width: 38px;
    height: 38px;
  }

  .cart-btn {
    width: 38px;
    height: 38px;
  }

  .cart-widget::after {
    right: -10px;
    width: calc(100vw - 24px);
  }

  .cart-preview {
    right: -10px;
    width: 90vw;
    padding: 18px;
  }

  .cart-preview-head {
    margin-bottom: 16px;
  }

  .cart-preview-head strong {
    font-size: 16px;
  }

  .cart-preview-head span {
    font-size: 13px;
  }

  .cart-preview-item {
    grid-template-columns: 68px minmax(0, 1fr) 30px;
    gap: 10px;
  }

  .cart-preview-img {
    width: 68px;
    height: 78px;
  }

  .cart-preview-copy h3 {
    font-size: 13px;
  }

  .cart-preview-copy p {
    font-size: 11px;
  }

  .cart-mini-qty {
    grid-template-columns: 30px 36px 30px;
  }

  .cart-mini-qty button,
  .cart-mini-qty output {
    height: 28px;
    font-size: 12px;
  }

  .cart-item-price {
    grid-column: 2;
    font-size: 13px;
  }

  .cart-remove {
    grid-column: 3;
    grid-row: 1;
    width: 30px;
    height: 30px;
  }

  .cart-total-row {
    padding: 18px 0;
    font-size: 14px;
  }

  .cart-grand-row {
    padding: 18px 0;
    font-size: 16px;
  }

  .cart-grand-row strong {
    font-size: 22px;
  }

  .cart-view-btn,
  .cart-checkout-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .hero {
    margin-top: -70px;
    padding: 104px 0 20px;
  }

  .hero-bg-art {
    width: 100%;
    opacity: 0.85;
  }

  .hero-bg-art img {
    /* object-position: center top; */
    object-position: 45vw -50vw;
    object-fit: cover;
    /* opacity: 0.7; */
  }

  .hero-stage {
    min-height: 520px;
    padding-bottom: 20px;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero-grid-full {
    display: block;
  }

  .hero-full-image,
  .hero-full-img {
    min-height: 360px;
    border-radius: 18px;
  }

  .hero-copy h1 {
    min-height: 120px;
  }

  .hero-word-black {
    font-size: clamp(40px, 10vw, 78px);
    letter-spacing: 0;
  }

  .hero-word-orange {
    font-size: clamp(46px, 13vw, 70px);
    font-size: 12vw;
  }

  .eyebrow {
    font-size: 11px;
    /* width: 100%; */
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
    width: 110%;
  }

  .btn {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .signature {
    width: min(260px, 100%);
  }

  .hero-visual {
    min-height: 350px;
    width: 100%;
    margin-right: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    display: block !important;
  }

  .shirt-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: left top !important;
    z-index: 2 !important;
  }

  .quality-badge {
    position: absolute !important;
    left: 50% !important;
    /* right: auto !important; */
    bottom: 15px !important;
    transform: translateX(-50%) !important;
    width: 90px !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    z-index: 5 !important;
  }

  .comfort-text {
display:none;
  }

  .paint-orange {
    right: -80px;
    width: 420px;
    height: 150px;
  }

  .paint-black {
    right: 20px;
    top: 180px;
    width: 290px;
  }

  .hero-prev,
  .hero-next {
    display: none;
  }

  .hero-dots {
    left: 50%;
    bottom: 8px;
  }

  .features {
    padding-top: 14px;
  }

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

  .feature-card {
    display: grid;
    align-content: start;
    justify-items: center;
    min-height: 146px;
    padding: 16px 10px;
    text-align: center;
  }

  .feature-card img {
    width: 78px;
  }

  .feature-card h2,
  .why-card h3 {
    font-size: 11px;
  }

  .feature-card p,
  .why-card p {
    font-size: 11px;
  }

  .promo {
    padding: 28px 0;
  }

  .promo-track {
    aspect-ratio: 1.65 / 1;
  }

  .promo-slide img {
    object-position: center;
  }

  .promo-prev,
  .promo-next {
    width: 32px;
    height: 32px;
  }

  .promo-prev {
    left: 10px;
  }

  .promo-next {
    right: 10px;
  }

  .categories,
  .products,
  .clients,
  .why,
  .about {
    padding: 26px 0;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
    grid-template-columns: auto auto;
    display: grid;
  }

  .category-grid {
    gap: 12px;
  }

  .category-card {
    border-radius: 12px;
  }

  .category-img-wrap {
    height: 45vw;
    /* padding: 15px 10px 10px; */
  }

  .cat-icon {
    top: 45vw;
    width: 54px;
    height: 54px;
    border-width: 3px;
  }

  .category-info {
    padding: 30px 8px 16px;
    gap: 3px;
  }

  .category-info strong {
    font-size: 16px;
  }

  .category-info small {
    font-size: 11px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    padding: 12px;
    border-radius: 12px;
  }

  .product-img-wrap {
    margin: -12px -12px 12px -12px;
    height: 50vw;
  }

  .product-top {
    /* top: 8px; */
    left: 8px;
    right: 8px;
  }

  .pill {
    max-width: 98px;
    overflow: hidden;
    font-size: 7px;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 5px 5px;
    min-height: 10px;
  }

  .product-card h3 {
    font-size: 12px;
    margin: 0 0 12px;
    min-height: auto;
  }

  .product-footer {
    margin: auto -5px -5px -5px;
    padding: 10px 12px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .price-amount {
    font-size: 15px;
  }

  .price-label {
    font-size: 10px;
  }

  .price-container::before {
    width: 16px;
    height: 2px;
  }

  .add-cart {
    width: 32px;
    height: 32px;
  }

  .service-row {
    min-height: 280px;
    padding: 20px 0;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start !important;
  }

  .service-photo {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    /* width: 80% !important; */
    height: 100% !important;
    z-index: 1 !important;
    display: block !important;
  }

  .service-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
    display: block !important;
  }

  .service-panel {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: 70% !important;
    max-width: 70% !important;
    height: 100% !important;
    z-index: 2 !important;
  }

  .service-manual .service-panel,
  .service-bordir .service-panel {
    /* background-position: left center !important; */
    width: 85%!important;
    max-width: 85%!important;
  }

  .service-digital .service-panel {
    /* background-position: right center !important; */
    max-width: 85% !important;
    width: 85%!important;
  }

  .service-inner {
    width: 70% !important;
    max-width: 55% !important;
    padding: 20px 12px 20px 16px !important;
    z-index: 3 !important;
    position: relative !important;
  }

  .service-digital .service-inner {
    padding-left: 16px !important;
  }

  .service-manual .service-inner,
  .service-bordir .service-inner {
    padding-left: 16px !important;
    padding-right: 12px !important;
  }

  .service-header-block {
    gap: 12px;
    margin-bottom: 12px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-title {
    font-size: clamp(24px, 4vw, 24px) !important;
  }

  .service-title span {
    font-size: clamp(24px, 5.5vw, 36px) !important;
    margin-top: 2px;
  }

  .service-inner p {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .service-btn {
    padding: 8px 18px;
    font-size: 9px;
  }

  .service-btn .btn-icon {
    width: 16px;
    height: 16px;
    font-size: 7px;
  }

  .clients-box,
  .testimonial-box {
    padding: 26px 16px 20px;
  }

  .client-track img {
    width: 120px;
    height: 48px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testi-prev,
  .testi-next {
    display: none;
  }

  .why-grid {
    gap: 12px;
  }

  .why-card {
    display: grid;
    align-content: start;
    justify-items: center;
    min-height: 150px;
    padding: 17px 10px;
    text-align: center;
  }

  .why-card img {
    width: 48px;
  }

  .about-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .about-collage {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8px;
  }

  .about-collage>div {
    gap: 8px;
  }

  .about-collage img {
    min-height: 110px;
    border-radius: 8px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 38px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    grid-column: span 1;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: span 2;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 215px;
  }
}

.windofa-cart-page {
  color: var(--ink);
  background: #f7f8fa;
  min-height: 70vh;
}

.windofa-cart-hero {
  padding: 54px 0 36px;
  background: linear-gradient(135deg, #111317 0%, #242832 58%, #ff7a00 100%);
  color: var(--white);
}

.windofa-cart-hero .container {
  display: grid;
  gap: 10px;
}

.windofa-cart-hero p,
.windofa-cart-hero h1 {
  margin: 0;
}

.windofa-cart-hero p {
  color: #ffd5ad;
  font-weight: 800;
  text-transform: uppercase;
}

.windofa-cart-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.windofa-cart-hero span {
  width: max-content;
  padding: 8px 13px;
  color: #141414;
  background: var(--white);
  border-radius: 99px;
  font-weight: 900;
}

.windofa-cart-section {
  padding: 34px 0 70px;
}

.windofa-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.windofa-cart-list,
.windofa-checkout-form,
.windofa-cart-summary {
  background: var(--white);
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 19, 23, 0.08);
}

.windofa-cart-list,
.windofa-checkout-form {
  padding: 22px;
}

.windofa-cart-summary {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.windofa-cart-summary h2 {
  margin: 0;
  color: var(--black);
  font-size: 22px;
}

.windofa-cart-summary > div:not(.checkout-mini-list),
.checkout-mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #697080;
  font-weight: 700;
}

.windofa-cart-summary strong {
  color: var(--black);
  white-space: nowrap;
}

.windofa-cart-summary .summary-total {
  padding-top: 16px;
  border-top: 1px solid #e1e6ee;
  color: var(--black);
  font-size: 20px;
}

.windofa-cart-summary .summary-total strong {
  color: var(--orange);
  font-size: 28px;
}

.windofa-cart-empty {
  display: grid;
  place-items: center;
  min-height: 340px;
  gap: 12px;
  text-align: center;
}

.windofa-cart-empty[hidden] {
  display: none;
}

.windofa-cart-empty i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--orange);
  background: #fff2e6;
  border-radius: 50%;
  font-size: 26px;
}

.windofa-cart-empty h2,
.windofa-cart-empty p {
  margin: 0;
}

.windofa-cart-empty h2 {
  color: var(--black);
  font-size: 24px;
}

.windofa-cart-empty p {
  max-width: 460px;
  color: #697080;
  line-height: 1.6;
}

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

.windofa-cart-item:first-child {
  padding-top: 0;
}

.windofa-cart-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.windofa-cart-item img {
  width: 110px;
  height: 128px;
  object-fit: cover;
  background: #f1f3f6;
  border-radius: 8px;
}

.windofa-cart-item h2,
.windofa-cart-item p {
  margin: 0;
}

.windofa-cart-item h2 {
  color: var(--black);
  font-size: 20px;
  line-height: 1.25;
}

.windofa-cart-item p {
  margin-top: 7px;
  color: #697080;
  font-weight: 700;
}

.windofa-cart-item > strong {
  color: var(--black);
  font-size: 18px;
  white-space: nowrap;
}

.windofa-cart-qty {
  display: inline-grid;
  grid-template-columns: 38px 48px 38px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
}

.windofa-cart-qty button,
.windofa-cart-qty output {
  display: grid;
  place-items: center;
  height: 34px;
  color: var(--black);
  background: var(--white);
  border: 0;
  font-weight: 900;
}

.windofa-cart-qty output {
  border-left: 1px solid #dfe4eb;
  border-right: 1px solid #dfe4eb;
}

.windofa-cart-remove {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #dfe4eb;
  border-radius: 50%;
}

.windofa-cart-action,
.windofa-cart-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.windofa-cart-action {
  color: var(--white);
  background: var(--orange);
  border: 0;
}

.windofa-cart-action:hover {
  color: var(--white);
  background: var(--orange-dark);
}

.windofa-cart-secondary {
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--orange);
}

.windofa-cart-secondary:hover {
  color: var(--white);
  background: var(--orange);
}

.windofa-cart-action.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.windofa-cart-action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

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

.checkout-fields label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 900;
}

.checkout-fields label:nth-child(3),
.checkout-fields label:nth-child(4) {
  grid-column: 1 / -1;
}

.checkout-fields input,
.checkout-fields textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--black);
  background: #f7f8fa;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.checkout-mini-list {
  display: grid;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1e6ee;
}

.checkout-mini-item {
  font-size: 14px;
}

.checkout-mini-item span {
  display: grid;
  gap: 4px;
}

.checkout-mini-item small {
  color: #8a91a0;
  font-weight: 700;
}

.checkout-account-box {
  display: grid !important;
  gap: 6px !important;
  justify-content: stretch !important;
  padding: 14px;
  color: #697080;
  background: #fff7ef;
  border: 1px solid #ffd9b3;
  border-radius: 8px;
  font-weight: 800;
}

.checkout-account-box strong {
  color: var(--black);
  white-space: normal;
}

@media (max-width: 900px) {
  .windofa-cart-layout {
    grid-template-columns: 1fr;
  }

  .windofa-cart-summary {
    position: static;
  }
}

@media (max-width: 767px) {
  .windofa-cart-hero {
    padding: 34px 0 24px;
  }

  .windofa-cart-section {
    padding: 20px 0 44px;
  }

  .windofa-cart-list,
  .windofa-checkout-form,
  .windofa-cart-summary {
    padding: 16px;
  }

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

  .windofa-cart-item img {
    width: 76px;
    height: 90px;
  }

  .windofa-cart-item h2 {
    font-size: 15px;
  }

  .windofa-cart-item p,
  .checkout-mini-item {
    font-size: 12px;
  }

  .windofa-cart-item > strong {
    grid-column: 2;
    font-size: 15px;
  }

  .windofa-cart-remove {
    grid-column: 3;
    grid-row: 1;
    width: 32px;
    height: 32px;
  }

  .windofa-cart-qty {
    grid-template-columns: 32px 38px 32px;
  }

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

  .windofa-cart-summary .summary-total strong {
    font-size: 24px;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: flex-start;
}

.checkout-form-stack,
.checkout-summary-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-panel,
.checkout-summary-panel,
.checkout-note-field {
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  padding: 20px;
}

.checkout-summary-panel {
  position: sticky;
  top: 96px;
}

.checkout-panel-head,
.checkout-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.checkout-panel-head {
  justify-content: flex-start;
}

.checkout-panel-head span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}

.checkout-panel h2,
.checkout-summary-panel h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
}

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

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

.checkout-panel label,
.checkout-note-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #2d3442;
}

.checkout-panel input,
.checkout-panel select,
.checkout-panel textarea,
.checkout-note-field textarea,
.checkout-voucher-row input {
  width: 100%;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--black);
  background: #fff;
}

.checkout-panel select:disabled {
  background: #f3f5f8;
  color: #8b94a3;
  cursor: not-allowed;
}

.checkout-muted,
.checkout-form-message {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-shipping-options,
.checkout-payment-list {
  display: grid;
  gap: 10px;
}

.checkout-shipping-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.checkout-shipping-option {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 178px;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.checkout-shipping-option input {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
}

.checkout-shipping-option:hover {
  border-color: var(--black);
}

.checkout-shipping-option:has(input:checked) {
  border-color: var(--black);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.12);
}

.shipping-card-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-right: 28px;
}

.shipping-card-top img {
  width: 58px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
  padding: 5px;
}

.shipping-card-top strong {
  font-size: 17px;
  color: var(--black);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.shipping-card-service {
  display: grid;
  gap: 5px;
}

.shipping-card-service b {
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.shipping-card-price {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 7px 11px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

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

.checkout-bank-list .checkout-bank-account {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  min-height: 154px;
  border: 1px solid #d8dde8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 16px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.checkout-bank-list .checkout-bank-account:hover {
  border-color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.10);
}

.checkout-bank-list .checkout-bank-account:has(input:checked) {
  border-color: var(--black);
  background: #fff;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}

.checkout-bank-list .checkout-bank-account input {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  accent-color: var(--black);
}

.checkout-bank-list .checkout-bank-account img,
.checkout-bank-logo {
  width: 76px;
  height: 56px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.checkout-bank-list .checkout-bank-account img {
  object-fit: contain;
  padding: 6px;
}

.checkout-bank-logo {
  display: grid;
  place-items: center;
  color: var(--black);
  font-weight: 900;
  font-size: 24px;
}

.checkout-bank-detail {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding-right: 28px;
}

.checkout-bank-list .checkout-bank-account strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.checkout-bank-list .checkout-bank-account b {
  color: var(--black);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.checkout-bank-list .checkout-bank-account small,
.checkout-bank-list .checkout-bank-account em {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
  overflow-wrap: anywhere;
}

.checkout-bank-check {
  grid-column: 1 / -1;
  display: none;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.checkout-bank-list .checkout-bank-account:has(input:checked) .checkout-bank-check {
  display: inline-flex;
}

.checkout-bank-empty {
  margin: 0;
  border: 1px dashed #d8dde8;
  border-radius: 8px;
  padding: 12px;
  color: #6b7280;
  background: #f8fafc;
  font-size: 13px;
}

.checkout-shipping-option small {
  color: #6b7280;
  line-height: 1.35;
}

.checkout-voucher-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.checkout-mini-list {
  display: grid;
  gap: 12px;
}

.checkout-mini-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.checkout-mini-item img {
  width: 58px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f5f8;
}

.checkout-mini-item span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-mini-item strong {
  font-size: 14px;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-mini-item small {
  color: #6b7280;
}

.checkout-mini-item b {
  font-size: 13px;
  color: var(--black);
  white-space: nowrap;
}

.checkout-edit-cart {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.checkout-summary-lines {
  border-top: 1px solid #eceff4;
  margin-top: 8px;
  padding-top: 14px;
  display: grid;
  gap: 11px;
}

.checkout-summary-lines > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #626b7c;
}

.checkout-summary-lines strong {
  color: var(--black);
}

.checkout-summary-lines .summary-total {
  border-top: 1px solid #eceff4;
  padding-top: 13px;
  color: var(--black);
  font-weight: 900;
}

.checkout-summary-lines .summary-total strong {
  font-size: 24px;
}

.checkout-submit {
  width: 100%;
}

.checkout-success-box {
  border: 1px solid #bfe6cb;
  background: #f0fff4;
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 10px;
  color: #175c2f;
}

.checkout-success-box .checkout-bank-account {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

.checkout-success-box .checkout-bank-account img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.checkout-success-box .checkout-bank-account span {
  display: grid;
  gap: 3px;
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

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

  .checkout-summary-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout-field-grid,
  .checkout-voucher-row {
    grid-template-columns: 1fr;
  }

  .checkout-panel,
  .checkout-summary-panel,
  .checkout-note-field {
    padding: 16px;
  }

  .checkout-mini-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-mini-item b {
    grid-column: 2;
  }

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

  .checkout-bank-list .checkout-bank-account {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .checkout-bank-list .checkout-bank-account img,
  .checkout-bank-logo {
    width: 52px;
    height: 42px;
  }
}
