@font-face { font-family: "SF"; src: url("/brand/fonts/SF-Pro-Display-Light.woff") format("woff"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "SF"; src: url("/brand/fonts/SF-Pro-Display-Regular.woff") format("woff"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "SF"; src: url("/brand/fonts/SF-Pro-Display-Medium.woff") format("woff"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "SF"; src: url("/brand/fonts/SF-Pro-Display-Semibold.woff") format("woff"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "SF"; src: url("/brand/fonts/SF-Pro-Display-Bold.woff") format("woff"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --blue: #35b4d0;
  --blue-dark: #2a9bb5;
  --ink: #000;
  --muted: #5b5b5b;
  --line: #e2e2e2;
  --card: #f8f6fa;
  --dark: #212121;
  --sf: "SF", Arial, sans-serif;
  --header-h: 104px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sf);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }
.hidden { display: none !important; }
.anchor { display: block; position: relative; top: calc(-1 * var(--header-h)); height: 0; }

/* Tilda grid */
.tc { width: 100%; max-width: 1200px; margin: 0 auto; }

/* Tilda zero blocks: breakpoints 1200 / 960 / 640 / 320 */
.zb { position: relative; height: var(--h1); overflow: hidden; line-height: 1.55; }
.zb__in { position: relative; height: 100%; }
.ze {
  position: absolute;
  margin: 0;
  left: var(--x1);
  top: var(--y1);
  width: var(--w1);
  height: var(--hh1);
  font-size: var(--fs1);
  line-height: var(--lh1);
  opacity: var(--o1);
  text-align: var(--ta1);
  display: var(--d1);
}
.ze img { width: 100%; height: auto; }

@media (max-width: 1199px) {
  :root { --header-h: 95px; }
  .zb { height: var(--h2); }
  .ze { left: var(--x2); top: var(--y2); width: var(--w2); height: var(--hh2); font-size: var(--fs2); line-height: var(--lh2); opacity: var(--o2); text-align: var(--ta2); display: var(--d2); }
}
@media (max-width: 959px) {
  .zb { height: var(--h3); }
  .ze { left: var(--x3); top: var(--y3); width: var(--w3); height: var(--hh3); font-size: var(--fs3); line-height: var(--lh3); opacity: var(--o3); text-align: var(--ta3); display: var(--d3); }
}
@media (max-width: 639px) {
  :root { --header-h: 75px; }
  .zb { height: var(--h4); }
  .ze { left: var(--x4); top: var(--y4); width: var(--w4); height: var(--hh4); font-size: var(--fs4); line-height: var(--lh4); opacity: var(--o4); text-align: var(--ta4); display: var(--d4); }
}

/* Header */
.zb--header { position: fixed; top: 0; left: 0; width: 100%; z-index: 990; overflow: visible; }
.hdr-glass { background: rgba(255, 255, 255, .3); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.hdr-line { background: var(--line); }
.hdr-sep { background: var(--line); opacity: .5; }
.hdr-text { color: #000; font-weight: 400; white-space: nowrap; }
.hdr-link { text-decoration: none; color: #000; }
.hdr-burger { padding: 0; border: 0; background: none; cursor: pointer; }

/* Burger menu */
.menu-overlay { position: fixed; inset: 0; z-index: 99999; background: rgba(0, 0, 0, .6); opacity: 0; visibility: hidden; transition: opacity .3s ease-in-out, visibility .3s; }
.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  width: 100%;
  max-width: 260px;
  overflow-y: auto;
  background: #0f0f0f;
  transform: translateX(100%);
  transition: transform .3s ease-in-out;
}
body.menu-open { overflow: hidden; }
body.menu-open .menu { transform: none; }
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu__close { position: absolute; top: 5px; right: 5px; z-index: 1; width: 40px; height: 40px; padding: 0; border: 0; background: #0f0f0f; cursor: pointer; }
.menu__close span { position: absolute; top: 19px; left: 8px; width: 24px; height: 2px; background: #fff; transform: rotate(45deg); }
.menu__close span + span { transform: rotate(-45deg); }
.menu__container { display: flex; flex-direction: column; min-height: 100%; padding: 48px 40px 38px; }
.menu__list { margin: 0; padding: 0; list-style: none; }
.menu__list a { display: inline-block; margin-bottom: 15px; color: #fff; font: 400 18px/1.35 var(--sf); text-decoration: none; }
.menu__list li:last-child a { margin-bottom: 0; }
.menu__bottom { margin-top: auto; padding-top: 25px; }
.menu__btn { display: inline-flex; align-items: center; height: 45px; padding: 0 24px; border-radius: 10px; background: var(--blue); color: #fff; font: 400 14px/1.4 var(--sf); text-decoration: none; }

/* Contacts popup */
.popup { position: fixed; inset: 0; z-index: 10000001; display: none; overflow-y: auto; padding: 0 20px; background: rgba(0, 0, 0, .6); }
.popup.is-open { display: block; }
.popup__close { position: fixed; top: 10px; right: 10px; z-index: 9; width: 43px; height: 43px; padding: 10px; border: 0; background: none; cursor: pointer; }
.popup__close svg { display: block; }
.popup__container {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 45px;
  overflow: hidden;
  border-radius: 30px;
  background: #fbfbf9;
  transform: translateY(-50%);
  cursor: default;
}
.popup__descr { font: 300 16px/1.55 var(--sf); color: #000; }
.popup__descr p { margin: 0; }
.popup__descr a { color: inherit; }
.popup__title { font-size: 22px; font-weight: 500; }
.popup__btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; }
.popup__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 30px;
  border: 1px solid var(--blue);
  border-radius: 15px;
  background: var(--blue);
  color: #fff;
  font: 400 16px/1.4 var(--sf);
  text-decoration: none;
}
.popup__btn img { width: 20px; height: 20px; }
.popup__btn--outline { background: transparent; color: #000; }

/* Hero, steps, region titles, FAQ title */
.hero-title { color: #000; font-family: var(--sf); font-weight: 400; }
.step-card { border-radius: 10px; background: var(--card); }
.step-text { color: #000; font-family: var(--sf); font-weight: 300; line-height: 1.2; }
.step-text strong { font-weight: 600; }
.region-title { color: #000; font-family: Arial, sans-serif; font-size: 16px; font-weight: 400; }
.region-flag img { border-radius: 3px; }
.zb--faq { background: #f5f5f7; }
.faq-heading { color: #000; font-family: var(--sf); font-weight: 400; }

@media (max-width: 639px) {
  .zb--steps { height: auto; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .zb--steps .zb__in { width: 320px; height: 210px; zoom: var(--zoom, 1); }
}

/* Region tabs (Tilda t976) */
.tabs__wrap { display: flex; flex-wrap: wrap; justify-content: flex-start; margin: 0 220px 0 120px; padding-bottom: 15px; }
.tabs__item { position: relative; max-width: 100%; padding: 0 10px 10px 0; }
.tabs__item:last-child { padding-right: 0; }
.tabs__link {
  display: block;
  overflow: hidden;
  padding: 10px 29px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--card);
  color: #000;
  font: 400 18px/1.55 var(--sf);
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all .2s ease;
}
.tabs__link.is-active { background: #e9e9e9; }

/* Products: Tilda t1025 list at 980px+, t776 two-column grid below */
.plist-wrap { background: #fff; }
.plist { margin: 0 120px; }
.pc { display: flex; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid #ececec; }
.pc:first-child { border-top: 1px solid #ececec; }
.pc__img { position: relative; display: block; flex: 0 0 260px; margin-right: 20px; aspect-ratio: 100 / 66; overflow: hidden; }
.pc__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pc__body { display: flex; flex: 1; min-width: 0; }
.pc__text { flex: 1; min-width: 0; margin-right: 20px; }
.pc__title { display: block; color: #000; font: 400 20px/1.35 var(--sf); text-decoration: none; word-break: break-word; }
.pc__descr { margin-top: 8px; color: #000; font: 300 14px/1.55 var(--sf); opacity: .6; word-break: break-word; }
.pc__descr u { text-decoration: underline; }
.pc__buy { flex: 0 0 auto; }
.pc__price { margin-bottom: 15px; color: #000; font: 400 18px/1.35 var(--sf); white-space: nowrap; }
.pc__row { display: flex; align-items: flex-start; margin-bottom: 5px; }
.pc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 30px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font: 400 14px/1.4 var(--sf);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
}
.pc__btn--ghost { border: 1px solid #000; background: transparent; color: #000; }

.qty-step { display: inline-flex; flex: none; align-items: center; height: 45px; margin-right: 4px; border: 1px solid #777; border-radius: 10px; background: #fff; font-size: 14px; }
.qty-step__btn {
  width: 25px;
  min-width: 25px;
  height: 25px;
  margin: 0 5px;
  padding: 0;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(#777, #777) center / 50% 1px no-repeat, #fff;
  cursor: pointer;
}
.qty-step__btn--minus { margin: 0 0 0 5px; }
.qty-step__btn--plus { margin: 0 5px 0 0; background: linear-gradient(#777, #777) center / 50% 1px no-repeat, linear-gradient(#777, #777) center / 1px 50% no-repeat, #fff; }
.qty-step__input {
  width: 20px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font: 300 14px/1.55 var(--sf);
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-step__input:focus { outline: none; }
.qty-step__input::-webkit-inner-spin-button,
.qty-step__input::-webkit-outer-spin-button { margin: 0; -webkit-appearance: none; }

/* FAQ (Tilda t668) */
.faq { padding-bottom: 105px; background: #f5f5f7; }
.faq__list { margin: 0 120px; }
.faq__item { margin-bottom: 6px; background: #fff; }
.faq__item:last-child { margin-bottom: 0; }
.faq__head { position: relative; display: block; padding: 25px 30px; cursor: pointer; list-style: none; }
.faq__head::-webkit-details-marker { display: none; }
.faq__title { display: inline-block; padding-right: 30px; color: #000; font: 400 18px/1.35 var(--sf); }
.faq__icon { position: absolute; top: 50%; right: 18px; width: 40px; height: 40px; padding: 8px; border-radius: 100px; color: #000; transform: translateY(-50%); transition: background-color .2s ease-in-out, color .2s ease-in-out; }
.faq__icon svg { display: block; transition: transform .3s ease-in-out; }
.faq__item[open] .faq__icon svg { transform: rotate(-45deg); }
.faq__content { padding: 0 30px 20px; color: #000; font: 300 16px/1.55 var(--sf); }
.faq__content a { color: inherit; }
.faq__content p { margin: 0; }
@media (min-width: 961px) {
  .faq__head:hover .faq__icon { background: var(--blue); color: #fff; }
}

/* Footer */
.zb--dark { background: var(--dark); }
.pay-title { color: #fff; font-family: Arial, sans-serif; font-weight: 300; }
.pay-line { background: #ececec; }
.pay-cover { background: var(--dark); }
.ftr-text { color: #fff; font-family: var(--sf); font-weight: 400; }
.ftr-link { color: #fff; text-decoration: none; }
.ftr-copy { color: #5f5f5f; font-family: var(--sf); }
.ftr-copy a { color: inherit; text-decoration: none; }

/* Floating widgets */
.cart-float {
  position: fixed;
  top: 250px;
  right: 30px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  cursor: pointer;
}
.cart-float svg { width: 36px; height: 36px; }
.cart-count {
  position: absolute;
  right: -3px;
  bottom: -3px;
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: 30px;
  background: #d34747;
  color: #fff;
  font: 400 13px/1 var(--sf);
}
.chat-float {
  position: fixed;
  right: 40px;
  bottom: 0;
  z-index: 45;
  padding: 16px 28px;
  border-radius: 16px 16px 0 0;
  background: #5fb4cf;
  color: #fff;
  font: 400 18px/1.2 var(--sf);
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

/* Cart (Tilda t706) */
body.cart-open { overflow: hidden; }
.cart { position: fixed; inset: 0; z-index: 100001; display: none; overflow-y: auto; background: rgba(0, 0, 0, .8); }
.cart.is-open { display: block; }
.cart__close { position: fixed; top: 10px; right: 10px; z-index: 1; width: 43px; height: 43px; }
.cart__close-btn { display: block; width: 43px; height: 43px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.cart__close-btn svg { display: block; }
.cart__content { width: 100%; max-width: 560px; min-height: 300px; margin: 65px auto; padding: 40px; border-radius: 30px; background: #fff; color: #000; font-family: var(--sf); }
.cart__top { padding-bottom: 30px; border-bottom: 1px solid rgba(0, 0, 0, .2); }
.cart__heading { font-size: 22px; font-weight: 600; line-height: 1.35; }
.cart__empty { margin: 20px 0; font-size: 16px; font-weight: 300; }
.cart-item { display: table; width: 100%; }
.cart-item__thumb { display: table-cell; box-sizing: content-box; height: 100px; padding-right: 20px; vertical-align: middle; width: 108px; }
.cart-item__img { width: 108px; height: 70px; border-radius: 3px; background: #eee center / cover no-repeat; }
.cart-item__title { display: table-cell; padding: 15px 0; font-size: 16px; font-weight: 600; line-height: 1.55; vertical-align: middle; }
.cart-item__title a { color: inherit; text-decoration: none; }
.cart-item__plusminus { display: table-cell; box-sizing: content-box; width: 80px; padding: 13px 20px 16px 10px; font-size: 16px; font-weight: 300; white-space: nowrap; vertical-align: middle; }
.cart-item__qty { margin: 0 5px; padding: 2px 5px; font-size: 16px; line-height: 16px; }
.cart-item__icon { position: relative; top: 2px; display: inline-block; width: 16px; height: 16px; padding: 0; border: 0; background: none; opacity: .4; cursor: pointer; }
.cart-item__icon img { width: 16px; height: 16px; }
.cart-item__icon--del { top: 0; width: 20px; height: 20px; }
.cart-item__icon--del img { width: 20px; height: 20px; }
.cart-item:hover .cart-item__icon { opacity: 1; }
.cart-item__amount { display: table-cell; width: 80px; padding: 15px 0; font-size: 16px; font-weight: 300; white-space: nowrap; vertical-align: middle; }
.cart-item__del { display: table-cell; box-sizing: content-box; width: 20px; padding: 15px 0 15px 15px; vertical-align: middle; }
.cart__bottom { padding-top: 30px; border-top: 1px solid rgba(0, 0, 0, .2); }
.cart__prodamount { padding-bottom: 20px; font-size: 16px; font-weight: 600; line-height: 1.55; text-align: right; white-space: nowrap; }
.cart__form { margin: 20px 0; }
.cart__group { margin-bottom: 20px; }
.cart__group:empty { display: none; }
.cart__label { display: block; padding: 0 10px 5px 0; font-size: 16px; font-weight: 300; line-height: 1.55; }
.cart__hint { padding: 0 10px 15px 0; font-size: 12px; font-weight: 300; line-height: 1.55; opacity: .7; }
.cart__input { display: block; width: 100%; height: 56px; margin: 0; padding: 0 20px; border: 1px solid #ccc; border-radius: 5px; background: #fff; color: #000; font: 400 16px/1.33 var(--sf); outline: none; -webkit-appearance: none; appearance: none; }
select.cart__input { padding-right: 44px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") right 20px center no-repeat; }
.cart__check { position: relative; display: flex; align-items: flex-start; font-size: 14px; font-weight: 300; line-height: 1.2; cursor: pointer; }
.cart__check input { position: absolute; z-index: -1; opacity: 0; }
.cart__indicator { position: relative; flex: none; width: 20px; height: 20px; margin-right: 10px; border: 2px solid #000; opacity: .6; }
.cart__check input:checked + .cart__indicator { opacity: 1; }
.cart__check input:checked + .cart__indicator::after { content: ""; position: absolute; top: 1px; left: 5px; width: 4px; height: 9px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.cart__check input:focus-visible + .cart__indicator { outline: 2px solid var(--blue); outline-offset: 2px; }
.cart__check a { color: var(--blue); text-decoration: underline; }
.cart__total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-top: 25px; font-size: 16px; font-weight: 600; line-height: 1.35; }
.cart__error { margin: 20px 0 0; color: #f95d51; font-size: 14px; font-weight: 400; line-height: 1.35; }
.cart__submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; height: 60px; margin-top: 30px; padding: 0 45px; border: 0; border-radius: 10px; background: var(--blue); color: #fff; font: 400 16px/1.4 var(--sf); cursor: pointer; transition: opacity .2s ease-in-out; }
.cart__submit:disabled { opacity: .6; cursor: default; }
.cart__submit-icon { width: 24px; height: 24px; background: currentColor; -webkit-mask: url("/brand/circlecheck.svg") center / contain no-repeat; mask: url("/brand/circlecheck.svg") center / contain no-repeat; }
@media (max-width: 640px) {
  .cart__content { max-width: 460px; }
  .cart-item { position: relative; margin: 35px 0; }
  .cart-item__thumb { height: auto; vertical-align: top; }
  .cart-item__title { display: block; width: 100%; padding: 0 30px 10px 0; vertical-align: top; }
  .cart-item__plusminus, .cart-item__amount { display: inline-block; width: auto; padding: 0 20px 0 0; vertical-align: bottom; }
  .cart-item__del { position: absolute; top: 0; right: 0; padding: 0; }
}
@media (max-width: 560px) {
  .cart__content { max-width: 100%; min-height: calc(100vh - 50px); margin: 50px auto 0; border-radius: 0; }
  .cart__close { top: 0; left: 0; right: 0; width: 100%; height: 50px; display: flex; align-items: center; justify-content: flex-end; background: #000; }
  .cart__close-btn { width: 36px; height: 36px; margin-right: 10px; }
  .cart__close-btn svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
  .cart__content { padding: 20px; }
  .cart__form { margin-bottom: 40px; }
}

/* Inner pages */
.page { padding-top: var(--header-h); }
.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.product { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: 32px; align-items: start; padding: 24px 0 48px; }
.product-media { overflow: hidden; border-radius: 20px; background: #f4f7f9; }
.product-media img { max-height: 380px; margin: 0 auto; object-fit: contain; }
.product-copy h1 { margin: 0 0 12px; font-size: 30px; font-weight: 400; }
.product .price { margin-bottom: 15px; font-size: 18px; }
.product-buy { margin-bottom: 20px; }
.product-html { color: #222; }
.product-html a { color: var(--blue); }
.back { display: inline-block; margin: 16px 0 0; color: var(--muted); text-decoration: none; }
.legal { max-width: 760px; padding: 24px 0 64px; }
.legal h1 { margin-top: 0; font-weight: 400; }
.legal h2 { margin: 24px 0 8px; font-size: 18px; }

/* Tilda grid breakpoints */
@media (max-width: 1200px) {
  .tc { max-width: 960px; }
  .tabs__link { font-size: 16px; }
  .pc__descr { font-size: 12px; }
  .pc__btn { padding: 0 25px; }
  .faq__list { margin: 0 90px; }
  .popup__container { max-width: 620px; }
  .popup__descr { font-size: 14px; }
}
@media (max-width: 1199px) {
  .tabs__wrap { margin: 0 10px; padding-bottom: 0; }
  .plist { margin: 0 10px; }
}
@media (max-width: 979px) {
  .plist { display: flex; flex-wrap: wrap; margin: 0; }
  .pc { flex-direction: column; align-items: stretch; width: 50%; margin-bottom: 58px; padding: 0 20px; border: 0; }
  .pc:first-child { border-top: 0; }
  .pc__img { flex: none; width: 100%; margin: 0; aspect-ratio: 100 / 65.555; }
  .pc__body { flex: 1; flex-direction: column; }
  .pc__text { flex: none; margin: 0; padding-top: 20px; }
  .pc__title { font-size: 18px; font-weight: 700; }
  .pc__descr { opacity: 1; }
  .pc__buy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
  .pc__price { margin: 12px 0 20px; line-height: 26px; }
  .pc__btns { display: inline-block; max-width: 100%; margin-top: auto; }
  .pc__row { margin-bottom: 0; }
  .qty-step { margin: 0 4px 8px 0; }
  .qty-step__input { width: 30px; }
  .qty-step__btn--minus, .qty-step__btn--plus { margin: 0 5px; }
  .pc__btn { margin-bottom: 8px; }
  .pc__btn--ghost { display: flex; width: 100%; }
}
@media (max-width: 960px) {
  .tc { max-width: 640px; }
  .tabs__wrap { margin: 0; padding: 0 20px; }
  .faq__list { margin: 0 20px; }
  .popup__container { padding: 30px; }
}
@media (max-width: 670px) {
  .pc__btns { align-self: stretch; }
  .pc__row { flex-direction: column; align-items: stretch; }
  .qty-step { justify-content: space-between; margin-right: 0; }
  .qty-step__input { flex: 1; }
  .pc__btn { width: 100%; }
  .pc__btn--ghost { margin-top: 10px; }
}
@media (max-width: 640px) {
  .tabs__link { padding: 8px 25px; font-size: 14px; line-height: 1.45; }
  .pc__title { font-size: 16px; }
  .faq__head { padding: 20px; }
  .faq__icon { right: 8px; }
  .faq__content { padding: 0 20px 20px; }
  .menu__container { padding: 42px 25px 25px; }
  .popup__container { padding: 20px; }
  .popup__descr { font-size: 12px; line-height: 1.45; }
  .product { grid-template-columns: 1fr; }
  .chat-float { right: 12px; padding: 12px 18px; font-size: 14px; }
  .cart-float { top: auto; right: 16px; bottom: 72px; width: 60px; height: 60px; }
}
@media (max-width: 480px) {
  .plist { padding: 0 10px; }
  .pc { margin-bottom: 60px; padding: 0 10px; }
  .pc__title { font-size: 14px; }
  .qty-step, .pc__btn { height: 50px; }
  .pc__btn { padding: 0 20px; }
  .faq { padding-bottom: 75px; }
  .zb--region { box-sizing: content-box; padding-top: 30px; }
}
