/* Home / showcase */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--vt-gradient-deep);
  color: #fff;
  padding: 80px 0 96px;
  min-height: calc(100vh - var(--vt-header-h));
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(240, 70, 106, 0.92) 0%, rgba(255, 122, 61, 0.78) 55%, rgba(255, 138, 61, 0.55) 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 0, 0, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px 48px;
  align-items: center;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-brand .logo-img {
  height: 56px;
  max-width: min(300px, 78vw);
  background: none;
  padding: 0;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.hero-trust span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.hero-aside::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 6%;
  width: 82%;
  height: 78%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  pointer-events: none;
}

.hero-figure {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  height: clamp(420px, 58vh, 560px);
  margin: 0;
  background: none;
}

.hero-figure::after {
  content: '';
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 2%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(20, 8, 14, 0.38), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(100%, 420px);
  margin-top: 4px;
}

.hero-stat {
  padding: 14px 16px 13px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(28, 12, 22, 0.14);
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero-stat span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(36, 26, 32, 0.1);
  border-color: rgba(240, 70, 106, 0.22);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--vt-pink-bg);
  color: var(--vt-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.22s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--vt-muted);
  font-weight: 500;
  line-height: 1.55;
}

.categories-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.cat-tile {
  background: var(--vt-white);
  border-radius: var(--vt-radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--vt-border-2);
  color: var(--vt-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(36, 26, 32, 0.1);
  opacity: 1;
  color: var(--vt-text);
}

.cat-tile-photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
  position: relative;
  min-height: 168px;
}

.cat-tile-photo img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.cat-tile-photo:hover img {
  transform: scale(1.05);
}

.cat-tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 16, 0.78));
  color: #fff;
}

.cat-tile-label strong {
  color: #fff;
}

.cat-tile-label span {
  color: rgba(255, 255, 255, 0.85);
}

.cat-tile-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--vt-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vt-pink);
}

.cat-tile strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.cat-tile span {
  font-size: 12px;
  color: var(--vt-muted);
  font-weight: 600;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

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

.product-specs {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--vt-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.cta-band {
  background: var(--vt-gradient);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-band p {
  font-size: 15px;
  opacity: 0.9;
  font-weight: 500;
  max-width: 420px;
}

.page-hero-sm {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #EDE4E8 0%, var(--vt-bg) 100%);
}

.page-hero-sm h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.page-hero-sm p {
  font-size: 16px;
  color: var(--vt-muted);
  font-weight: 500;
  max-width: 560px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.kpi-card {
  padding: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(36, 26, 32, 0.09);
}

.kpi-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kpi-card-head span {
  font-size: 12px;
  color: var(--vt-muted);
  font-weight: 600;
}

.kpi-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-value {
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  letter-spacing: -0.5px;
}

.kpi-meta {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

body.mode-b2b .dash-kpi-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

body.mode-b2b .dash-kpi-row .kpi-card {
  padding: 12px 12px;
  min-width: 0;
}

body.mode-b2b .dash-kpi-row .kpi-card-head span {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.mode-b2b .dash-kpi-row .kpi-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex: none;
}

body.mode-b2b .dash-kpi-row .kpi-value {
  font-size: 20px;
  margin-top: 4px;
  letter-spacing: -0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.mode-b2b .dash-kpi-row .kpi-meta {
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-card {
  padding: 20px;
  background: var(--vt-gradient);
  color: #fff;
  border-radius: var(--vt-radius-lg);
}

.promo-card .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.promo-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 4px;
  letter-spacing: -0.3px;
}

.promo-card p {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 14px;
}

.catalog-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 10px;
  margin: 0 -10px;
  border-bottom: 1px solid var(--vt-border);
  border-radius: 12px;
  transition: background-color 0.15s ease;
}

.cart-item:hover {
  background: #FFF6F8;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #F4EBEF;
  flex: none;
  overflow: hidden;
}

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

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-size: 14px;
  font-weight: 800;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: var(--vt-bg);
  border-radius: 10px;
  padding: 4px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--vt-white);
  font-weight: 800;
  border: 1px solid var(--vt-border);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.qty-control button:hover {
  background: var(--vt-pink-bg);
  border-color: rgba(240, 70, 106, 0.35);
  color: var(--vt-pink);
  transform: scale(1.08);
}

.qty-control span {
  font-size: 13px;
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--vt-muted);
  margin-bottom: 10px;
}

.summary-row.total {
  font-size: 16px;
  font-weight: 800;
  color: var(--vt-text);
  padding-top: 12px;
  border-top: 1px solid var(--vt-border);
  margin-top: 8px;
}

.cart-proforma {
  margin-top: 16px;
}

.cart-proforma-btn {
  border-color: rgba(240, 70, 106, 0.28);
  color: var(--vt-pink);
  background: #FFF7F9;
  white-space: normal;
  height: auto;
  min-height: 46px;
  padding: 10px 16px;
  line-height: 1.3;
}

.cart-proforma-btn:hover {
  border-color: var(--vt-pink);
  background: var(--vt-pink-bg);
  color: var(--vt-pink);
}

.cart-proforma-hint {
  margin: 8px 0 0;
  text-align: center;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.product-gallery {
  position: relative;
  border-radius: 20px;
  min-height: 360px;
  height: 100%;
  background: #F4EBEF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vt-muted-2);
  overflow: hidden;
}

.product-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery.is-zoomable {
  cursor: zoom-in;
}

.product-gallery.is-zoomable img {
  transform-origin: var(--zx, 50%) var(--zy, 50%);
  transition: transform 0.22s ease;
}

.product-gallery.is-zoomable:hover img {
  transform: scale(1.85);
}

.product-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 26, 32, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
  letter-spacing: 0.01em;
}

.product-zoom-lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(18, 12, 16, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.product-zoom-lb[hidden] {
  display: none !important;
}

.product-zoom-lb-stage {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 16px;
  background: #1a1418;
}

.product-zoom-lb-stage.is-zoomed {
  cursor: zoom-out;
}

.product-zoom-lb-stage img {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: var(--zx, 50%) var(--zy, 50%);
  transition: transform 0.2s ease;
  user-select: none;
}

.product-zoom-lb-stage.is-zoomed img {
  transform: scale(2.2);
}

.product-zoom-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: var(--vt-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-zoom-lb-tip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

.similar-block {
  margin-top: 28px;
}

.similar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.similar-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.similar-head p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--vt-muted);
}

.similar-block .grid-4 {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery.is-zoomable:hover img,
  .product-zoom-lb-stage img {
    transition: none;
  }
  .product-gallery.is-zoomable:hover img {
    transform: none;
  }
}

.product-info .ref {
  font-size: 12px;
  font-weight: 700;
  color: var(--vt-muted-2);
}

.product-info h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 6px 0 12px;
}

.product-info .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--vt-pink);
  margin: 16px 0;
}

.product-buy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.product-buy .btn-lg {
  flex: 1;
  min-width: 0;
}

.product-cart-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  flex: none;
  cursor: pointer;
  box-shadow: var(--vt-shadow-btn);
}

.product-cart-btn[hidden],
.product-buy .btn[hidden] {
  display: none !important;
}

.product-cart-btn svg {
  display: block;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin-top: 14px;
}

.product-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 4px 2px;
  margin: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--vt-muted);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link:hover {
  color: var(--vt-pink);
}

.product-link + .product-link::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D4C8CE;
  margin-right: 10px;
}

.product-link[hidden] {
  display: none !important;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(36, 26, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal[hidden] {
  display: none !important;
}

.quote-modal-card {
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  color: var(--vt-text);
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(36, 26, 32, 0.18);
}

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

.quote-modal-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.quote-modal-product {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--vt-muted);
}

.quote-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--vt-white);
  border: 1px solid var(--vt-border);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.notif-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--vt-shadow);
  border-color: #E8D6DE;
  opacity: 1;
  color: inherit;
}

.notif-item.unread {
  border-color: transparent;
  box-shadow: var(--vt-shadow);
  background: linear-gradient(90deg, #fff 0%, #FFF5F7 100%);
}

.notif-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.chat-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.chat-box {
  display: flex;
  flex-direction: column;
  height: 560px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 75%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.chat-bubble.me {
  align-self: flex-end;
  background: var(--vt-gradient);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-bubble.them {
  align-self: flex-start;
  background: var(--vt-bg);
  color: var(--vt-text);
  border-bottom-left-radius: 4px;
}

.chat-bubble.has-image {
  padding: 6px;
}

.chat-bubble-img {
  display: block;
  max-width: 220px;
  max-height: 240px;
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.chat-bubble.has-image .chat-caption {
  padding: 6px 8px 4px;
}

.chat-attach {
  flex: none;
}

.chat-input-bar {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--vt-border);
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 28px 0;
}

.otp-inputs input {
  width: 52px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  border-radius: 12px;
  border: 1.4px solid var(--vt-border);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-aside {
    min-height: 0;
  }

  .hero-figure {
    width: min(100%, 280px);
    height: clamp(300px, 48vh, 380px);
  }

  .hero-stats {
    width: min(100%, 300px);
  }

  .hero-stat {
    padding: 12px 12px 11px;
  }

  .hero-stat strong {
    font-size: 18px;
  }

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

  .categories-row,
  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }

  body.mode-b2b .dash-kpi-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cart-layout,
  .product-detail,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-sm h1 {
    font-size: 30px;
  }
}

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

  body.mode-b2b .dash-kpi-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 48px 0 56px;
    min-height: auto;
  }

  .hero-trust {
    margin-top: 20px;
  }

  .cat-tile-photo img {
    height: 148px;
  }

  .page-hero-sm {
    padding: 36px 0 24px;
  }

  .page-hero-sm h1 {
    font-size: 26px;
  }

  .cta-band {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .cta-band h2 {
    font-size: 22px;
  }

  .product-gallery {
    height: 260px;
    min-height: 260px;
    max-height: 260px;
  }

  .product-gallery.is-zoomable:hover img {
    transform: none;
  }

  .section {
    padding: 48px 0;
  }

  .offers-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 20px;
  }

  .offers-countdown {
    justify-content: flex-start;
  }
}

/* Offers strip */
.offers-strip-section {
  padding-top: 28px;
  padding-bottom: 8px;
}

.offers-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(255, 138, 61, 0.12), rgba(240, 70, 106, 0.1)),
    var(--vt-white);
  border: 1px solid rgba(240, 70, 106, 0.14);
  box-shadow: var(--vt-shadow);
}

.offers-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vt-pink);
  margin-bottom: 6px;
}

.offers-strip-copy h2 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.offers-strip-copy p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--vt-muted);
}

.offers-countdown {
  display: flex;
  gap: 8px;
}

.offers-count-cell {
  min-width: 58px;
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(36, 26, 32, 0.04);
  text-align: center;
}

.offers-count-cell strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.offers-count-cell span {
  font-size: 10px;
  font-weight: 700;
  color: var(--vt-muted);
  text-transform: uppercase;
}

.grid-4 {
  gap: 18px;
}

.product-card-img {
  overflow: hidden;
}

.section-title {
  letter-spacing: -0.4px;
}

/* MOQ / tier pricing on product pages */
.price-block {
  margin: 16px 0 8px;
}

.product-info .price {
  margin: 0 0 8px;
}

.moq-hint {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255, 138, 61, 0.1), rgba(240, 70, 106, 0.08));
  border: 1px solid rgba(240, 70, 106, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--vt-muted);
  line-height: 1.45;
}

.moq-hint[hidden] {
  display: none !important;
}

.moq-hint-mark {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--vt-gradient);
}

.cart-tier-note {
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.35;
}

.cart-tier-note.is-ok {
  color: var(--vt-green);
}

.cart-tier-note.is-hint {
  color: var(--vt-muted);
}

.cart-unlock-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--vt-green-bg);
  color: var(--vt-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.price-mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--vt-bg);
  border: 1px solid var(--vt-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--vt-muted);
  margin-bottom: 14px;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tier-badge.is-normal {
  background: #F1E9ED;
  color: #5B4B55;
}

.tier-badge.is-gros {
  background: var(--vt-orange-bg);
  color: #C2410C;
}

.tier-badge.is-super {
  background: var(--vt-pink-bg);
  color: #BE123C;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.product-moq {
  font-size: 11px;
  font-weight: 600;
  color: var(--vt-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.auth-demo-hint {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--vt-bg);
  border: 1px dashed var(--vt-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--vt-muted);
  text-align: center;
}

.account-tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.doc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-actions .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.doc-hint {
  font-size: 11px;
  font-weight: 600;
  color: var(--vt-muted);
  margin: -4px 0 0;
  line-height: 1.4;
}

.security-card .pwd-row {
  position: relative;
}

.security-card .pwd-toggle {
  position: absolute;
  right: 10px;
  top: 34px;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  color: var(--vt-pink);
  cursor: pointer;
}

.pwd-strength {
  height: 4px;
  border-radius: 999px;
  background: var(--vt-border);
  margin-top: 8px;
  overflow: hidden;
}

.pwd-strength > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--vt-gradient);
  transition: width 0.2s ease;
}

.pay-tab {
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.pay-tab:hover {
  border-color: rgba(240, 70, 106, 0.45) !important;
  background: #FFF7F9;
  opacity: 1;
}

.pay-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: #fff;
  padding: 6px;
  border-radius: 16px;
  border: 1.4px solid var(--vt-border);
  box-shadow: 0 2px 8px rgba(36, 26, 32, 0.04);
}
.pay-switch button {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  color: var(--vt-muted);
  cursor: pointer;
}
.pay-switch button.is-on {
  background: var(--vt-gradient);
  color: #fff;
  box-shadow: var(--vt-shadow-btn);
}

.vt-confirm {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(36, 26, 32, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vt-confirm[hidden] {
  display: none !important;
}

.vt-confirm-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 18px 50px rgba(36, 26, 32, 0.18);
}

.vt-confirm-card p {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.vt-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cash-break {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 0 0 16px;
}
.cash-break div {
  background: #F8F3F6;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
}
.cash-break span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--vt-muted);
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cash-break strong {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .cash-break {
    grid-template-columns: 1fr;
  }
}
