/*
 * BiCroma homepage — sjednocená produkční verze
 * Vychází z proměnných a základních prvků šablony Shoptet Samba.
 */

body {
  --bc-font-body: var(--template-font, "Source Sans 3");
  --bc-font-heading: var(--template-headings-font, "Exo 2");
  --bc-text: var(--colors-foregrounds-content-primary, #000000);
  --bc-heading: var(--colors-foregrounds-headlines-primary, #1f1f1f);
  --bc-muted: var(--colors-foregrounds-content-secondary, #4d4d4d);
  --bc-muted-soft: var(--colors-foregrounds-content-tertiary, #767676);
  --bc-border: var(--colors-foregrounds-borders-secondary, #dadada);
  --bc-surface: var(--colors-surface-primary, #ffffff);
  --bc-surface-soft: var(--colors-surface-secondary, #f8f4ee);
  --bc-surface-soft-strong: #f1e6d7;
  --bc-accent: var(--color-secondary, #c9aa78);
  --bc-accent-dark: #a68149;
  --bc-radius: var(--form-controls-border-radius, 8px);
}

body.in-index .bicroma-home,
body.in-index .bicroma-home * {
  box-sizing: border-box;
}

body.in-index .bicroma-home {
  color: var(--bc-text);
  font-family: var(--bc-font-body), sans-serif;
}

body.in-index .bicroma-home__inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
}

body.in-index .bicroma-home__title {
  margin: 0;
  color: var(--bc-heading);
  font-family: var(--bc-font-heading), sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.05em;
}

body.in-index .bicroma-home__intro {
  margin: 12px 0 0;
  color: var(--bc-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.025em;
}

body.in-index .bicroma-home__text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bc-accent);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

body.in-index .bicroma-home__text-link::after {
  content: "→";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition-duration, 0.3s) var(--transition-timing, ease-out);
}

body.in-index .bicroma-home__text-link:hover,
body.in-index .bicroma-home__text-link:focus-visible {
  color: var(--bc-accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.in-index .bicroma-home__text-link:hover::after,
body.in-index .bicroma-home__text-link:focus-visible::after {
  transform: translateX(3px);
}

body.in-index .bicroma-home a:focus-visible,
body.in-index #carousel .bicroma-hero a:focus-visible,
body.in-index .bicroma-proof a:focus-visible {
  outline: 2px solid var(--colors-focus-primary, #09367e);
  outline-offset: 3px;
}

/* Úvodní banner */

body.in-index #carousel[data-bicroma-homepage-hero="ready"],
body.in-index #carousel[data-bicroma-homepage-hero="ready"] .carousel-inner,
body.in-index #carousel[data-bicroma-homepage-hero="ready"] .item {
  height: auto !important;
}

body.in-index #carousel .bicroma-hero,
body.in-index #carousel .bicroma-hero * {
  box-sizing: border-box;
}

body.in-index #carousel .bicroma-hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bc-surface-soft);
}

body.in-index #carousel .bicroma-hero > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

body.in-index #carousel .bicroma-hero__content {
  max-height: none;
  min-height: 0;
  flex-direction: column;
  color: var(--bc-text);
  background: rgb(248 244 238 / 95%);
}

body.in-index #carousel .bicroma-hero__title {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  overflow: visible;
  color: var(--bc-heading);
  font-family: var(--bc-font-heading), sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-wrap: balance;
  -webkit-line-clamp: unset;
}

body.in-index #carousel .extended-banner-text {
  display: block;
  width: 100%;
  margin: 0 0 28px;
  overflow: visible;
  color: var(--bc-muted);
  font-family: var(--bc-font-body), sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.025em;
  text-wrap: pretty;
  -webkit-line-clamp: unset;
}

body.in-index #carousel .bicroma-hero__actions {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  margin: 0;
}

body.in-index #carousel .bicroma-hero__primary,
body.in-index #carousel .bicroma-hero__secondary,
body.in-index .bicroma-home .bicroma-home__button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 16px;
  border-radius: var(--bc-radius);
  font-family: var(--bc-font-body), sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: normal;
  text-align: center;
  text-decoration: none;
}

body.in-index #carousel .bicroma-hero__primary,
body.in-index .bicroma-home .bicroma-home__button {
  border: 1px solid var(--bc-accent);
  background: var(--bc-accent);
  color: #ffffff;
}

body.in-index #carousel .bicroma-hero__primary:hover,
body.in-index #carousel .bicroma-hero__primary:focus-visible,
body.in-index .bicroma-home .bicroma-home__button:hover,
body.in-index .bicroma-home .bicroma-home__button:focus-visible {
  border-color: var(--bc-accent-dark);
  background: var(--bc-accent-dark);
  color: #ffffff;
  text-decoration: none;
}

body.in-index #carousel .bicroma-hero__secondary {
  border: 1px solid var(--bc-accent);
  background: var(--bc-surface);
  color: var(--bc-accent-dark);
}

body.in-index #carousel .bicroma-hero__secondary:hover,
body.in-index #carousel .bicroma-hero__secondary:focus-visible {
  background: var(--bc-surface-soft);
  color: var(--bc-text);
  text-decoration: none;
}

@media (min-width: 992px) {
  body.in-index #carousel .bicroma-hero__content {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: clamp(32px, 4.45vw, 64px);
    display: flex;
    width: min(510px, 40%);
    padding: 44px 48px;
    border: 0;
    border-radius: 0;
    transform: translateY(-50%);
  }

  body.in-index #carousel .bicroma-hero__title {
    font-size: 44px;
    line-height: 49px;
  }
}

@media (max-width: 991px) {
  body.in-index #carousel .bicroma-hero__content {
    position: static;
    display: flex;
    width: 100%;
    padding: 28px 24px 32px;
    border: 0;
    border-radius: 0;
    background: var(--bc-surface-soft);
    transform: none;
  }

  body.in-index #carousel .bicroma-hero__title {
    font-size: 30px;
    line-height: 34px;
  }

  body.in-index #carousel .bicroma-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  body.in-index #carousel .bicroma-hero__primary,
  body.in-index #carousel .bicroma-hero__secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body.in-index #carousel .bicroma-hero__content {
    padding: 24px 20px 28px;
  }

  body.in-index #carousel .bicroma-hero__title {
    font-size: 28px;
    line-height: 32px;
  }

  body.in-index #carousel .extended-banner-text {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 20px;
  }
}

/* Čtyři důvody důvěry — globálně na homepage, kategoriích a produktech */

.benefit-banners-full-width {
  background: var(--bc-surface-soft);
}

.benefit-banners-full-width,
.benefit-banners-full-width * {
  box-sizing: border-box;
}

.benefit-banners-full-width > .container-full-width {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.benefit-banners-full-width .benefitBanner {
  display: grid;
  width: 100%;
  max-width: 1340px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin: 0 auto;
  padding: 28px 0;
}

.benefit-banners-full-width .benefitBanner__item {
  display: grid;
  min-width: 0;
  height: auto;
  align-content: start;
  align-items: start;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 4px 12px;
  color: var(--bc-text);
  text-align: left;
}

.benefit-banners-full-width .benefitBanner__item + .benefitBanner__item {
  border-left: 0;
}

.benefit-banners-full-width .benefitBanner__picture,
.benefit-banners-full-width .benefitBanner__img {
  display: block;
  width: 48px;
  height: 48px;
}

.benefit-banners-full-width .benefitBanner__img {
  object-fit: contain;
}

.benefit-banners-full-width .benefitBanner__content {
  min-width: 0;
  padding: 0;
}

.benefit-banners-full-width .benefitBanner__title {
  display: block;
  margin: 0 0 6px;
  color: var(--bc-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.01em;
}

.benefit-banners-full-width .benefitBanner__data {
  margin: 0;
  color: var(--bc-muted);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 991px) {
  .benefit-banners-full-width > .container-full-width {
    padding-inline: 12px;
  }

  .benefit-banners-full-width .benefitBanner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
    padding: 10px 0;
  }

  .benefit-banners-full-width .benefitBanner__item {
    display: block;
    padding: 18px 14px;
    border: 0;
  }

  .benefit-banners-full-width .benefitBanner__item + .benefitBanner__item {
    border-left: 0;
  }

  .benefit-banners-full-width .benefitBanner__picture,
  .benefit-banners-full-width .benefitBanner__img {
    width: 40px;
    height: 40px;
  }

  .benefit-banners-full-width .benefitBanner__picture {
    margin: 0 0 10px;
  }

  .benefit-banners-full-width .benefitBanner__title {
    font-size: 14px;
    line-height: 18px;
  }

  .benefit-banners-full-width .benefitBanner__data {
    font-size: 12px;
    line-height: 18px;
  }
}

/* Rozcestník podle potřeby */

body.in-index .bicroma-care-guide {
  margin: 64px 0 44px;
  padding: 0 16px;
  scroll-margin-top: 150px;
}

body.in-index .bicroma-care-guide + .homepage-products-heading-2 {
  margin-top: 0;
  padding-top: 12px;
}

body.in-index .bicroma-care-guide__head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

body.in-index .bicroma-care-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
}

body.in-index .bicroma-care-guide__card {
  display: flex;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  padding: 32px;
  border: 0;
  background: var(--bc-surface-soft);
  color: var(--bc-text);
  text-decoration: none;
  transition: background-color var(--transition-duration, 0.3s) var(--transition-timing, ease-out);
}

body.in-index .bicroma-care-guide__card h3 {
  margin: 0 0 10px;
  color: var(--bc-heading);
  font-family: var(--bc-font-heading), sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.025em;
}

body.in-index .bicroma-care-guide__card p {
  margin: 0 0 24px;
  color: var(--bc-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

body.in-index .bicroma-care-guide__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--bc-accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

body.in-index .bicroma-care-guide__card:hover,
body.in-index .bicroma-care-guide__card:focus-visible {
  background: var(--bc-surface-soft-strong);
  color: var(--bc-text);
  text-decoration: none;
}

body.in-index .bicroma-care-guide__shortcuts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 20px;
}

body.in-index .bicroma-care-guide__shortcuts-label {
  margin: 0;
  color: var(--bc-muted-soft);
  font-size: 14px;
  line-height: 20px;
}

body.in-index .bicroma-care-guide__shortcut {
  color: var(--bc-accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

body.in-index .bicroma-care-guide__shortcut:hover,
body.in-index .bicroma-care-guide__shortcut:focus-visible {
  color: var(--bc-accent-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 991px) {
  body.in-index .bicroma-care-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 640px) {
  body.in-index .bicroma-home__title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.035em;
  }

  body.in-index .bicroma-home__intro {
    font-size: 14px;
    line-height: 20px;
  }

  body.in-index .bicroma-care-guide {
    margin: 48px 0 36px;
    padding: 0 12px;
    scroll-margin-top: 112px;
  }

  body.in-index .bicroma-care-guide + .homepage-products-heading-2 {
    padding-top: 8px;
  }

  body.in-index .bicroma-care-guide__head {
    margin-bottom: 24px;
    text-align: left;
  }

  body.in-index .bicroma-care-guide__card {
    min-height: 180px;
    padding: 20px 16px;
    border: 0;
  }

  body.in-index .bicroma-care-guide__card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
  }

  body.in-index .bicroma-care-guide__card p,
  body.in-index .bicroma-care-guide__link,
  body.in-index .bicroma-care-guide__shortcuts-label,
  body.in-index .bicroma-care-guide__shortcut {
    font-size: 12px;
    line-height: 18px;
  }

  body.in-index .bicroma-care-guide__shortcuts {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
}

@media (max-width: 340px) {
  body.in-index .bicroma-care-guide__grid {
    grid-template-columns: 1fr;
  }

  body.in-index .bicroma-care-guide__card {
    min-height: 0;
    border: 0;
  }
}

/* Příběh výrobce */

body.in-index .bicroma-story {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  background: var(--bc-surface);
}

body.in-index .bicroma-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 64px;
  align-items: center;
  padding: 44px 50px;
}

body.in-index .bicroma-story__copy {
  max-width: 900px;
}

body.in-index .bicroma-story__copy .bicroma-home__text-link {
  margin-top: 24px;
}

body.in-index .bicroma-story__maker {
  padding-left: 0;
}

body.in-index .bicroma-story__maker-label {
  display: block;
  margin-bottom: 8px;
  color: var(--bc-muted-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.in-index .bicroma-story__maker-name {
  display: block;
  margin-bottom: 10px;
  color: var(--bc-heading);
  font-family: var(--bc-font-heading), sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.035em;
}

body.in-index .bicroma-story__maker-detail {
  display: block;
  color: var(--bc-muted);
  font-size: 14px;
  line-height: 20px;
}

body.in-index .bicroma-story__maker-detail + .bicroma-story__maker-detail {
  margin-top: 4px;
}

@media (max-width: 767px) {
  body.in-index .bicroma-story__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 28px;
  }

  body.in-index .bicroma-story__maker {
    padding: 26px 0 0;
  }

  body.in-index .bicroma-story__maker-name {
    font-size: 21px;
    line-height: 27px;
  }
}

/* Zkušenosti a společný obslužný pás */

body.in-index .bicroma-experience {
  margin: 64px 0 0;
  padding: 0 16px;
}

body.in-index .bicroma-experience__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

body.in-index .bicroma-experience__reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.in-index .bicroma-review {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  border: 0;
  background: var(--bc-surface-soft);
}

body.in-index .bicroma-reviews__status {
  grid-column: 1 / -1;
  min-height: 140px;
  margin: 0;
  padding: 48px 24px;
  background: var(--bc-surface-soft);
  color: var(--bc-muted);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

body.in-index .bicroma-review__stars {
  display: block;
  margin-bottom: 18px;
  color: var(--colors-surface-rating, #b87800);
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.12em;
}

body.in-index .bicroma-review p {
  margin: 0 0 24px;
  color: var(--bc-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

body.in-index .bicroma-review footer {
  margin-top: auto;
  color: var(--bc-text);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
}

body.in-index .bicroma-review time {
  display: block;
  margin-top: 2px;
  color: var(--bc-muted-soft);
  font-weight: 500;
}

body.in-index .bicroma-home-actions {
  width: 100vw;
  margin: 48px 0 0 calc(50% - 50vw);
  padding: 0;
  background: transparent;
}

body.in-index .bicroma-home-actions__inner {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  margin: 0 auto;
}

body.in-index .bicroma-experience[data-bicroma-reviews-state="unavailable"] .bicroma-home-actions {
  margin-top: 0;
}

body.in-index .bicroma-home-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 32px;
  align-items: center;
  padding: 36px 40px;
  background: var(--bc-surface-soft);
}

body.in-index .bicroma-home-action + .bicroma-home-action {
  border-left: 0;
  background: var(--bc-surface-soft-strong);
}

body.in-index .bicroma-home-action:first-child {
  padding-left: max(40px, calc((100vw - 1340px) / 2));
}

body.in-index .bicroma-home-action:last-child {
  padding-right: max(40px, calc((100vw - 1340px) / 2));
}

body.in-index .bicroma-home-action__copy h3 {
  margin: 0;
  color: var(--bc-heading);
  font-family: var(--bc-font-heading), sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.025em;
}

body.in-index .bicroma-home-action__copy p {
  margin: 7px 0 0;
  color: var(--bc-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

body.in-index .bicroma-home-action__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin-top: 10px;
}

body.in-index .bicroma-home-action__contacts a {
  color: var(--bc-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  text-decoration: none;
}

body.in-index .bicroma-home-action__contacts a:hover,
body.in-index .bicroma-home-action__contacts a:focus-visible {
  color: var(--bc-accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.in-index .bicroma-home-action .bicroma-home__button {
  min-width: 142px;
  white-space: nowrap;
}

@media (max-width: 991px) {
  body.in-index .bicroma-home-actions__inner,
  body.in-index .bicroma-home-action {
    grid-template-columns: 1fr;
  }

  body.in-index .bicroma-home-action .bicroma-home__button {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  body.in-index .bicroma-experience {
    margin-top: 48px;
    padding: 0 12px;
  }

  body.in-index .bicroma-experience__head {
    display: block;
    margin-bottom: 22px;
  }

  body.in-index .bicroma-experience__head .bicroma-home__text-link {
    margin-top: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  body.in-index .bicroma-experience__reviews {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.in-index .bicroma-review {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 24px 20px;
    border: 0;
  }

  body.in-index .bicroma-review p {
    font-size: 13px;
    line-height: 20px;
  }

  body.in-index .bicroma-home-actions {
    margin-top: 40px;
    padding-inline: 0;
  }

  body.in-index .bicroma-home-action {
    gap: 20px;
    padding: 26px 20px;
  }

  body.in-index .bicroma-home-action:first-child,
  body.in-index .bicroma-home-action:last-child {
    padding-right: 20px;
    padding-left: 20px;
  }

  body.in-index .bicroma-home-action + .bicroma-home-action {
    border: 0;
  }

  body.in-index .bicroma-home-action .bicroma-home__button {
    width: 100%;
  }
}

/* Kompaktní partnerský důkaz Dr.Max — HTML zůstává v obsahu homepage */

body.in-index .welcome-wrapper:has(.bicroma-proof--compact) {
  width: 100%;
  max-width: none;
  margin: 40px 0 0;
  padding: 0;
}

body.in-index .welcome-wrapper:has(.bicroma-proof--compact) .welcome,
body.in-index .welcome-wrapper:has(.bicroma-proof--compact) .welcome > div {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.in-index .bicroma-proof--compact {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  background: var(--bc-surface-soft);
}

body.in-index .bicroma-proof--compact .bicroma-proof__inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 36px;
  row-gap: 4px;
  width: min(820px, calc(100% - 48px));
  min-height: 112px;
  margin: 0 auto;
  padding: 22px 0;
  color: var(--bc-text);
  font-family: var(--bc-font-body), sans-serif;
}

body.in-index .bicroma-proof--compact .bicroma-proof__lead {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  color: var(--bc-muted-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.in-index .bicroma-proof--compact .bicroma-proof__brand,
body.in-index .bicroma-proof--compact .bicroma-proof__brand img {
  display: block;
  width: 132px;
  height: auto;
  margin: 0;
}

body.in-index .bicroma-proof--compact .bicroma-proof__brand {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

body.in-index .bicroma-proof--compact .bicroma-proof__divider {
  display: none;
}

body.in-index .bicroma-proof--compact .bicroma-proof__note {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: var(--bc-heading);
  font-family: var(--bc-font-heading), sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  body.in-index .welcome-wrapper:has(.bicroma-proof--compact) {
    margin-top: 36px;
  }

  body.in-index .bicroma-proof--compact .bicroma-proof__inner {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 16px;
    width: calc(100% - 40px);
    min-height: 0;
    padding: 22px 0;
  }

  body.in-index .bicroma-proof--compact .bicroma-proof__lead {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 11px;
    line-height: 16px;
  }

  body.in-index .bicroma-proof--compact .bicroma-proof__brand,
  body.in-index .bicroma-proof--compact .bicroma-proof__brand img {
    width: 88px;
  }

  body.in-index .bicroma-proof--compact .bicroma-proof__brand {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  body.in-index .bicroma-proof--compact .bicroma-proof__divider {
    display: none;
  }

  body.in-index .bicroma-proof--compact .bicroma-proof__note {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    line-height: 21px;
  }
}

.bicroma-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  body.in-index .bicroma-home__text-link::after,
  body.in-index .bicroma-care-guide__card {
    transition: none;
  }
}
