@font-face {
  font-family: "NTVanilla";
  src: url("/bc-shop-assets/fonts/NTVanilla.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("/bc-shop-assets/fonts/Metropolis-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("/bc-shop-assets/fonts/Metropolis-Medium.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("/bc-shop-assets/fonts/Metropolis-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bc-brown: #b0947e;
  --bc-brown-dark: #9a6f4d;
  --bc-brown-light: #c4a882;
  --bc-cream: #f7f4ef;
  --bc-cream-dark: #e8e2da;
  --bc-dark: #393029;
  --bc-muted: #6e5b4c;
  --bc-white: #fff;
  --bc-heading: "NTVanilla", Georgia, serif;
  --bc-body: "Metropolis", "Segoe UI", system-ui, sans-serif;
  --bc-ui: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-h: var(--bc-heading);
  --font-b: var(--bc-body);
}

body {
  background: var(--bc-cream);
  color: var(--bc-dark);
  font-family: var(--bc-body);
}

#brx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: var(--bc-white);
  box-shadow: none;
}

.bc-header {
  padding: clamp(8px, 1vw, 14px) 0 clamp(6px, .5vw, 10px);
  background: var(--bc-white);
}

.bc-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: clamp(500px, 55vw, 792px);
  margin: 0 auto;
  gap: clamp(6px, .8vw, 12px);
  padding: 0;
}

.bc-logo {
  margin-bottom: 0;
  text-align: center;
}

.bc-logo img {
  width: clamp(110px, 11vw, 160px);
  height: auto;
}

.bc-nav {
  width: 100%;
}

.bc-nav .bricks-nav-menu {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-nav .menu-item a {
  position: relative;
  display: block;
  padding: 0 0 8px;
  color: var(--bc-brown);
  font-family: var(--font-b);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: .8px;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}

.bc-nav .menu-item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bc-brown);
  content: "";
  transition: width .3s ease;
}

.bc-nav .menu-item a:hover {
  color: var(--bc-dark);
}

.bc-nav .menu-item a:hover::after {
  width: 100%;
}

.bricks-mobile-menu-toggle,
#brx-header .bricks-mobile-menu-wrapper,
#brx-header .bricks-mobile-menu-overlay {
  display: none;
}

.wrap {
  max-width: 980px;
  padding: 0 20px 112px;
}

.offer-intro {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 84px) 0 clamp(34px, 5vw, 58px);
  text-align: center;
}

.offer-kicker {
  margin-bottom: 10px;
  color: var(--bc-brown-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offer-intro h1 {
  margin-bottom: 15px;
  color: var(--bc-dark);
  font-family: var(--bc-heading);
  font-size: clamp(33px, 6vw, 54px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.offer-intro p:last-child {
  color: var(--bc-muted);
  font-size: 15px;
  line-height: 1.75;
}

.card {
  margin-bottom: 22px;
  border: 1px solid rgba(176, 148, 126, .5);
  border-radius: 16px;
  background: var(--bc-white);
  box-shadow: 0 12px 34px rgba(57, 48, 41, .055);
  font-family: var(--bc-ui);
}

.card-main {
  min-height: 226px;
  border-radius: 15px 15px 0 0;
}

.card-img {
  width: 300px;
  min-width: 300px;
  min-height: 226px;
  margin: 16px 0 16px 16px;
  border-radius: 10px;
  background: var(--bc-cream-dark);
}

.card-img-ph {
  color: var(--bc-brown-dark);
  font-family: var(--bc-ui);
  font-size: 21px;
  letter-spacing: 3px;
  line-height: 1.35;
  text-align: center;
}

.card-info {
  padding: 26px 30px 24px;
}

.card-title {
  margin-bottom: 11px;
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .4px;
}

.card-meta {
  color: var(--bc-muted);
  font-size: 12px;
}

.card-price {
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 30px;
  font-weight: 400;
}

.card-price-old,
.card-price-from,
.card-price-note {
  color: var(--bc-muted);
}

.card-btn {
  border-radius: 999px;
  background: var(--bc-brown);
  padding: 12px 24px;
  color: var(--bc-white);
  font-size: 12px;
  font-family: var(--bc-ui);
  font-weight: 600;
  letter-spacing: 1px;
}

.card-btn:hover {
  background: var(--bc-brown-dark);
}

.badge {
  top: -10px;
  right: 16px;
  border-radius: 999px;
  background: #c0392b;
  color: var(--bc-white);
  font-family: var(--bc-ui);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: .5px;
}

.card-desc-preview {
  border-top-color: rgba(176, 148, 126, .22);
  padding: 13px 30px;
  color: var(--bc-muted);
}

.card-desc-preview:hover {
  background: var(--bc-cream);
}

.card-desc-toggle,
.card-collapse {
  color: var(--bc-brown-dark);
  font-size: 11px;
  letter-spacing: .7px;
}

.card-variants {
  border-top-color: rgba(176, 148, 126, .22);
}

.variant {
  border-bottom-color: rgba(176, 148, 126, .16);
  padding: 15px 30px;
}

.v-name {
  color: var(--bc-dark);
  font-size: 14px;
}

.v-price {
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 20px;
  font-weight: 400;
}

.qty button {
  width: 38px;
  height: 38px;
  border-color: var(--bc-cream-dark);
  border-radius: 50%;
  background: var(--bc-cream);
  color: var(--bc-dark);
  font-family: var(--bc-ui);
}

.qty button:hover {
  background: var(--bc-cream-dark);
}

.qty .plus {
  border-color: var(--bc-brown);
  background: var(--bc-brown);
}

.qty .plus:hover {
  background: var(--bc-brown-dark);
}

.card-desc-full {
  border-top-color: rgba(176, 148, 126, .22);
  padding: 18px 30px;
  color: var(--bc-muted);
}

.card-desc-full strong {
  color: var(--bc-dark);
}

.bar {
  min-height: 62px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  background: var(--bc-dark);
  color: var(--bc-cream);
  box-shadow: 0 -6px 22px rgba(57, 48, 41, .2);
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.bar:hover,
.bar:focus-visible {
  background: var(--bc-brown-dark);
  box-shadow: 0 -9px 26px rgba(57, 48, 41, .28);
  outline: none;
  transform: translateY(-2px);
}

.bar-n {
  background: var(--bc-cream);
  color: var(--bc-dark);
  animation: bc-bar-badge-pulse 2.8s ease-in-out infinite;
}

@keyframes bc-bar-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(247, 244, 239, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(247, 244, 239, .16);
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bar {
    transition: none;
  }

  .bar-n {
    animation: none;
  }
}

body:has(.bar.on) {
  padding-bottom: calc(62px + env(safe-area-inset-bottom));
}

#brx-footer {
  margin-top: auto;
}

.bc-footer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.bc-footer-main {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 64px 0 58px;
  background: var(--bc-dark);
}

.bc-footer-cols,
.bc-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-content: center;
  width: min(1186px, calc(100% - 240px));
  margin: 0 auto;
  column-gap: 0;
  row-gap: 28px;
}

.bc-footer-col {
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  gap: 10px;
}

.bc-footer-col:nth-child(1) {
  justify-self: start;
  text-align: left;
}

.bc-footer-col:nth-child(2) {
  justify-self: center;
  text-align: left;
}

.bc-footer-col:nth-child(3) {
  justify-self: end;
  text-align: left;
}

.bc-footer-col h4 {
  margin: 0;
  color: var(--bc-cream);
  font-family: var(--font-h);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.6;
}

.bc-clinic-address,
.bc-clinic-contact {
  color: var(--bc-cream);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.bc-footer-col a {
  color: var(--bc-cream);
  text-decoration: none;
  transition: opacity .3s;
}

.bc-footer-col a:hover {
  opacity: .7;
}

.bc-footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

.bc-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3.5vw, 50px);
  height: clamp(36px, 3.5vw, 50px);
  border-radius: 11px;
  background: var(--bc-cream);
}

.bc-footer-social img {
  width: 100%;
  height: 100%;
}

.bc-footer-bottom {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: 0;
  border-top: 0;
  background: var(--bc-brown);
  padding: clamp(16px, 2vw, 30px) clamp(20px, 8vw, 120px);
}

.bc-footer-bottom .bricks-nav-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: clamp(8px, 1.2vw, 18px);
  list-style: none;
}

.bc-footer-bottom .menu-item a {
  color: var(--bc-cream);
  font-family: var(--font-b);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .3s;
}

.bc-footer-bottom .menu-item a:hover {
  opacity: .7;
}

@media (max-width: 700px) {
  .wrap {
    padding: 0 12px 98px;
  }

  .offer-intro {
    padding: 38px 8px 30px;
  }

  .offer-intro h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .offer-intro p:last-child {
    font-size: 14px;
  }

  .card {
    margin-bottom: 16px;
    border-radius: 13px;
  }

  .card-main {
    border-radius: 12px 12px 0 0;
  }

  .card-img {
    width: calc(100% - 32px);
    min-width: 0;
    min-height: 178px;
    margin: 16px 16px 0;
  }

  .card-info {
    padding: 18px 16px 16px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-right {
    gap: 12px;
  }

  .card-price {
    font-size: 27px;
  }

  .card-btn {
    padding: 11px 15px;
    font-size: 10px;
  }

  .card-desc-preview,
  .variant,
  .card-desc-full {
    padding-right: 16px;
    padding-left: 16px;
  }

  .variant {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .v-right {
    width: 100%;
    justify-content: space-between;
  }

}

@media (max-width: 360px) {
  .card-right {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-btn {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .bc-footer-cols,
  .bc-footer-grid {
    grid-template-columns: 1fr;
    width: min(520px, calc(100% - 48px));
    row-gap: 28px;
  }

  .bc-footer-col,
  .bc-footer-col:nth-child(1),
  .bc-footer-col:nth-child(2),
  .bc-footer-col:nth-child(3) {
    width: 100%;
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .bc-header {
    padding: 8px 16px;
  }

  .bc-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: calc(100% - 36px);
    gap: 0;
  }

  .bc-logo img {
    width: 120px;
  }

  .bc-logo {
    line-height: 0;
  }

  .bc-nav {
    width: auto;
  }

  .bc-nav > .bricks-nav-menu-wrapper {
    display: none;
  }

  .bricks-mobile-menu-toggle {
    display: block;
    width: 20px;
    height: 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .bricks-mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin-bottom: 4px;
    background: var(--bc-dark);
    transition: transform .25s, opacity .25s;
  }

  .mobile-menu-open .bar-top {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-open .bar-center {
    opacity: 0;
  }

  .mobile-menu-open .bar-bottom {
    transform: translateY(-6px) rotate(-45deg);
  }

  #brx-header .bricks-mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 1002;
    display: block;
    width: min(82vw, 340px);
    padding: 60px 30px 30px 40px;
    background: var(--bc-white);
    transform: translateX(-100%);
    transition: transform .3s ease;
  }

  #brx-header.mobile-menu-open .bricks-mobile-menu-wrapper {
    transform: translateX(0);
  }

  #brx-header .bricks-mobile-menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 16px;
    list-style: none;
  }

  #brx-header .bricks-mobile-menu .menu-item a {
    color: var(--bc-brown);
    font-family: var(--font-b);
    font-size: 15px;
    letter-spacing: .8px;
    text-decoration: none;
    text-transform: uppercase;
  }

  #brx-header .bricks-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    background: rgba(57, 48, 41, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  #brx-header.mobile-menu-open .bricks-mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .bc-footer-bottom {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  }

  .bc-footer-bottom .bricks-nav-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
    gap: 6px 12px;
    justify-items: center;
  }

  .bc-footer-bottom > .bricks-nav-menu-wrapper {
    box-sizing: border-box;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
  }

  .bc-footer-bottom .menu-item a {
    font-size: 12px;
    line-height: 1.22;
    white-space: normal;
    text-align: center;
  }
}

/* Checkout */
.checkout-page {
  min-height: 100vh;
  background: var(--bc-cream);
}

.checkout-wrap {
  width: min(100%, 680px);
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px) 20px 64px;
}

.checkout-wrap .back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--bc-brown-dark);
  font-family: var(--bc-ui);
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  letter-spacing: .65px;
  text-decoration: none;
  text-transform: uppercase;
}

.checkout-wrap .back:hover {
  color: var(--bc-dark);
  text-decoration: none;
}

.checkout-wrap .summary,
.checkout-wrap .form {
  margin-bottom: 18px;
  border: 1px solid rgba(176, 148, 126, .5);
  border-radius: 16px;
  background: var(--bc-white);
  box-shadow: 0 12px 34px rgba(57, 48, 41, .055);
}

.checkout-wrap .summary {
  padding: 24px;
}

.checkout-wrap .form {
  padding: 26px 24px 24px;
}

.checkout-wrap .summary h2,
.checkout-wrap .form h2 {
  margin-bottom: 18px;
  color: var(--bc-dark);
  font-family: var(--bc-heading);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.15;
  text-transform: uppercase;
}

.checkout-wrap .s-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(176, 148, 126, .2);
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 14px;
  gap: 14px;
}

.checkout-wrap .s-name {
  min-width: 0;
  color: var(--bc-dark);
  line-height: 1.45;
}

.checkout-wrap .s-name strong,
.checkout-wrap .s-name small {
  display: block;
}

.checkout-wrap .s-name strong {
  font-weight: 600;
}

.checkout-wrap .s-name small {
  margin-top: 3px;
  color: var(--bc-muted);
  font-size: 12px;
}

.checkout-wrap .s-qty {
  margin: 0;
  color: var(--bc-muted);
  white-space: nowrap;
}

.checkout-wrap .s-price {
  color: var(--bc-dark);
  font-weight: 600;
  white-space: nowrap;
}

.checkout-wrap .s-total {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 0;
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 20px;
  font-weight: 600;
}

.checkout-wrap .fg {
  margin-bottom: 17px;
}

.checkout-wrap .fg label {
  display: block;
  margin-bottom: 7px;
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 13px;
  font-weight: 600;
}

.checkout-wrap .fg input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bc-cream-dark);
  border-radius: 9px;
  background: var(--bc-white);
  padding: 11px 14px;
  color: var(--bc-dark);
  font-family: var(--bc-ui);
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}

.checkout-wrap .fg input:focus,
.checkout-wrap .fg.phone input:focus {
  border-color: var(--bc-brown-dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 148, 126, .18);
}

.checkout-wrap .fg.phone input {
  border: 1px solid var(--bc-brown);
  font-size: 16px;
}

.checkout-wrap .fg .hint,
.checkout-wrap .fg.phone .hint {
  margin-top: 7px;
  color: #9b574c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.checkout-wrap .terms {
  display: flex;
  align-items: flex-start;
  margin: 4px 0 20px;
  color: var(--bc-muted);
  font-family: var(--bc-ui);
  font-size: 13px;
  gap: 10px;
  line-height: 1.55;
}

.checkout-wrap .terms input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--bc-brown-dark);
  flex-shrink: 0;
}

.checkout-wrap .terms a,
.checkout-wrap .ft a {
  color: var(--bc-brown-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-wrap .submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--bc-dark);
  padding: 14px 20px;
  color: var(--bc-cream);
  cursor: pointer;
  font-family: var(--bc-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background .2s, color .2s;
}

.checkout-wrap .submit:hover {
  background: var(--bc-brown-dark);
  color: var(--bc-white);
}

.checkout-wrap .submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.checkout-wrap .err {
  margin-bottom: 18px;
  border: 1px solid rgba(155, 87, 76, .38);
  border-radius: 10px;
  background: #fff8f5;
  padding: 12px 14px;
  color: #874b42;
  font-family: var(--bc-ui);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-wrap .ft {
  margin-top: 18px;
  border-top: 1px solid rgba(176, 148, 126, .3);
  padding: 18px 8px 0;
  color: var(--bc-muted);
  font-family: var(--bc-ui);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 500px) {
  .checkout-wrap {
    padding: 24px 12px 46px;
  }

  .checkout-wrap .summary,
  .checkout-wrap .form {
    border-radius: 13px;
  }

  .checkout-wrap .summary {
    padding: 19px 16px;
  }

  .checkout-wrap .form {
    padding: 21px 16px 18px;
  }

  .checkout-wrap .summary h2,
  .checkout-wrap .form h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .checkout-wrap .s-item {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 0;
    gap: 6px 12px;
  }

  .checkout-wrap .s-name {
    grid-column: 1 / -1;
  }

  .checkout-wrap .s-qty {
    justify-self: start;
  }

  .checkout-wrap .s-price {
    justify-self: end;
  }
}

body.page-order-confirmation .order-confirmation__product {
  align-items: center;
  gap: 24px;
}

body.page-order-confirmation .order-confirmation__product-image {
  position: relative;
  flex: 0 0 124px;
  width: 124px;
  height: 124px;
  overflow: visible;
}

body.page-order-confirmation .order-confirmation__product-img {
  display: block;
  width: 124px;
  height: 124px;
  border-radius: 8px;
  background: var(--bc-cream-dark);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(57, 48, 41, .12);
}

body.page-order-confirmation .order-confirmation__product-quantity {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  margin: 0;
  border: 1px solid rgba(57, 48, 41, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--bc-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(57, 48, 41, .12);
}

body.page-order-confirmation .order-confirmation__product-content {
  align-items: center;
  min-width: 0;
  gap: 22px;
}

body.page-order-confirmation .order-confirmation__product-details {
  min-width: 0;
}

body.page-order-confirmation .order-confirmation__product-title {
  margin-bottom: 6px;
  line-height: 1.35;
}

body.page-order-confirmation .order-confirmation__product-price {
  margin-top: 4px;
}

body.page-order-confirmation .order-confirmation__product-prices {
  align-self: center;
  white-space: nowrap;
}

@media (max-width: 575px) {
  body.page-order-confirmation .order-confirmation__product {
    align-items: flex-start;
    gap: 14px;
  }

  body.page-order-confirmation .order-confirmation__product-image {
    flex-basis: 92px;
    width: 92px;
    height: 92px;
  }

  body.page-order-confirmation .order-confirmation__product-img {
    width: 92px;
    height: 92px;
    border-radius: 7px;
  }

  body.page-order-confirmation .order-confirmation__product-quantity {
    right: 5px;
    bottom: 5px;
    min-width: 28px;
    height: 22px;
    font-size: 11px;
  }

  body.page-order-confirmation .order-confirmation__product-content {
    align-items: flex-start;
    gap: 8px;
  }

  body.page-order-confirmation .order-confirmation__product-title {
    margin-bottom: 4px;
    line-height: 1.32;
  }
}
