/*
Theme Name: Sihoo
Theme URI: https://sihoo.ru/
Author: NetLab
Description: Тема магазина эргономичных кресел Sihoo.
Version: 1.2.1
Text Domain: sihoo
*/
:root {
  --ink: #171914;
  --red: #ea3420;
  --surface: #f7f7f7;
  --gray: #919191;
  --line: #f0f0f0;
  --gutter: 40px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: 100%;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}
.text-2xl {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.text-1xl {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.text-xl {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}
.text-m {
  font-size: 14px;
  line-height: 1.2;
}
.text-m-bold {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}
.paragraph-1 {
  font-size: 16px;
  line-height: 1.5;
}
.paragraph-2 {
  font-size: 14px;
  line-height: 1.4;
}
.button-s {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 64px;
  border-bottom: 1px solid var(--surface);
  background: #fff;
}
.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
  background: #fff;
}
.site-header__left,
.site-header__right,
.site-header__links {
  display: flex;
  align-items: center;
}
.site-header__left {
  gap: 40px;
}
.site-logo,
.site-logo img {
  display: block;
  width: auto;
  height: 29px;
}
.catalog-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.16s;
}
.catalog-trigger:hover,
.site-header__links a:hover {
  color: var(--red);
}
.site-header__links {
  gap: 20px;
}
.site-header__links a {
  text-decoration: none;
  white-space: nowrap;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  margin-left: 109px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f4f4f4;
  text-decoration: none;
  transition: background 0.16s;
}
.cart-link:hover {
  background: #ebebeb;
}
.icon {
  display: block;
  width: 17px;
  height: 17px;
}
.catalog-panel {
  position: absolute;
  z-index: 1;
  top: 64px;
  left: 0;
  width: 100%;
  padding: 20px var(--gutter) 40px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: 0.3s;
}
.catalog-is-open .catalog-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.catalog-card {
  text-decoration: none;
}
.catalog-card__photo,
.product-card__photo,
.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e7e7e7;
  color: var(--gray);
}
.catalog-card__photo {
  aspect-ratio: 246/300;
}
.catalog-card__name {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2;
}
.catalog-card:hover .catalog-card__name {
  color: var(--red);
}
.catalog-overlay {
  position: fixed;
  z-index: 40;
  inset: 64px 0 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
.catalog-is-open .catalog-overlay {
  opacity: 0.4;
  visibility: visible;
  pointer-events: auto;
}
.site-main {
  min-height: 40vh;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: #bcbcbc;
  list-style: none;
  font-size: 14px;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--ink);
}
.page-title {
  margin: 80px 0 0;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 8px;
  margin-top: 120px;
}
.product-card {
  text-decoration: none;
}
.product-card__photo {
  width: 100%;
  aspect-ratio: 374/435;
  border-radius: 8px;
}
.product-card__name {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2;
}
.product-card__price {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.product-card:hover .product-card__name {
  color: var(--red);
}
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 750px;
  margin-top: 20px;
  padding-right: 40px;
  border-radius: 8px;
  background: #e7e7e7 center/cover;
}
.product-info {
  width: 460px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
}
.product-info h1 {
  margin: 8px 0 0;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}
.swatches {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}
.swatch {
  width: 70px;
  height: 100px;
  border-radius: 4px;
  background: #eee;
}
.divider {
  height: 1px;
  margin: 20px 0;
  background: #f2f2f2;
}
.purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.price {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 40px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.buy-button:hover {
  background: #cf2514;
  transform: translateY(-2px);
}
.product-description {
  margin-top: 20px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 40px;
}
.feature__photo {
  width: 100%;
  aspect-ratio: 500/540;
  border-radius: 8px;
  background: center/cover;
}
.feature h2 {
  margin: 30px 0 0;
}
.feature p {
  max-width: 440px;
  margin: 15px 0 0;
}
.section-space {
  margin-top: 180px;
}
.story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}
.story__copy {
  position: sticky;
  top: 84px;
  grid-column: 1;
  padding-right: 32px;
}
.story__chapter + .story__chapter {
  margin-top: 48px;
}
.story__chapter p {
  margin-top: 15px;
}
.story__media {
  grid-column: 2/4;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #e7e7e7 center/cover;
}
.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.specs__photo {
  min-height: 650px;
  border-radius: 8px;
  background: #e7e7e7 center/cover;
}
.spec-list {
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
}
.spec-row dt {
  color: var(--gray);
}
.spec-row dd {
  margin: 0;
}
.purchase-panel {
  display: grid;
  place-items: center;
  min-height: 580px;
  padding: 40px;
  border-radius: 8px;
  background: #f6f6f6;
}
.purchase-panel .product-info {
  width: 850px;
}
.purchase-panel .buy-button {
  min-width: 400px;
}
.other-products h2 {
  margin: 0;
}
.other-products .product-grid {
  margin-top: 30px;
}
.cart-page {
  padding-bottom: 180px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 100px;
}
.checkout-box {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
}
.woocommerce table.shop_table {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.woocommerce-cart-form__cart-item td {
  padding: 24px 8px !important;
  border-color: var(--line) !important;
}
.woocommerce a.remove {
  color: var(--gray) !important;
}
.woocommerce a.remove:hover {
  background: transparent !important;
  color: var(--red) !important;
}
.woocommerce button.button,
.woocommerce a.button {
  border-radius: 4px;
  background: var(--red);
  color: #fff;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background: #cf2514;
  color: #fff;
}
.woocommerce-cart .cart-collaterals {
  width: 100%;
}
.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
}
.woocommerce-checkout-review-order-table {
  border: 0 !important;
}
.woocommerce input.input-text,
.woocommerce textarea {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 12px;
}
.woocommerce form .form-row {
  margin-bottom: 16px;
}
.site-footer {
  height: 600px;
  margin-top: 180px;
  padding: 80px var(--gutter);
  background: #272727;
  color: #fff;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  height: 100%;
}
.site-footer__column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-logo {
  width: auto;
  height: 95px;
}
.footer-details {
  margin: 0;
  color: #ffffff66;
  font-size: 14px;
  line-height: 1.2;
  font-style: normal;
}
.footer-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.footer-catalog div {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-catalog a {
  font-size: 20px;
  line-height: 1.2;
  text-decoration: none;
}
.footer-catalog a:hover {
  color: var(--red);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  color: #ffffff66;
  list-style: none;
}
.footer-links a {
  text-decoration: none;
}
@media (max-width: 999px) {
  .site-header__links {
    display: none;
  }
  .cart-link {
    margin-left: 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 64px;
  }
  .site-header {
    position: fixed;
    right: 0;
    left: 0;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 6px;
    padding: 0 12px;
  }
  .site-header__left {
    display: contents;
  }
  .site-logo {
    grid-column: 1;
    grid-row: 1;
  }
  .site-logo,
  .site-logo img {
    height: 24px;
  }
  .site-header__right {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .cart-link {
    height: 40px;
    padding: 0 14px;
  }
  .catalog-trigger {
    grid-column: 3;
    grid-row: 1;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
  }
  .catalog-trigger img {
    display: none;
  }
  .catalog-trigger:before {
    content: "☰";
    font-size: 18px;
  }
  .catalog-panel {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: auto;
    height: calc(100dvh - 64px);
    padding: 10px 12px 28px;
    overflow-y: auto;
    transform: translateX(100%);
  }
  .catalog-is-open .catalog-panel {
    transform: none;
  }
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 6px;
  }
  .catalog-card__name {
    margin-top: 12px;
  }
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }
  .breadcrumbs {
    margin-top: 12px;
  }
  .page-title {
    margin-top: 60px;
    font-size: 26px;
  }
  .product-grid {
    gap: 40px 6px;
    margin-top: 80px;
  }
  .hero {
    height: 720px;
    margin-top: 12px;
    padding: 12px;
    align-items: flex-end;
  }
  .product-info {
    width: 100%;
  }
  .product-meta,
  .purchase-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .buy-button {
    width: 100%;
  }
  .feature-grid,
  .checkout-grid,
  .specs {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-space {
    margin-top: 100px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story__copy {
    position: relative;
    top: auto;
    grid-column: auto;
    padding-right: 0;
  }
  .story__media {
    grid-column: auto;
  }
  .specs__photo {
    min-height: 0;
    aspect-ratio: 1;
  }
  .purchase-panel {
    min-height: 0;
    padding: 48px 12px;
  }
  .purchase-panel .product-info,
  .purchase-panel .buy-button {
    width: 100%;
    min-width: 0;
  }
  .checkout-grid {
    margin-top: 80px;
  }
  .site-footer {
    height: auto;
    min-height: 600px;
    margin-top: 100px;
    padding: 48px 20px;
  }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
  }
  .site-footer__column {
    display: contents;
  }
  .footer-logo {
    order: 1;
    height: 55px;
  }
  .footer-catalog {
    order: 2;
    margin-top: 48px;
  }
  .footer-details {
    order: 3;
    margin-top: 48px;
  }
  .footer-links {
    order: 4;
    margin-top: 48px;
    display: grid;
    gap: 12px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .product-info {
  position: relative;
  z-index: 1;
}
.sticky-buy {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 20px;
  left: 0;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(calc(100% + 40px));
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s,
    visibility 0s linear 0.35s;
}
.sticky-buy.is-visible {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.sticky-buy__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 var(--gutter);
}
.sticky-buy__button {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.sticky-buy__button:hover {
  background: #cf2514;
  transform: translateY(-2px);
}
.sticky-buy__plus {
  position: relative;
  width: 18px;
  height: 18px;
}
.sticky-buy__plus:before,
.sticky-buy__plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.sticky-buy__plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 767px) {
  .sticky-buy {
    bottom: 12px;
  }
  .sticky-buy__inner {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }
  .sticky-buy__button {
    grid-column: 1;
  }
}
.swatch {
  background-position: center;
  background-size: cover;
}
.catalog-trigger {
  text-decoration: none;
}
.catalog-card__photo img,
.product-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purchase-panel {
  place-items: center;
}
.purchase-panel .product-info h2 {
  margin: 8px 0 0;
}
.purchase-panel .breadcrumbs {
  margin-top: 0;
}
.swatch {
  display: block;
  text-decoration: none;
}
.swatch.is-active {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.hero .product-info .breadcrumbs {
  margin-top: 0;
}
.product-scroll-bar {
  position: fixed;
  z-index: 49;
  top: 64px;
  right: 0;
  left: 0;
  height: 50px;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.18s,
    visibility 0s linear 0.28s;
}
.product-scroll-bar.is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.product-scroll-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767px) {
  .product-scroll-bar {
    top: 64px;
  }
  .hero .product-info .breadcrumbs {
    margin-top: 0;
  }
}
.catalog-card__colors {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
}
.catalog-card__color {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}
.catalog-card__color--black {
  background: #171914;
}
.catalog-card__color--white {
  background: #fff;
}
.catalog-card__photo .sihoo-product-gallery-image,
.product-card__photo .sihoo-product-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.catalog-card__photo .sihoo-product-gallery-image.is-active,
.product-card__photo .sihoo-product-gallery-image.is-active {
  opacity: 1;
}
.sihoo-gallery-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 6px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.16s;
}
.catalog-card:hover .sihoo-gallery-indicators,
.product-card:hover .sihoo-gallery-indicators {
  visibility: visible;
  opacity: 1;
}
.sihoo-gallery-indicators i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #919191;
}
.sihoo-gallery-indicators i.is-active {
  background: #171914;
}
.catalog-trigger .icon {
  transition: filter 0.16s;
}
.catalog-trigger:hover .icon,
.catalog-is-open .catalog-trigger .icon {
  filter: invert(29%) sepia(91%) saturate(4170%) hue-rotate(353deg)
    brightness(98%) contrast(87%);
}
.catalog-is-open .catalog-trigger {
  color: var(--red);
}
@media (max-width: 767px) {
  .catalog-is-open .catalog-trigger {
    color: #fff;
  }
}
.footer-logo {
  display: block;
  align-self: flex-start;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.specs__photo {
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background: none;
}
.specs__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.checkout-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 100px;
}
.checkout-layout[hidden],
.checkout-layout.is-complete {
  display: none !important;
}
.order-form-sections {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 8px;
}
.order-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface);
}
.order-card h2,
.cart-section__title {
  margin: 0 0 30px;
}
.order-field {
  display: block;
  margin-top: 16px;
}
.order-field:first-of-type {
  margin-top: 0;
}
.order-field > span {
  display: block;
  margin-bottom: 8px;
}
.order-field input,
.order-field textarea {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border 0.16s;
}
.order-field input {
  height: 48px;
  padding: 0 14px;
}
.order-field textarea {
  height: 88px;
  padding: 13px 14px;
  resize: vertical;
}
.order-field input:focus,
.order-field textarea:focus {
  border-color: var(--ink);
}
.delivery,
.payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.delivery label,
.payment label {
  position: relative;
}
.delivery input,
.payment input {
  position: absolute;
  opacity: 0;
}
.delivery span,
.payment span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  cursor: pointer;
}
.delivery input:checked + span,
.payment input:checked + span {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.order-summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}
.order-summary__row:first-child {
  margin-top: 0;
}
.order-summary__total {
  align-items: end;
  margin-top: 20px;
}
.order-summary__total strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.order-submit {
  width: 100%;
  height: 56px;
  margin-top: 24px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition: background 0.16s;
}
.order-submit:hover {
  background: #cf2514;
}
.order-submit:disabled {
  cursor: not-allowed;
  background: #d2d2d2;
}
.order-agreement {
  margin: 12px 0 0;
  color: var(--gray);
}
.order-status {
  min-height: 17px;
  margin: 12px 0 0;
  color: var(--red);
}
.cart-list {
  border-top: 1px solid var(--line);
}
.cart-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item__photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 180px;
  aspect-ratio: 374/435;
  border-radius: 8px;
  background: #e7e7e7;
  color: var(--gray);
  text-decoration: none;
}
.cart-item__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.cart-item__title {
  text-decoration: none;
  transition: color 0.16s;
}
.cart-item__title:hover {
  color: var(--red);
}
.cart-item__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  color: var(--gray);
}
.cart-item__bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.cart-quantity {
  display: flex;
  align-items: center;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.cart-quantity button {
  width: 40px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}
.cart-quantity output {
  min-width: 28px;
  text-align: center;
}
.cart-remove {
  align-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.16s;
}
.cart-remove:hover {
  color: var(--red);
}
.cart-item__price {
  white-space: nowrap;
}
.cart-empty {
  display: none;
  padding: 80px 20px;
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}
.cart-empty.is-visible {
  display: block;
}
.cart-empty p {
  margin: 12px 0 0;
  color: var(--gray);
}
.cart-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.order-success {
  display: none;
  margin-top: 100px;
  padding: 48px 24px;
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}
.order-success.is-visible {
  display: block;
}
.order-success p {
  margin: 14px 0 0;
  color: var(--gray);
}
.order-success a {
  display: inline-block;
  margin-top: 24px;
  color: var(--red);
}
.page-template-page-cart .site-footer {
  margin-top: 0;
}
.cart-link.is-updated {
  animation: sihoo-cart-pop 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes sihoo-cart-pop {
  50% {
    transform: scale(1.12);
  }
}
@media (max-width: 767px) {
  .checkout-layout {
    display: block;
    margin-top: 80px;
  }
  .cart-section {
    margin-top: 80px;
  }
  .cart-item {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
  }
  .cart-item__photo {
    grid-row: 1/3;
    width: 100px;
  }
  .cart-item__bottom {
    gap: 12px;
    margin-top: 24px;
  }
  .cart-remove {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
  .order-form-sections {
    position: relative;
    top: auto;
  }
  .order-card {
    padding: 20px 12px;
  }
  .delivery,
  .payment {
    grid-template-columns: 1fr;
  }
  .cart-page {
    padding-bottom: 100px;
  }
}
.cart-checkout {
  margin-top: 30px;
}
.cart-item {
  grid-template-columns: 140px minmax(0, 1fr) auto;
}
.cart-item__photo {
  width: 140px;
}
.cart-item__bottom {
  width: 100%;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.cart-item__price {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 767px) {
  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }
  .cart-item__photo {
    width: 84px;
  }
  .cart-item__bottom {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-top: 20px;
  }
  .cart-item__price {
    font-size: 14px;
  }
}
.cart-item {
  position: relative;
  grid-template-columns: 140px minmax(0, 1fr);
}
.cart-remove {
  position: absolute;
  top: 24px;
  right: 0;
}
.cart-item__body {
  padding-right: 0;
}
.cart-item__price {
  margin-left: auto;
}
@media (max-width: 767px) {
  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .cart-remove {
    top: 24px;
    right: 0;
  }
  .cart-item__title {
    padding-right: 70px;
  }
}
.cart-link.has-items,
.home .cart-link.has-items,
.home.catalog-is-open .cart-link.has-items {
  background: var(--red);
  color: #fff;
}
.cart-link.has-items:hover,
.home .cart-link.has-items:hover,
.home.catalog-is-open .cart-link.has-items:hover {
  background: #cf2514;
}
.cart-link.has-items .icon,
.home .cart-link.has-items .icon,
.home.catalog-is-open .cart-link.has-items .icon {
  filter: brightness(0) invert(1);
}
.sihoo-product-home-settings {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #dcdcde;
}
.sihoo-product-home-settings label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sihoo-home-empty {
  min-height: 60vh;
  padding-top: 160px;
}
.sihoo-large-hero {
  padding-top: 0;
}
.sihoo-large-hero .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: transparent;
}
.sihoo-large-hero .site-header__inner {
  background: transparent;
}
.sihoo-large-hero .catalog-trigger,
.sihoo-large-hero .site-header__links,
.sihoo-large-hero .cart-link {
  color: #fff;
}
.sihoo-large-hero .cart-link {
  background: transparent;
}
.sihoo-large-hero .cart-link:hover {
  background: rgba(255, 255, 255, 0.14);
}
.sihoo-large-hero .site-logo img,
.sihoo-large-hero .catalog-trigger .icon,
.sihoo-large-hero .cart-link .icon {
  filter: brightness(0) invert(1);
}
.sihoo-large-hero .hero {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  margin: 0 calc(50% - 50vw);
  padding-right: 40px;
  border-radius: 0;
  background-size: cover;
}
.sihoo-large-hero .hero .product-info {
  padding: 0;
  background: transparent;
  color: #fff;
}
.sihoo-large-hero .hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.64);
}
.sihoo-large-hero .hero .breadcrumbs a:hover {
  color: #fff;
}
.sihoo-large-hero .hero .divider {
  background: rgba(255, 255, 255, 0.12);
}
.sihoo-large-hero .hero .swatch.is-active {
  outline-color: #fff;
}
.sihoo-large-hero.catalog-is-open .site-header {
  border-bottom-color: var(--surface);
  background: #fff;
}
.sihoo-large-hero.catalog-is-open .site-header__inner {
  background: #fff;
}
.sihoo-large-hero.catalog-is-open .site-header__links,
.sihoo-large-hero.catalog-is-open .cart-link {
  color: var(--ink);
}
.sihoo-large-hero.catalog-is-open .cart-link {
  background: #f4f4f4;
}
.sihoo-large-hero.catalog-is-open .site-logo img,
.sihoo-large-hero.catalog-is-open .catalog-trigger .icon,
.sihoo-large-hero.catalog-is-open .cart-link .icon {
  filter: none;
}
@media (max-width: 767px) {
  .sihoo-product-home-settings {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .sihoo-large-hero .hero {
    height: 100dvh;
    margin: 0 calc(50% - 50vw);
    padding: 76px 12px 12px;
  }
  .sihoo-large-hero .catalog-trigger {
    background: transparent;
    color: #fff;
  }
  .sihoo-large-hero .cart-link {
    background: transparent;
    color: #fff;
  }
  .sihoo-large-hero.catalog-is-open .catalog-trigger {
    background: var(--ink);
    color: #fff;
  }
  .sihoo-large-hero.catalog-is-open .cart-link {
    background: #f4f4f4;
    color: var(--ink);
  }
}
.catalog-trigger__label--mobile {
  display: none;
}
.text-l {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}
@media (max-width: 767px) {
  .catalog-trigger__label--desktop {
    display: none;
  }
  .catalog-trigger__label--mobile {
    display: inline;
  }
}

.sihoo-large-hero .site-header,
.sihoo-large-hero .site-header__inner {
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease;
}
.sihoo-large-hero .hero {
  padding-right: var(--gutter);
}
@media (min-width: 768px) {
  .sihoo-large-hero .hero .product-info {
    width: 500px;
  }
}
.sihoo-large-hero.sihoo-hero-scrolled .site-header,
.sihoo-large-hero.catalog-is-open .site-header {
  border-bottom-color: var(--surface);
  background: #fff;
}
.sihoo-large-hero.sihoo-hero-scrolled .site-header__inner,
.sihoo-large-hero.catalog-is-open .site-header__inner {
  background: #fff;
}
.sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger,
.sihoo-large-hero.sihoo-hero-scrolled .site-header__links,
.sihoo-large-hero.sihoo-hero-scrolled .cart-link,
.sihoo-large-hero.catalog-is-open .catalog-trigger,
.sihoo-large-hero.catalog-is-open .site-header__links,
.sihoo-large-hero.catalog-is-open .cart-link {
  color: var(--ink);
}
.sihoo-large-hero.sihoo-hero-scrolled .cart-link,
.sihoo-large-hero.catalog-is-open .cart-link {
  background: #f4f4f4;
}
.sihoo-large-hero.sihoo-hero-scrolled .site-logo img,
.sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger .icon,
.sihoo-large-hero.sihoo-hero-scrolled .cart-link .icon,
.sihoo-large-hero.catalog-is-open .site-logo img,
.sihoo-large-hero.catalog-is-open .catalog-trigger .icon,
.sihoo-large-hero.catalog-is-open .cart-link .icon {
  filter: none;
}
.sihoo-large-hero.sihoo-hero-scrolled .cart-link.has-items,
.sihoo-large-hero.catalog-is-open .cart-link.has-items {
  background: var(--red);
  color: #fff;
}
.sihoo-large-hero.sihoo-hero-scrolled .cart-link.has-items .icon,
.sihoo-large-hero.catalog-is-open .cart-link.has-items .icon {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .sihoo-large-hero .hero {
    padding-right: 12px;
  }
  .sihoo-large-hero .hero .product-info {
    width: 100%;
  }
  .sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger {
    background: var(--ink);
    color: #fff;
  }
  .sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger:before {
    color: #fff;
  }
}
.sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger:hover,
.sihoo-large-hero.catalog-is-open .catalog-trigger {
  color: var(--red);
}
.sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger:hover .icon,
.sihoo-large-hero.catalog-is-open .catalog-trigger .icon {
  filter: invert(29%) sepia(91%) saturate(4170%) hue-rotate(353deg)
    brightness(98%) contrast(87%);
}
@media (max-width: 767px) {
  .sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger:hover,
  .sihoo-large-hero.catalog-is-open .catalog-trigger {
    color: #fff;
  }
  .sihoo-large-hero.catalog-is-open .catalog-trigger .icon {
    filter: none;
  }
}
html {
  overflow-x: hidden;
}
body {
  max-width: 100%;
  overflow-x: clip;
}
.sihoo-large-hero .hero {
  width: auto;
  margin-right: calc(0px - var(--gutter));
  margin-left: calc(0px - var(--gutter));
}
.swatch {
  position: relative;
  overflow: hidden;
}
.swatch:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: background-color 0.2s ease;
}
.swatch:hover:after {
  background: rgba(255, 255, 255, 0.2);
}
.swatch.is-active {
  outline: 0;
}
.swatch.is-active:after {
  display: none;
}
@media (max-width: 767px) {
  .sihoo-large-hero .hero {
    margin-right: -12px;
    margin-left: -12px;
  }
}
.sihoo-large-hero .hero .swatch:not(.is-active):after {
  background: rgba(0, 0, 0, 0.5);
}
.sihoo-large-hero .hero .swatch:not(.is-active):hover:after {
  background: rgba(0, 0, 0, 0.2);
}
.catalog-slider {
  position: relative;
}
.catalog-slider__viewport {
  overflow: hidden;
}
.catalog-slider .catalog-grid {
  display: flex;
  gap: 8px;
  will-change: transform;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
.catalog-slider .catalog-card {
  flex: 0 0 calc((100% - 40px) / 6);
  min-width: 0;
}
.catalog-slider__arrow {
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.18s ease,
    opacity 0.18s ease;
}
.catalog-slider__arrow[hidden] {
  display: none;
}
.catalog-slider__arrow img {
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  transition: filter 0.18s ease;
}
.catalog-slider__arrow:hover {
  background: var(--ink);
}
.catalog-slider__arrow:hover img {
  filter: brightness(0) invert(1);
}
.catalog-slider__arrow--prev {
  left: 0;
}
.catalog-slider__arrow--prev img {
  transform: rotate(180deg);
}
.catalog-slider__arrow--next {
  right: 0;
}
@media (max-width: 767px) {
  .catalog-slider__viewport {
    overflow: visible;
  }
  .catalog-slider .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 6px;
    transform: none !important;
  }
  .catalog-slider .catalog-card {
    min-width: 0;
  }
  .catalog-slider__arrow {
    display: none !important;
  }
}
@media (min-width: 768px) {
  body:not(.sihoo-large-hero) .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1520/750;
  }
}
.catalog-slider__arrow--prev {
  left: 16px;
}
.catalog-slider__arrow--next {
  right: 16px;
}
.other-products-slider {
  position: relative;
  margin-top: 30px;
}
.other-products-slider__viewport {
  overflow: hidden;
}
.other-products-slider .product-grid {
  display: flex;
  gap: 8px;
  margin-top: 0;
  will-change: transform;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
.other-products-slider .product-card {
  flex: 0 0 calc((100% - 24px) / 4);
  min-width: 0;
}
@media (max-width: 767px) {
  .other-products-slider__viewport {
    overflow: visible;
  }
  .other-products-slider .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 6px;
    transform: none !important;
  }
  .other-products-slider .product-card {
    min-width: 0;
  }
}
.header-quick-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-quick-link {
  display: inline-flex;
  align-items: center;
  height: 33px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f4f4f4;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.16s ease,
    color 0.16s ease;
}
.header-quick-link:hover {
  background: #e1e1e1;
}
.sihoo-large-hero:not(.sihoo-hero-scrolled):not(.catalog-is-open)
  .header-quick-link,
.home:not(.sihoo-hero-scrolled):not(.catalog-is-open) .header-quick-link {
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
}
.sihoo-large-hero:not(.sihoo-hero-scrolled):not(.catalog-is-open)
  .header-quick-link:hover,
.home:not(.sihoo-hero-scrolled):not(.catalog-is-open) .header-quick-link:hover {
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .header-quick-links {
    display: none;
  }
}
.messenger-popup {
  position: fixed;
  z-index: 80;
  right: 30px;
  bottom: 20px;
  width: 264px;
  max-width: calc(100vw - 40px);
  padding: 16px;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.messenger-popup[hidden] {
  display: none;
}
.messenger-popup.is-visible {
  opacity: 1;
  transform: none;
}
.messenger-popup__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.messenger-popup__head p {
  margin: 0;
}
.messenger-popup__close {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.16s ease;
}
.messenger-popup__close:hover {
  opacity: 1;
}
.messenger-popup__close:before,
.messenger-popup__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}
.messenger-popup__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.messenger-popup__actions {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}
.messenger-popup__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 33px;
  padding: 0 12px 0 10px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition:
    filter 0.16s ease,
    transform 0.16s ease;
}
.messenger-popup__button:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}
.messenger-popup__button img {
  display: block;
  width: 17px;
  height: 17px;
}
.messenger-popup__button--max {
  background: linear-gradient(120deg, #6657ff 0%, #347cf5 52%, #16c9c4 100%);
}
.messenger-popup__button--telegram {
  background: linear-gradient(135deg, #38b8ef 0%, #229ed9 100%);
}
@media (max-width: 767px) {
  .messenger-popup {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .messenger-popup {
    transition: none;
  }
}
.container,
.site-header__inner,
.sticky-buy__inner {
  width: 100%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}
.catalog-panel {
  padding-right: 40px;
  padding-left: 40px;
}
.catalog-panel .catalog-slider,
.site-footer__inner {
  width: 100%;
  max-width: 1520px;
  margin-right: auto;
  margin-left: auto;
}
.sihoo-large-hero .hero {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: max(40px, calc((100vw - 1520px) / 2));
}
@media (min-width: 768px) {
  .home-slide__content {
    right: max(40px, calc((100vw - 1520px) / 2));
  }
}
@media (max-width: 767px) {
  .container,
  .site-header__inner,
  .sticky-buy__inner {
    padding-right: 12px;
    padding-left: 12px;
  }
  .catalog-panel {
    padding-right: 12px;
    padding-left: 12px;
  }
  .sihoo-large-hero .hero {
    padding-right: 12px;
  }
}
@media (max-width: 767px) {
  .site-header,
  .home .site-header,
  .sihoo-large-hero .site-header {
    border-bottom-color: #f2f2f2;
    background: #fff;
  }
  .site-header__inner,
  .home .site-header__inner,
  .sihoo-large-hero .site-header__inner {
    background: #fff;
  }
  .home .site-logo img,
  .sihoo-large-hero .site-logo img,
  .home.catalog-is-open .site-logo img,
  .sihoo-large-hero.catalog-is-open .site-logo img {
    filter: none;
  }
  .home .catalog-trigger,
  .sihoo-large-hero .catalog-trigger,
  .home.catalog-is-open .catalog-trigger,
  .sihoo-large-hero.catalog-is-open .catalog-trigger,
  .sihoo-large-hero.sihoo-hero-scrolled .catalog-trigger {
    background: var(--ink);
    color: #fff;
  }
  .home .catalog-trigger:before,
  .sihoo-large-hero .catalog-trigger:before,
  .home.catalog-is-open .catalog-trigger:before,
  .sihoo-large-hero.catalog-is-open .catalog-trigger:before {
    color: #fff;
  }
  .home .cart-link,
  .sihoo-large-hero .cart-link,
  .home.catalog-is-open .cart-link,
  .sihoo-large-hero.catalog-is-open .cart-link,
  .sihoo-large-hero.sihoo-hero-scrolled .cart-link {
    background: #f4f4f4;
    color: var(--ink);
  }
  .home .cart-link:hover,
  .sihoo-large-hero .cart-link:hover {
    background: #e1e1e1;
  }
  .home .cart-link .icon,
  .sihoo-large-hero .cart-link .icon,
  .home.catalog-is-open .cart-link .icon,
  .sihoo-large-hero.catalog-is-open .cart-link .icon {
    filter: none;
  }
}
@media (max-width: 767px) {
  html.catalog-scroll-lock,
  html.catalog-scroll-lock body,
  body.catalog-is-open {
    overflow: hidden;
  }
  .catalog-panel {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .catalog-is-open .catalog-trigger,
  .home.catalog-is-open .catalog-trigger,
  .sihoo-large-hero.catalog-is-open .catalog-trigger {
    background: var(--ink) !important;
    color: #fff !important;
  }
  .catalog-is-open .catalog-trigger:before,
  .home.catalog-is-open .catalog-trigger:before,
  .sihoo-large-hero.catalog-is-open .catalog-trigger:before {
    color: #fff !important;
  }
  .catalog-is-open .catalog-trigger .icon,
  .home.catalog-is-open .catalog-trigger .icon,
  .sihoo-large-hero.catalog-is-open .catalog-trigger .icon {
    filter: brightness(0) invert(1) !important;
  }
}
.mobile-product-gallery {
  display: none;
}
@media (max-width: 767px) {
  body.sihoo-large-hero,
  body.home.sihoo-large-hero {
    padding-top: 64px;
  }
  .hero,
  .sihoo-large-hero .hero {
    display: block;
    width: 100vw;
    height: auto;
    min-height: 0;
    margin: 0 calc(50% - 50vw);
    padding: 0;
    border-radius: 0;
    background: none !important;
    overflow: visible;
  }
  .hero-video {
    display: none;
  }
  .mobile-product-gallery {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .mobile-product-gallery__track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-product-gallery__track::-webkit-scrollbar {
    display: none;
  }
  .mobile-product-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .mobile-product-gallery__slide img {
    display: block;
    width: 100%;
    height: auto;
  }
  .mobile-product-gallery__dots {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
  }
  .mobile-product-gallery__dots button {
    width: 4px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #919191;
    pointer-events: auto;
  }
  .mobile-product-gallery__dots button.is-active {
    background: #171914;
  }
  .hero > .product-info,
  .sihoo-large-hero .hero > .product-info {
    width: auto;
    margin: 20px 12px 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
  }
  .sihoo-large-hero .hero .breadcrumbs {
    color: #bcbcbc;
  }
  .sihoo-large-hero .hero .divider {
    background: #f2f2f2;
  }
  .sihoo-large-hero .hero .swatch:not(.is-active):after {
    background: rgba(255, 255, 255, 0.5);
  }
  .sihoo-large-hero .hero .swatch:not(.is-active):hover:after {
    background: rgba(255, 255, 255, 0.2);
  }
  .purchase-panel {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
  .purchase-panel .product-info {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}
@media (max-width: 767px) {
  .post-type-archive-sihoo_product .page-title {
    margin-top: 60px;
    text-align: left;
  }
  .post-type-archive-sihoo_product .product-grid {
    margin-top: 24px;
  }
  .product-card__photo {
    touch-action: pan-y;
  }
  .product-card__photo .sihoo-product-gallery-image {
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .product-card .sihoo-gallery-indicators {
    visibility: visible;
    opacity: 1;
  }
  .hero .product-meta,
  .purchase-panel .product-meta {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }
  .hero .product-meta span:last-child,
  .purchase-panel .product-meta span:last-child {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .product-card:hover .product-card__name,
  .product-card:active .product-card__name {
    color: var(--ink);
  }
  .purchase-panel {
    display: none;
  }
}
.cart-link.has-items,
.home .cart-link.has-items,
.sihoo-large-hero .cart-link.has-items,
.home.catalog-is-open .cart-link.has-items,
.sihoo-large-hero.catalog-is-open .cart-link.has-items {
  background: var(--red) !important;
  color: #fff !important;
}
.cart-link.has-items:hover,
.home .cart-link.has-items:hover,
.sihoo-large-hero .cart-link.has-items:hover {
  background: #cf2514 !important;
}
.cart-link.has-items .icon,
.home .cart-link.has-items .icon,
.sihoo-large-hero .cart-link.has-items .icon {
  filter: brightness(0) invert(1) !important;
}
.page-template-page-cart .checkout-layout {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .page-template-page-cart .checkout-layout {
    margin-top: 40px;
  }
}
.sticky-buy__button.is-added {
  background: var(--ink);
  transform: scale(0.98);
}
.sticky-buy__plus {
  transition: transform 0.3s;
}
.sticky-buy__button.is-added .sticky-buy__plus {
  transform: rotate(90deg);
}
.text-l-bold {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}
.delivery-page__title {
  margin: 80px 0 0;
  text-align: center;
}
.delivery-content {
  width: 100%;
  max-width: 650px;
  margin: 60px auto 0;
}
.delivery-content p,
.delivery-content h2,
.delivery-content h3 {
  margin-right: 0;
  margin-left: 0;
}
.delivery-content__lead {
  margin-top: 0;
  margin-bottom: 0;
}
.delivery-section {
  margin-top: 30px;
}
.delivery-section h2,
.delivery-section h3,
.return-rule h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.delivery-section > p {
  margin-top: 0;
  margin-bottom: 0;
}
.delivery-section h2 + p,
.delivery-section h3 + p {
  margin-top: 0;
}
.delivery-section--bordered {
  padding-bottom: 20px;
  border-bottom: 1px solid #f7f7f7;
}
.delivery-companies {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.delivery-companies figure {
  margin: 0;
}
.delivery-companies img {
  display: block;
  width: auto;
  height: 48px;
}
.delivery-companies__other {
  margin-top: 10px !important;
}
.delivery-note {
  display: flex;
  align-items: center;
  min-height: 59px;
  margin-top: 20px !important;
  padding: 0 20px;
  border-radius: 8px;
  background: #f7f7f7;
}
.delivery-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 22px;
}
.return-section,
.return-section-title {
  margin-top: 60px;
}
.return-section > h2,
.return-section-title {
  margin-bottom: 0;
}
.return-section__lead {
  margin-top: 30px !important;
  margin-bottom: 0;
}
.return-rule {
  margin-top: 30px;
  padding-bottom: 20px;
}
.return-summary {
  margin-top: 30px;
}
.return-summary p {
  margin: 8px 0 0;
}
.return-summary p:first-child {
  margin-top: 0;
}
.information-page__content > p:first-child {
  font-size: 20px;
  line-height: 1.2;
}
.information-page__content h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.information-page__content h3 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}
.information-page__content > h2 {
  margin-top: 60px;
}
.information-page__content > h3 {
  margin-top: 30px;
}
.information-page__content > p,
.information-page__content > ul {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .delivery-page__title {
    margin-top: 60px;
    text-align: left;
  }
  .delivery-content {
    margin-top: 40px;
  }
  .delivery-companies {
    flex-wrap: wrap;
  }
  .delivery-content__lead {
    font-size: 18px;
  }
  .return-section__lead {
    font-size: 18px;
  }
}
.sihoo-faq {
  margin-top: 60px;
}
.sihoo-faq__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.sihoo-faq__list {
  margin-top: 30px;
  border-top: 1px solid #f7f7f7;
}
.sihoo-faq__item {
  border-bottom: 1px solid #f7f7f7;
}
.sihoo-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 15px 44px 15px 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}
.sihoo-faq__question::-webkit-details-marker {
  display: none;
}
.sihoo-faq__question:before,
.sihoo-faq__question:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}
.sihoo-faq__question:after {
  transform: rotate(90deg);
}
.sihoo-faq__item[open] .sihoo-faq__question:after {
  transform: rotate(0);
}
.sihoo-faq__answer {
  padding: 0 44px 20px 0;
  font-size: 16px;
  line-height: 1.5;
}
.sihoo-faq__answer p {
  margin: 0;
}
.sihoo-faq__question:hover {
  color: var(--red);
}
@media (max-width: 767px) {
  .sihoo-faq {
    margin-top: 60px;
  }
  .sihoo-faq__question {
    min-height: 56px;
    padding-right: 36px;
  }
  .sihoo-faq__answer {
    padding-right: 36px;
  }
}
.delivery + .order-field {
  margin-top: 16px;
}
.order-agreement a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
