:root {
  --ba-ink: #201a1a;
  --ba-muted: #6f6260;
  --ba-cream: #fff8f5;
  --ba-surface: #ffffff;
  --ba-line: #f1d8d5;
  --ba-accent: #d94b70;
  --ba-accent-deep: #b73558;
  --ba-accent-light: #f27896;
  --ba-accent-soft: #fde7e8;
  --ba-blush: #f9d8dc;
  --ba-gold: #f5a623;
  --ba-shadow: 0 16px 40px rgba(80, 40, 40, 0.08);
}

body.ba-body {
  min-height: 100vh;
  color: var(--ba-ink);
  background: var(--ba-cream);
  font-family: Inter, Manrope, Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ba-body h1,
.ba-body h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.ba-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(241, 216, 213, 0.75);
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(14px);
}

.ba-site-header .container {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ba-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ba-ink);
  text-decoration: none;
}

.ba-brand-logo {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 0.75rem;
}

.ba-brand-text {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0;
}

.ba-menu-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--ba-line);
  border-radius: 14px;
  background: #fff;
  color: var(--ba-ink);
}

.ba-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.ba-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.ba-chat-menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 75, 112, 0.38);
  border-radius: 14px;
  background: #fff;
  color: var(--ba-accent-deep);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(217, 75, 112, 0.12);
  animation: ba-chat-attention 3.8s ease-in-out infinite;
}

.ba-chat-menu-button::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(217, 75, 112, 0.32);
  border-radius: 18px;
  opacity: 0;
  animation: ba-chat-ring 3.8s ease-out infinite;
}

.ba-chat-menu-button:hover,
.ba-chat-menu-button:focus-visible {
  border-color: var(--ba-accent);
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
}

.ba-chat-menu-button span {
  position: relative;
  z-index: 1;
}

@keyframes ba-chat-attention {
  0%,
  64%,
  100% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-2px);
  }
  76% {
    transform: translateY(0);
  }
  82% {
    transform: translateY(-1px);
  }
}

@keyframes ba-chat-ring {
  0%,
  62% {
    opacity: 0;
    transform: scale(0.92);
  }
  72% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ba-chat-menu-button,
  .ba-chat-menu-button::after {
    animation: none;
  }
}

.ba-site-menu {
  position: absolute;
  top: calc(100% - 0.35rem);
  right: 0.75rem;
  min-width: 220px;
  display: none;
  padding: 0.5rem;
  border: 1px solid var(--ba-line);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: var(--ba-shadow);
}

.ba-site-menu.is-open {
  display: grid;
  gap: 0.25rem;
}

.ba-site-menu a,
.ba-site-menu-form button {
  min-height: 48px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--ba-ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
}

.ba-site-menu a:hover,
.ba-site-menu a:focus-visible,
.ba-site-menu-form button:hover,
.ba-site-menu-form button:focus-visible {
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
}

.ba-site-menu-form {
  margin: 0;
}

.category-switcher-section {
  padding: 24px 20px 32px;
  border-bottom: 1px solid #f2d6dc;
}

.category-switcher-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c43c67;
  margin-bottom: 14px;
}

.category-switcher {
  display: flex;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 5px;
  background: #fffafa;
  border: 1px solid #f2c9d2;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(196, 60, 103, 0.08);
}

.category-tab {
  flex: 1;
  min-width: 0;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.category-tab.active {
  background: linear-gradient(135deg, #d83f72, #ec6b95);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(216, 63, 114, 0.25);
  pointer-events: none;
  cursor: default;
}

.category-tab.inactive {
  background: transparent;
  color: #161616;
}

.category-tab.inactive:hover {
  background: #fff1f5;
}

.category-tab:active {
  transform: scale(0.98);
}

.category-tab img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.category-tab img.hair-icon {
  width: 28px;
  height: 28px;
}

.ba-hero-card,
.ba-panel-card {
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ba-shadow);
}

.ba-kicker {
  margin-bottom: 0.65rem;
  color: var(--ba-accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ba-subtle {
  color: var(--ba-muted);
}

.ba-chip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  border: 0;
  background: rgba(31, 36, 48, 0.06);
  color: var(--ba-ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.ba-phrase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ba-copy-order {
  cursor: pointer;
}

.ba-copy-order:hover,
.ba-copy-order:focus-visible {
  background: rgba(31, 36, 48, 0.1);
}

.ba-copy-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.ba-copy-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.ba-service-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: var(--ba-surface);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(31, 36, 48, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.ba-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.12);
}

.ba-service-card.is-selected {
  border-color: rgba(200, 100, 59, 0.58);
  box-shadow: 0 22px 44px rgba(200, 100, 59, 0.18);
}

.ba-service-card.is-muted {
  opacity: 0.68;
}

.ba-service-media {
  aspect-ratio: 16 / 12;
  background: linear-gradient(180deg, rgba(200, 100, 59, 0.08), rgba(31, 36, 48, 0.02));
}

.ba-service-media img,
.ba-preview-image,
.ba-result-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-result-image[role="button"] {
  cursor: pointer;
}

.ba-result-image.is-download-disabled {
  cursor: default;
}

.ba-service-body {
  padding: 1.1rem;
}

.ba-example-grid {
  display: grid;
  gap: 1rem;
}

.ba-example-figure img {
  display: block;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 14px 36px rgba(31, 36, 48, 0.08);
}

.ba-example-figure figcaption {
  margin-top: 0.75rem;
  color: var(--ba-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.ba-selected-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.75rem;
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.ba-price {
  color: var(--ba-accent-deep);
  font-size: 1rem;
  font-weight: 700;
}

.ba-upload-frame,
.ba-result-frame {
  overflow: hidden;
  border: 1px dashed rgba(31, 36, 48, 0.16);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 235, 0.9));
}

.ba-preview-placeholder {
  min-height: 19rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--ba-muted);
  text-align: center;
}

.ba-result-grid {
  display: grid;
  gap: 1rem;
}

.ba-result-status-card {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ba-shadow);
}

.ba-result-status-card .ba-copy-order {
  justify-self: start;
}

.ba-result-status-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
}

.ba-success-icon,
.ba-info-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
  font-weight: 900;
}

.ba-success-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-result-preview-card {
  display: grid;
  gap: 1.25rem;
}

.ba-result-main .ba-result-frame {
  aspect-ratio: 3 / 4;
}

.ba-result-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.ba-before-after-preview .ba-result-frame {
  aspect-ratio: 4 / 3;
}

.ba-privacy-line,
.ba-review-note {
  color: var(--ba-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ba-result-cta-row {
  display: grid;
  gap: 0.75rem;
}

.ba-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-paywall-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ba-paywall-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
}

.ba-paywall-frame .ba-preview-placeholder {
  min-height: 100%;
  height: 100%;
  padding: 1rem;
}

.ba-locked-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--ba-muted);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(31, 36, 48, 0.08), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(45deg, rgba(31, 36, 48, 0.08) 0, rgba(31, 36, 48, 0.08) 0.5rem, rgba(255, 255, 255, 0.35) 0.5rem, rgba(255, 255, 255, 0.35) 1rem);
}

.ba-lock-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 0.75rem;
  background: rgba(31, 36, 48, 0.12);
  color: var(--ba-ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.ba-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ba-variation-grid,
.ba-share-grid {
  display: grid;
  gap: 0.9rem;
}

.ba-variation-card {
  overflow: hidden;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 36, 48, 0.06);
}

.ba-variation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.ba-variation-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.ba-variation-body p,
.ba-bundle-cta p,
.ba-mini-testimonial {
  color: var(--ba-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ba-variation-body p {
  margin: 0;
}

.ba-bundle-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(217, 75, 112, 0.22);
  border-radius: 1rem;
  background: rgba(253, 231, 232, 0.58);
}

.ba-other-category-list {
  display: grid;
  gap: 0.85rem;
}

.ba-other-category-link {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(217, 75, 112, 0.24);
  border-radius: 1rem;
  background: #fffafa;
  color: var(--ba-ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(196, 60, 103, 0.07);
}

.ba-other-category-link:hover,
.ba-other-category-link:focus-visible {
  color: var(--ba-accent-deep);
  background: #fff1f5;
}

.ba-other-category-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ba-other-category-link span {
  display: grid;
  gap: 0.15rem;
}

.ba-other-category-link strong {
  font-size: 1.08rem;
}

.ba-other-category-link small {
  color: var(--ba-muted);
  font-weight: 700;
}

.ba-share-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(217, 75, 112, 0.32);
  border-radius: 1rem;
  background: #fff;
  color: var(--ba-ink);
  font-weight: 800;
  text-align: center;
}

.ba-share-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.ba-share-icon svg {
  display: block;
  width: 1.28rem;
  height: 1.28rem;
  fill: currentColor;
}

.ba-share-icon.is-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
}

.ba-share-icon.is-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.ba-share-icon.is-telegram {
  background: #229ed9;
}

.ba-share-icon.is-facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
}

.ba-share-icon.is-whatsapp {
  background: #25d366;
}

.ba-share-icon.is-x {
  background: #000;
}

.ba-share-icon.is-copy {
  background: var(--ba-ink);
}

.ba-share-icon.is-copy svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.ba-share-button:hover,
.ba-share-button:focus-visible,
.ba-rating-buttons button:hover,
.ba-rating-buttons button:focus-visible,
.ba-rating-buttons button.is-selected {
  border-color: var(--ba-accent);
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
}

.ba-share-button:disabled,
.ba-share-button.is-disabled {
  border-color: rgba(31, 36, 48, 0.16);
  background: rgba(31, 36, 48, 0.04);
  color: rgba(31, 36, 48, 0.52);
  cursor: not-allowed;
}

.ba-share-button:disabled:hover,
.ba-share-button:disabled:focus-visible,
.ba-share-button.is-disabled:hover,
.ba-share-button.is-disabled:focus-visible {
  border-color: rgba(31, 36, 48, 0.16);
  background: rgba(31, 36, 48, 0.04);
  color: rgba(31, 36, 48, 0.52);
}

.ba-review-card {
  display: grid;
  gap: 1.2rem;
}

.ba-rating-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ba-rating-buttons button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ba-line);
  border-radius: 14px;
  background: #fff;
  color: var(--ba-ink);
  font-weight: 900;
}

.ba-review-actions {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.ba-review-destination {
  padding: 0.85rem;
  border-radius: 1rem;
  background: rgba(31, 36, 48, 0.05);
  color: var(--ba-muted);
  font-size: 0.92rem;
}

.ba-review-destination a {
  color: var(--ba-accent-deep);
  font-weight: 800;
}

.ba-mini-testimonial {
  padding: 1rem;
  border-left: 4px solid var(--ba-accent);
  border-radius: 0.75rem;
  background: rgba(255, 248, 245, 0.72);
}

.ba-disclaimer-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(31, 36, 48, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ba-muted);
  font-size: 0.88rem;
}

.ba-info-icon {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  border-radius: 12px;
}

.ba-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ba-accent-deep);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
}

.ba-form-stack {
  display: grid;
  gap: 1rem;
}

.ba-support-chat {
  display: grid;
  gap: 1rem;
}

.ba-chat-heading {
  display: grid;
  gap: 0.2rem;
}

.ba-support-thread {
  display: grid;
  gap: 0.9rem;
  max-height: 520px;
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 0.75rem;
  background: #fff;
}

.ba-support-empty {
  padding: 1rem;
  border: 1px dashed var(--ba-line);
  border-radius: 0.75rem;
  color: var(--ba-muted);
  text-align: center;
}

.ba-chat-message {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: end;
  max-width: min(100%, 46rem);
}

.ba-chat-message-customer {
  justify-self: end;
  grid-template-columns: minmax(0, 1fr) 40px;
}

.ba-chat-message-customer .ba-chat-avatar {
  grid-column: 2;
}

.ba-chat-message-customer .ba-chat-bubble {
  grid-column: 1;
  grid-row: 1;
  background: var(--ba-accent-soft);
}

.ba-chat-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ba-line);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.ba-chat-bubble {
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 36, 48, 0.06);
  border-radius: 0.75rem;
  background: rgba(31, 36, 48, 0.04);
}

.ba-chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
  color: var(--ba-muted);
  font-size: 0.84rem;
}

.ba-chat-meta strong {
  color: var(--ba-ink);
}

.ba-chat-meta time {
  color: var(--ba-muted);
}

.ba-chat-bubble p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ba-support-compose {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ba-line);
}

.ba-support-submit {
  min-width: 11rem;
  justify-self: start;
}

.ba-my-photos-auth {
  max-width: 560px;
}

.ba-contact-page {
  max-width: 760px;
}

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

.ba-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: grid;
  align-items: start;
  justify-items: end;
  padding: 5.5rem 1rem 1rem;
}

.ba-contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 26, 26, 0.32);
}

.ba-contact-dialog {
  position: relative;
  width: min(100%, 430px);
  max-height: min(720px, calc(100vh - 6.5rem));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 26, 26, 0.22);
}

.ba-contact-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--ba-line);
}

.ba-contact-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--ba-line);
  border-radius: 12px;
  background: #fff;
  color: var(--ba-ink);
  font-size: 1.35rem;
  line-height: 1;
}

.ba-contact-dialog-body {
  min-height: 0;
  overflow: auto;
  padding: 1rem;
}

.ba-support-chat-modal .ba-support-thread {
  max-height: 340px;
}

.ba-my-orders-grid {
  display: grid;
  gap: 1rem;
}

.ba-my-order-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 36, 48, 0.06);
}

.ba-my-order-card-refunded {
  border-color: #b42318;
  box-shadow: 0 14px 34px rgba(180, 35, 24, 0.13);
}

.ba-my-order-thumb {
  overflow: hidden;
  width: 96px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ba-line);
  border-radius: 0.5rem;
  background: var(--ba-accent-soft);
  color: var(--ba-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.ba-my-order-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-my-order-body {
  min-width: 0;
}

.ba-my-order-meta,
.ba-my-order-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.ba-my-order-meta span,
.ba-my-order-summary span {
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.ba-refund-status {
  display: grid;
  gap: 0.15rem;
  border: 2px solid #b42318;
  border-radius: 0.5rem;
  background: #fff4ed;
  color: #7a271a;
  line-height: 1.25;
}

.ba-refund-status strong {
  color: #b42318;
  font-size: 1rem;
  text-transform: uppercase;
}

.ba-refund-status small {
  color: #7a271a;
  font-weight: 700;
}

.ba-refund-status-compact {
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
}

.ba-refund-status-prominent {
  padding: 1rem;
}

.ba-divider {
  margin: 1.5rem 0;
  border-top: 1px solid var(--ba-line);
}

.ba-hidden {
  display: none !important;
}

.ba-landing-main {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 116px;
}

.ba-lip-hero {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px 0 18px;
}

.ba-lip-hero-copy h1 {
  max-width: 11em;
  margin: 0 0 14px;
  color: var(--ba-ink);
  font-size: clamp(2.55rem, 10vw, 5.2rem);
  line-height: 0.95;
}

.ba-lip-kicker {
  margin-bottom: 0.7rem;
  color: var(--ba-accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ba-lip-lead {
  max-width: 34rem;
  margin-bottom: 0.55rem;
  color: var(--ba-ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.ba-lip-note {
  margin-bottom: 1.15rem;
  color: var(--ba-muted);
  font-size: 1rem;
}

.ba-lip-actions {
  display: grid;
  gap: 12px;
}

.ba-primary-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ba-accent), var(--ba-accent-light));
  box-shadow: 0 10px 24px rgba(217, 75, 112, 0.28);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.ba-primary-button:hover,
.ba-primary-button:focus-visible {
  color: #fff;
  filter: brightness(0.98);
}

.btn-primary,
.btn-dark {
  border-color: var(--ba-accent-deep);
  background: var(--ba-accent-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible {
  border-color: var(--ba-accent);
  background: var(--ba-accent);
}

.ba-forward-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.ba-forward-button::after {
  width: 1.1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

[dir="rtl"] .ba-forward-button::after {
  transform: rotate(180deg);
}

.ba-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ba-accent-deep);
  font-weight: 800;
  text-decoration: none;
}

.ba-hero-preview {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--ba-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--ba-shadow);
}

.ba-hero-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.ba-preview-label {
  position: absolute;
  top: 16px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ba-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.ba-preview-label.is-before {
  left: 16px;
}

.ba-preview-label.is-after {
  right: 16px;
}

.ba-preview-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.ba-preview-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(217, 75, 112, 0.92);
  box-shadow: 0 12px 28px rgba(32, 26, 26, 0.2);
}

.ba-preview-handle::before,
.ba-preview-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.ba-preview-handle::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.ba-preview-handle::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.ba-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 10px;
  padding: 16px;
  border: 1px solid var(--ba-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ba-shadow);
}

.ba-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--ba-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.ba-line-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
}

.ba-line-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-landing-section {
  padding: 38px 0 8px;
}

.ba-seo-section {
  padding-top: 22px;
}

.ba-seo-phrase-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ba-muted);
}

.ba-section-heading {
  margin-bottom: 18px;
}

.ba-section-heading h2,
.ba-cta-banner h2,
.ba-upload-intro h1 {
  margin: 0 0 8px;
  color: var(--ba-ink);
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.02;
}

.ba-section-heading p {
  margin: 0;
  color: var(--ba-muted);
  font-size: 1rem;
}

.ba-step-grid,
.ba-gallery-grid {
  display: grid;
  gap: 14px;
}

.ba-step-card,
.ba-preview-card,
.ba-testimonial-card,
.ba-cta-banner {
  border: 1px solid var(--ba-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ba-shadow);
}

.ba-step-card {
  position: relative;
  padding: 22px;
}

.ba-step-card h3 {
  margin: 16px 0 8px;
  color: var(--ba-ink);
  font-size: 1.15rem;
}

.ba-step-card p {
  margin: 0;
  color: var(--ba-muted);
}

.ba-step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ba-accent), var(--ba-accent-light));
  color: #fff;
  font-weight: 800;
}

.ba-testimonial-card {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  padding: 18px;
}

.ba-testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.ba-stars {
  color: var(--ba-gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.ba-testimonial-card blockquote {
  margin: 8px 0;
  color: var(--ba-ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.ba-testimonial-card p,
.ba-social-proof {
  margin: 0;
  color: var(--ba-muted);
  font-weight: 700;
}

.ba-social-proof {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--ba-accent-soft);
  color: var(--ba-accent-deep);
}

.ba-preview-card {
  overflow: hidden;
}

.ba-preview-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ba-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-preview-card-body {
  padding: 14px 16px 16px;
}

.ba-preview-card-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.ba-preview-card-body p {
  margin: 0;
  color: var(--ba-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ba-more-variations {
  margin-top: 12px;
}

.ba-more-variations summary {
  color: var(--ba-accent-deep);
  cursor: pointer;
  font-weight: 800;
}

.ba-wide-button {
  width: 100%;
  margin-top: 16px;
}

.ba-cta-banner {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  padding: 24px;
  background: linear-gradient(135deg, #fde7e8, #fff8f5 56%, #f9d8dc);
}

.ba-cta-banner.is-hair-coloring {
  background: linear-gradient(135deg, #e5f1e8, #fff8f5 58%, #f2d2a9);
}

.ba-cta-banner p {
  margin: 0 0 8px;
  color: var(--ba-muted);
  font-size: 1.02rem;
}

.ba-cta-banner small {
  color: var(--ba-accent-deep);
  font-weight: 800;
}

.ba-category-mark {
  width: 92px;
  height: 68px;
  display: none;
  color: var(--ba-accent-deep);
}

.ba-category-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-coming-soon {
  padding: 38px 0 8px;
}

.ba-coming-grid {
  display: grid;
  gap: 10px;
}

.ba-coming-grid span {
  padding: 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ba-muted);
  font-weight: 800;
}

.ba-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--ba-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(80, 40, 40, 0.18);
}

.ba-sticky-cta img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.ba-sticky-cta strong,
.ba-sticky-cta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ba-sticky-cta strong {
  font-size: 0.85rem;
}

.ba-sticky-cta span {
  color: var(--ba-muted);
  font-size: 0.78rem;
}

.ba-sticky-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ba-accent), var(--ba-accent-light));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.ba-upload-landing {
  display: grid;
  gap: 22px;
}

.ba-upload-page-flow {
  display: grid;
  gap: 1rem;
}

.ba-upload-page-inputs,
.ba-upload-page-actions {
  width: 100%;
  max-width: 36rem;
  margin-right: auto;
  margin-left: auto;
}

.ba-upload-page-preview .row {
  justify-content: center;
}

.ba-upload-intro {
  /* max-width: 42rem; */
  padding-top: 16px;
}

.ba-upload-intro p:last-child {
  color: var(--ba-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.ba-service-picker {
  padding: 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 20px;
  background: rgba(255, 248, 245, 0.72);
}

.ba-service-picker-grid {
  display: grid;
  gap: 10px;
}

.ba-service-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 14px;
  border: 1px solid var(--ba-line);
  border-radius: 18px;
  background: #fff;
  color: var(--ba-ink);
  text-align: left;
  box-shadow: 0 8px 18px rgba(31, 36, 48, 0.04);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ba-service-option img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  object-fit: cover;
}

.ba-service-option strong,
.ba-service-option small {
  display: block;
}

.ba-service-option strong {
  font-size: 0.96rem;
}

.ba-service-option small {
  color: var(--ba-muted);
  font-weight: 800;
}

.ba-service-option.is-selected {
  border-color: rgba(217, 75, 112, 0.88);
  background: linear-gradient(180deg, #fff, rgba(255, 239, 244, 0.9));
  box-shadow:
    0 0 0 3px rgba(217, 75, 112, 0.2),
    0 14px 32px rgba(217, 75, 112, 0.18),
    inset 0 0 0 1px rgba(217, 75, 112, 0.18);
  transform: translateY(-1px);
}

.ba-service-option.is-selected::before,
.ba-service-option.is-selected::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ba-service-option.is-selected::after {
  top: 22px;
  inset-inline-end: 22px;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ba-accent);
  box-shadow: 0 8px 18px rgba(160, 39, 57, 0.24);
}

.ba-service-option.is-selected::before {
  z-index: 1;
  top: 31px;
  inset-inline-end: 32px;
  width: 10px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(42deg);
}

.ba-enhancement-picker {
  padding: 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: #fff;
}

.ba-enhancement-list {
  display: grid;
  gap: 10px;
}

.ba-enhancement-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 0.75rem;
  background: rgba(255, 248, 245, 0.72);
}

.ba-enhancement-option label {
  display: grid;
  gap: 0.2rem;
}

.ba-enhancement-option small {
  color: var(--ba-muted);
}

.ba-enhancement-option > span {
  color: var(--ba-ink);
  font-weight: 800;
  white-space: nowrap;
}

.ba-choice-summary,
.ba-payment-total {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
}

.ba-choice-summary {
  margin: 0 0 0.9rem;
  color: var(--ba-muted);
}

.ba-choice-summary strong,
.ba-payment-total strong {
  color: var(--ba-ink);
}

.ba-payment-total {
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ba-line);
  border-radius: 1rem;
  background: rgba(255, 248, 245, 0.72);
}

.ba-order-summary-item {
  padding: 0.95rem;
  border: 1px solid var(--ba-line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.78);
}

.ba-order-summary-content {
  display: grid;
  grid-template-areas:
    "header"
    "media"
    "description";
  gap: 0.85rem;
}

.ba-order-summary-header {
  grid-area: header;
}

.ba-order-summary-media {
  grid-area: media;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ba-order-summary-media img {
  width: 100%;
  max-width: 16rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.75rem;
}

.ba-order-summary-media.is-multi img {
  width: min(48%, 8rem);
}

.ba-order-summary-description {
  grid-area: description;
}

.ba-sticky-panel {
  position: sticky;
  top: 1.5rem;
}

.ba-form-note {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(31, 36, 48, 0.05);
  color: var(--ba-muted);
  font-size: 0.92rem;
}

.ba-email-review {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(217, 75, 112, 0.28);
  border-radius: 0.75rem;
  background: rgba(253, 231, 232, 0.72);
  color: var(--ba-ink);
  font-size: 0.92rem;
}

.ba-email-suggestion {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.ba-status-box {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(31, 36, 48, 0.05);
}

.ba-progress-state {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ba-status-box.is-error {
  border: 1px solid rgba(160, 39, 57, 0.18);
  background: linear-gradient(180deg, rgba(160, 39, 57, 0.12), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.ba-status-box.is-error .ba-kicker {
  color: #8d2234;
}

.ba-status-box.is-error .ba-subtle {
  color: #6e4350;
}

.ba-order-number {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.ba-site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(31, 36, 48, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.ba-footer-nav {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--ba-muted);
  font-size: 0.95rem;
}

.ba-footer-nav a {
  color: var(--ba-accent-deep);
  text-decoration: none;
}

.ba-footer-nav a:hover {
  text-decoration: underline;
}

.ba-footer-line {
  margin: 0.65rem 0 0;
  color: var(--ba-muted);
  font-size: 0.95rem;
  text-align: center;
}

.ba-legal-card {
  max-width: 56rem;
}

.ba-legal-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
}

.ba-legal-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .ba-sticky-panel {
    position: static;
  }

  .ba-preview-placeholder {
    min-height: 15rem;
  }

  .ba-brand-text {
    font-size: 1.05rem;
  }

  .ba-paywall-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  body.ba-body {
    padding-bottom: 92px;
  }

  .ba-contact-modal {
    align-items: stretch;
    justify-items: stretch;
    padding: 4.75rem 0.75rem 0.75rem;
  }

  .ba-contact-dialog {
    width: 100%;
    max-height: calc(100vh - 5.5rem);
  }

  .ba-support-chat-modal .ba-support-thread {
    max-height: 42vh;
  }

  .ba-service-option {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ba-service-option img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .ba-brand {
    gap: 0.65rem;
  }

  .ba-brand-text {
    font-size: 0.98rem;
  }

  .ba-sticky-cta a span {
    display: none;
  }
}

@media (max-width: 360px) {
  .category-tab {
    font-size: 16px;
    gap: 8px;
  }

  .category-tab img {
    width: 23px;
    height: 23px;
  }

  .category-tab img.hair-icon {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 576px) {
  .ba-lip-actions {
    max-width: 35rem;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
  }

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

  .ba-testimonial-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ba-social-proof {
    grid-column: 1 / -1;
  }

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

  .ba-order-summary-content {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "media header"
      "media description";
    align-items: start;
  }

  .ba-order-summary-media {
    width: 7rem;
  }

  .ba-order-summary-media img {
    width: 7rem;
    height: 7rem;
  }

  .ba-order-summary-media.is-multi {
    width: 14.5rem;
  }

  .ba-result-cta-row,
  .ba-share-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .ba-landing-main {
    padding: 34px 28px 80px;
  }

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

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

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

  .ba-review-card,
  .ba-bundle-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ba-my-orders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-my-order-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .ba-my-order-thumb {
    width: 112px;
  }

  .ba-cta-banner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 30px;
  }

  .ba-category-mark {
    display: block;
  }

  .ba-sticky-cta {
    display: none;
  }
}

@media (min-width: 992px) {
  .ba-lip-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 42px;
    min-height: 620px;
    padding-top: 44px;
  }

  .ba-hero-preview,
  .ba-hero-preview img {
    min-height: 540px;
  }

  .ba-testimonial-card {
    grid-template-columns: auto minmax(0, 1fr) 18rem;
    padding: 24px;
  }

  .ba-social-proof {
    grid-column: auto;
  }

  .ba-result-preview-card {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  }
}
