html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 15px;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

[dir="rtl"] input[type="tel"] {
  text-align: right;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: max(14px, 90%);
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

img {
  max-width: 100%;
  display: inline-block;
}
svg {
  vertical-align: middle;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

html[lang="hu"] {
  --line-height: 1.4;
}

:root {
  --font-size: 18px;
  --line-height: 1.3;
  --image-width: calc(500px - var(--image-step));
  --image-width-lg: calc(450px - var(--image-step));
  --image-width-md: calc(400px - var(--image-step));
  --image-width-sm: calc(350px - var(--image-step));
  --image-width-xs: calc(300px - var(--image-step));
  --image-step: 0px;
  --product-width: 300px;
  --product-wide: calc(var(--product-width) - var(--image-step));
  --product-narrow: calc(var(--product-width) - 100px - var(--image-step));
  --h1: 32px;
  --h2: 28px;
  --h3: 24px;
  --h4: 20px;
  --h5: 18px;
  --h6: 16px;
}

@media screen and (max-width: 1023px) {
  :root {
    --image-step: 25px;

    --h1: 30px;
    --h2: 26px;
    --h3: 22px;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --image-step: 50px;
    --font-size: 16px;

    --h1: 28px;
    --h2: 24px;
    --h3: 20px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --image-step: 75px;

    --h1: 22px;
    --h2: 20px;
    --h3: 18px;
    --h4: 17px;
  }
}

h1,
.h1 {
  font-size: var(--h1);
}

h2,
.h2 {
  font-size: var(--h2);
}

h3,
.h3 {
  font-size: var(--h3);
}

h4,
.h4 {
  font-size: var(--h4);
}

h5,
.h5 {
  font-size: var(--h5);
}
h6,
.h6 {
  font-size: var(--h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: calc(var(--line-height) - 0.1);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: #222;
  margin: 0;
  overflow-x: hidden;
}
.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.container-lg {
  max-width: 700px;
}
.container-md {
  max-width: 450px;
}
.container-sm {
  max-width: 400px;
}
.container-xs {
  max-width: 320px;
}
.row {
  --offset-x: 10px;
  --offset-y: 10px;
  display: flex;
  margin-left: calc(var(--offset-x) * -1);
  margin-right: calc(var(--offset-x) * -1);
  margin-top: calc(var(--offset-y) * -1);
}
.flex-wrap {
  flex-wrap: wrap;
}
.row + .row {
  margin-top: 0;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}
@media screen and (max-width: 479px) {
  .d-xs-none {
    display: none;
  }
  .flex-xs-wrap {
    flex-wrap: wrap;
  }
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.row .col {
  padding-left: var(--offset-x);
  padding-right: var(--offset-x);
  margin-top: var(--offset-y);
  flex-grow: 1;
  width: 100%;
}
.row .col-auto {
  width: auto;
  flex-grow: 0;
}
.row .col-100 {
  width: 100%;
}
.row .col-75 {
  width: 75%;
}
.row .col-50 {
  width: 50%;
}
.row .col-33 {
  width: 33%;
}
.row .col-25 {
  width: 25%;
}
.flex-grow {
  flex-grow: 1;
}
.direction-row-reverse {
  flex-direction: row-reverse;
}
.direction-column {
  flex-direction: column;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: inline-end;
}
.text-left {
  text-align: inline-start;
}
.text-uppercase {
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: inline-end;
  }
  .text-lg-left {
    text-align: inline-start;
  }
  .direction-lg-column {
    flex-direction: column;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .justify-content-ld-center {
    justify-content: center;
  }
  .justify-content-ld-between {
    justify-content: space-between;
  }
  .justify-content-ld-around {
    justify-content: space-around;
  }
  .row .col-lg-auto {
    width: auto;
    flex-grow: 0;
  }
  .row .col-lg-100 {
    width: 100%;
  }
  .row .col-lg-75 {
    width: 75%;
  }
  .row .col-lg-50 {
    width: 50%;
  }
  .row .col-lg-33 {
    width: 33%;
  }
  .row .col-lg-25 {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: inline-end;
  }
  .text-md-left {
    text-align: inline-start;
  }
  .direction-md-column {
    flex-direction: column;
  }
  .align-items-md-center {
    align-items: center;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .row .col-md-auto {
    width: auto;
    flex-grow: 0;
  }
  .row .col-md-100 {
    width: 100%;
  }
  .row .col-md-75 {
    width: 75%;
  }
  .row .col-md-50 {
    width: 50%;
  }
  .row .col-md-33 {
    width: 33%;
  }
  .row .col-md-25 {
    width: 25%;
  }
}
@media screen and (max-width: 639px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: inline-end;
  }
  .text-sm-left {
    text-align: inline-start;
  }
  .direction-sm-column {
    flex-direction: column;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .row .col-sm-auto {
    width: auto;
    flex-grow: 0;
  }
  .row .col-sm-100 {
    width: 100%;
  }
  .row .col-sm-75 {
    width: 75%;
  }
  .row .col-sm-50 {
    width: 50%;
  }
  .row .col-sm-33 {
    width: 33%;
  }
  .row .col-sm-25 {
    width: 25%;
  }
}
@media screen and (max-width: 479px) {
  .text-xs-center {
    text-align: center;
  }
  .text-xs-right {
    text-align: inline-end;
  }
  .text-xs-left {
    text-align: inline-start;
  }
  .direction-xs-column {
    flex-direction: column;
  }
  .align-items-xs-center {
    align-items: center;
  }
  .justify-content-xs-center {
    justify-content: center;
  }
  .justify-content-xs-between {
    justify-content: space-between;
  }
  .justify-content-xs-around {
    justify-content: space-around;
  }
  .row .col-xs-auto {
    width: auto;
    flex-grow: 0;
  }
  .row .col-xs-100 {
    width: 100%;
  }
  .row .col-xs-75 {
    width: 75%;
  }
  .row .col-xs-50 {
    width: 50%;
  }
  .row .col-xs-33 {
    width: 33%;
  }
  .row .col-xs-25 {
    width: 25%;
  }
}

.col--sidebar {
  max-width: 300px;
  flex-shrink: 0;
}

.sidebar {
  position: sticky;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .col--sidebar {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .col--content:has(+ .col--sidebar) {
    max-width: calc(100% - 300px);
  }
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul {
  margin: 1rem 0;
}
li:not(:last-child) {
  margin-bottom: 0.25rem;
}

ol,
ul {
  padding-left: 25px;
}

.section {
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .section--wide {
    padding: 1rem 2rem;
  }
}

.section > *:not(.row):first-child,
.col > *:not(.row):first-child {
  margin-top: 0;
}

.section > *:not(.row):last-child,
.col > *:not(.row):last-child {
  margin-bottom: 0;
}

.content {
  background: #fff;
}
.bg-white {
  background: white;
}
.bg-green {
  background: #9fef88;
}
.bg-lightgreen {
  background: #d8ead3;
}
.bg-yellow {
  background: rgb(255, 242, 186);
}
.bg-blue {
  background: #b7e0ff;
}
.bg-gray {
  background: #ededed;
}
.bg-lightgray {
  background: #efefef;
}
.bg-lightblue {
  background: #0385c3;
}
.bg-orange {
  background: orange;
}
.bg-darkblue {
  background: #016b93;
  color: #fff;
}
.bg-success {
  background: #1fb55d;
  color: #fff;
}
.bg-red {
  background: red;
  color: #fff;
}

.bg-lightred {
  background: rgb(255, 245, 245);
}

.bg-border-black {
  border-width: 1px;
  border-color: #000;
}
.bg-border-gray {
  border-width: 1px;
  border-color: gray;
}
.bg-border-red {
  border-width: 1px;
  border-color: red;
}
.bg-border-green {
  border-width: 1px;
  border-color: green;
}
.bg-border-lightgray {
  border-width: 1px;
  border-color: #efefef;
}
.bg-border-solid {
  border-style: solid;
}
.bg-border-dashed {
  border-style: dashed;
}

.blue {
  color: #349dee;
}
.red {
  color: red;
}
.orange {
  color: #f65757;
}
.darked {
  color: darked;
}
.gray {
  color: gray;
}
.green {
  color: green;
}

.yellow {
  color: #caca54;
}

.gold {
  color: #b88b59;
}

.image-content {
  max-width: var(--image-width);
  width: 100%;
  display: inline-block;
  line-height: 0;
  vertical-align: bottom;
}
.image-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.image-content-lg {
  max-width: var(--image-width-lg);
}
.image-content-md {
  max-width: var(--image-width-md);
}
.image-content-sm {
  max-width: var(--image-width-sm);
}
.image-content-xs {
  max-width: var(--image-width-xs);
}
.overflow-content {
  overflow-x: auto;
}
.overflow-content:before {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' width='32' height='32' style='transform: rotate(180deg);'%3E%3Cpath d='M118,5.9c-12.2,2.7-23.2,11.4-28.1,22.3l-1.5,3.4l-29.2,0.1H29.9l9.1-9.2c8-8.1,9.1-9.4,9.1-11c0-3.7-2.3-6-6-6.1h-2.5L25.1,20c-9.6,9.6-14.8,15.2-15,16.1c-0.2,0.9-0.2,2.2,0.1,3c0.2,1,5.4,6.6,14.9,16.1l14.6,14.6h2.5c3.7-0.1,6-2.3,6-6.1c0-1.6-1.1-2.9-9.1-11l-9.1-9.2h27.8h27.9l0.1,3.8c0.2,6.9,2.6,14.2,6.5,20.3l1.6,2.5l0.3-13.1C94.4,47,94.7,43.3,95.4,41c3.2-10.2,11.1-18.1,21.6-21.6c4.7-1.6,14.3-1.5,19.6,0.3c7.3,2.4,13.9,7.6,17.6,14c3.4,5.9,3.9,8.5,4.2,23.4l0.2,13.6l2.1-3.2c3.9-6.2,7.1-16.8,6.4-21.9l-0.2-1.8h29.5H226l-9.1,9.2c-8,8.1-9.1,9.4-9.1,11c0,3.7,2.3,6,6,6.1h2.4l14.4-14.3c15.5-15.4,16.3-16.6,15-20c-0.4-0.9-7.1-8-15-15.9C216.3,5.6,216.1,5.4,213.8,5.4c-1.3,0-2.8,0.3-3.4,0.5c-1.4,0.8-2.7,3.4-2.7,5.5c0,1.6,1.1,2.9,9.1,11l9.1,9.2l-30.7,0.1L164.6,32l-0.9-2.2c-3.3-8.3-10.9-16.3-19.7-20.7C136.6,5.4,126.3,4.1,118,5.9z'/%3E%3Cpath d='M120.3,30.8c-5.7,1.6-10.8,5.9-13.4,11.2c-2.2,4.4-2.3,9.1-2.2,62.9c0,25.9-0.1,47.3-0.2,47.4c-0.5,0.5-4-4.8-8.4-12.6c-4.9-9-7.1-11.7-10.9-14.2c-4.1-2.7-8.2-3.7-14.2-3.4c-4.3,0.1-5.6,0.4-8.6,1.9c-7.2,3.4-11.2,8.9-11.1,15.3c0,3.3,0.2,3.7,27.2,54.9c21.6,41.2,27.5,52,29.2,53.5c3.9,3.5,2.6,3.4,54.6,3.4c29.8,0,48.2-0.2,50.1-0.5c4.4-0.9,9.5-3.4,12.2-6.3c2.9-3,5.8-8.4,7.1-13.1c2.3-8.9,3.8-36.7,3.5-67.2l-0.2-23l-1.8-3.7c-3.1-6.7-8.7-10.7-16.5-12c-3.2-0.5-4.4-0.5-7.4,0.2l-3.6,0.8l-0.6-1.8c-2.4-7.2-12-12.7-21.2-12.1c-2.3,0.1-4.6,0.4-5.1,0.6c-0.6,0.3-1.1-0.4-2.1-2.8c-1.4-3.4-4.6-7.3-7.8-9.2c-4.8-3-12-4.3-18.3-3.3l-2.8,0.5l-0.2-26.5l-0.2-26.4l-1.8-3.7c-3.4-6.8-9.8-10.8-18-11.2C124.7,30.2,121.8,30.3,120.3,30.8z M131.1,44.8c0.9,0.5,2.1,1.6,2.5,2.3c0.5,1,0.8,10.3,1,45.1l0.3,43.9l1.4,1.4c1.9,1.9,5.6,2.3,8,1.1c3-1.5,3.4-3.1,3.4-13.3c0-8.1,0.1-9.4,1.1-10.9c0.5-1,1.6-2.1,2.3-2.6c3.4-2.2,9.1-1.4,11.9,1.8l1.6,1.9v14.5c0,15.6,0.2,16.6,3,18.5c1.7,1.1,5.5,1.1,7.4,0c2.7-1.6,3-2.7,3.3-10.9c0.3-8.2,0.6-9.3,3.3-10.9c3-1.7,9-0.6,10.5,2.1c0.4,0.8,0.8,5.4,0.9,13.9l0.3,12.8l2.1,1.9c1.9,1.8,2.3,1.9,4.8,1.7c4.9-0.5,6.5-3.2,6.5-10.8c0-3.3,0.3-5.5,0.8-6.5c0.9-1.8,3.8-3.3,6.3-3.3c2.5,0,5.8,2,6.8,4c1.9,4,1.6,46.6-0.5,71.4c-1.1,13.2-2.1,17.2-4.8,20.1c-2.7,3-0.6,2.8-51.2,3.1c-33.6,0.1-47.2,0-47.5-0.4c-0.8-1-51.3-96.8-51.5-97.6c-0.2-1.1,3-3.2,5.5-3.6c3-0.5,6.6,0.6,8.5,2.7c0.9,1,3.2,4.7,5.1,8.3c4.3,7.9,7.1,12.1,10.4,15.6c6.5,6.6,17.7,5.1,22.1-3.1c1.2-2.2,1.2-2.2,1.5-56.3c0.3-50.9,0.3-54.2,1.3-55.5C121.5,43.8,127.6,42.7,131.1,44.8z'/%3E%3C/svg%3E");
  animation: moving 2s infinite;
  display: none;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  left: calc(50% - 16px);
  top: 0;
  font-size: 0;
  line-height: 0;
  margin-top: -10px;
}
@media screen and (max-width: 1023px) {
  .overflow-content-lg > * {
    min-width: 800px;
  }
  .overflow-content-lg:before {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .overflow-content-md > * {
    min-width: 800px;
  }
  .overflow-content-md:before {
    display: inline-block;
  }
}
@media screen and (max-width: 639px) {
  .overflow-content-sm > * {
    min-width: 800px;
  }
  .overflow-content-sm:before {
    display: inline-block;
  }
}
@media screen and (max-width: 479px) {
  .overflow-content-xs > * {
    min-width: 500px;
  }
  .overflow-content-xs:before {
    display: inline-block;
  }
}

@keyframes moving {
  0% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}
.image-product {
  width: 100%;
  display: inline-block;
  line-height: 1;
}

.image-caption {
  font-size:0.9em;
  text-align: center;
  display: inline-block;
  max-width: var(--image-width);
  width: 100%;
  padding: 10px;
  background: #f3f3f3;
}

.btn {
  display: inline-block;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  background: red;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  border-radius: 5px;
  transition: all 400ms;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  color: #fff;
  background: rgb(123, 27, 43);
}
.btn-warning {
  background: #ffc107;
  color: #fff;
}
.btn-warning:hover {
  background: #d39e00;
}
.btn-success {
  background: #3ba027;
  color: #fff;
}
.btn-success:hover {
  background: #4dd532ff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: #000;
}
.btn-orange {
  background: #ff5900;
  color: #fff;
}
.btn-orange:hover {
  background: #ff6328;
}

.input {
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: inline-block;
  resize: none;
}

a.input {
  color: gray;
  text-decoration: none;
  line-height: 1;
}
a.input svg {
  color: #000;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.lastpack-wrap {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1rem;
  background: red;
  color: #fff;
  text-shadow:
    0 -1px 0 #000000,
    0 -1px 0 #000000,
    0 1px 0 #000000,
    0 1px 0 #000000,
    -1px 0 0 #000000,
    1px 0 0 #000000,
    -1px 0 0 #000000,
    1px 0 0 #000000,
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000,
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000;
  border-radius: 5px;
}

.footnote {
  text-align: center;
}

body {
  background: #eee;
}
.logo {
  color: inherit;
  font-family: monospace;
  font-weight: 700;
  text-decoration: none;
}
.header {
  font-size: 0.9em;
}
.footer {
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .footer,
  .bel-footer-block {
    margin-top: 1rem;
  }
}
.header__top {
  background-color: #000;
  color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 14px;
  padding: 4px 9px 4px 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: #fff;
  color: #111;
  outline: none;
}
.theme-toggle__moon {
  display: none;
}
.theme-toggle__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 42px;
  height: 22px;
  padding: 0 4px;
  border-radius: 999px;
  background: #72dff1;
  color: #063270;
  font-size: 13px;
}
.theme-toggle__sun,
.theme-toggle__moon {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.theme-toggle__sun {
  margin-left: auto;
}
.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.theme-toggle__label {
  font-weight: 700;
}

.menu {
  display: flex;
  align-items: center;
}
.menu__item {
  color: inherit;
  text-decoration: none;
  padding: 0.5rem;
  text-transform: uppercase;
  opacity: 0.9;
  font-size: 0.8em;
}
.menu__item:not(:last-child) {
  border-inline-end: 1px solid #fff;
}
.menu__item:hover {
  text-decoration: underline;
  opacity: 1;
}
.header__middle {
  background-image: url(../images/header_bg.jpg);
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-position: top right;
  background-repeat: no-repeat;
  background-color: #f4f4f4;
}
.header__bottom {
  background: #fff;
}
.social {
  display: flex;
  align-items: center;
  margin-inline-end: 15px;
  margin-inline-start: auto;
  color: #fff;
}
.social__item {
  color: inherit;
  text-decoration: none;
  padding: 0 5px;
  font-size: 0.95em;
}
.social__item:hover {
  color: rgb(0, 153, 255);
}
.search {
  width: 150px;
  display: block;
  background-color: #fff;
  font-size: 0.9em;
  padding: 8px 12px;
  color: gray;
  text-decoration: none;
  cursor: text;
  border: 1px solid gray;
}
.submenu {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.submenu__item {
  color: inherit;
  text-decoration: none;
  text-align: center;
  flex-grow: 1;
}
.submenu__item:not(:last-child) {
  margin-inline-end: 1rem;
}
.submenu__item:hover,
.active {
  color: rgb(0, 153, 255);
}
@media screen and (max-width: 1023px) {
  .submenu__item:nth-child(9) {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .submenu__item:nth-child(8) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .submenu__item:nth-child(7) {
    display: none;
  }
  .menu__item:nth-child(1) {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .submenu__item:nth-child(6) {
    display: none;
  }
  .menu__item:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .submenu__item:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .submenu__item:nth-child(4) {
    display: none;
  }
  .menu {
    display: none;
  }
  .header__top {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header__top .header__inner {
    justify-content: center;
  }
  .theme-toggle {
    margin-left: 12px;
    margin-right: 0;
  }
}

body.is-dark {
  background: #14171c;
  color: #e8eaed;
}
body.is-dark .content,
body.is-dark .header__bottom {
  background: #1e232b;
}
body.is-dark .header__middle {
  background-color: #252b35;
  background-image: none;
}
body.is-dark .submenu {
  border-color: #4a5360;
}
body.is-dark .footer {
  background-color: #0c0e12;
}
body.is-dark .theme-toggle {
  border-color: #ffd65a;
  color: #ffd65a;
}
body.is-dark .theme-toggle:hover,
body.is-dark .theme-toggle:focus-visible {
  background: #ffd65a;
  color: #171717;
}
body.is-dark .theme-toggle__sun {
  display: none;
}
body.is-dark .theme-toggle__moon {
  display: inline;
}
body.is-dark .theme-toggle__track {
  background: #1c4c91;
  color: #f6dd72;
}
body.is-dark .theme-toggle__thumb {
  transform: translateX(20px);
}
body.is-dark .comment-form {
  background: #252b35;
  border-color: #4a5360;
}
body.is-dark .comment-form input,
body.is-dark .comment-form textarea {
  background: #161a20;
  border-color: #566170;
  color: #e8eaed;
}

.order__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__form {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .order__inner {
    flex-direction: column;
  }
}

.form {
  max-width: 400px;
}
.form__label {
  display: inline-block;
  margin-bottom: 5px;
}

.form__input {
  width: 100%;
  margin-bottom: 1rem;
  min-height: 62px;
  padding: 0.9rem 1rem;
  font-size: 1.2rem;
  line-height: 1.35;
}
.phone-mask {
  min-height: 62px;
  letter-spacing: 0.02em;
}
.phone-mask:focus {
  border-color: #0b5bc4;
  outline: 3px solid rgba(11, 91, 196, 0.16);
  outline-offset: 1px;
}
.phone-help {
  display: block;
  margin: -0.65rem 0 1rem;
  color: #63778e;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.phone-field-label {
  display: block;
  margin: 0 0 0.35rem;
  color: #173f70;
  font-size: 1rem;
  font-weight: 800;
}
.phone-field-label span {
  color: #63778e;
  font-size: 0.9em;
  font-weight: 500;
}
body.is-dark .phone-field-label {
  color: #d8ecff;
}
body.is-dark .phone-field-label span {
  color: #a9bed5;
}
body.is-dark .phone-help {
  color: #a9bed5;
}
.phone-error {
  margin: -0.65rem 0 1rem;
  padding: 0.65rem 0.8rem;
  border-left: 4px solid #d52d42;
  border-radius: 6px;
  background: #fff0f2;
  color: #b3132a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}
.phone-error small {
  font-size: 0.9em;
  font-weight: 500;
}
.phone-mask--invalid {
  border: 2px solid #d52d42 !important;
  background: #fff7f8 !important;
  box-shadow: 0 0 0 3px rgba(213, 45, 66, 0.16);
}
body.is-dark .phone-error {
  border-color: #ff7d8d;
  background: #401d27;
  color: #ffd9de;
}
body.is-dark .phone-mask--invalid {
  border-color: #ff7d8d !important;
  background: #2d1720 !important;
}
.form__btn {
  width: 100%;
}
.form__footnote:not(:last-child) {
  margin-bottom: 1rem;
}
.form__btn + .form__footnote {
  margin-top: 0.5rem;
}

.mobile-order-cta {
  display: none;
}

.price {
  display: flex;
  justify-content: center;
  padding: 5px 0;
  background: #0c3492;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: #fff;
}

.price__item {
  padding: 0 10px;
  text-align: center;
  width: 50%;
}

.price__item-title {
  font-weight: 700;
  font-size: 0.9em;
}

.price__item--old {
  border-right: 1px solid #ddd;
}

.price__item-value--old {
  text-decoration: line-through;
  font-size: 22px;
  /* color: gray; */
}

.price__item-value--new {
  color: yellow;
  font-weight: 700;
  font-size: 26px;
  /* text-shadow: 0 0 2px yellow; */
}

@media screen and (max-width: 375px) {
  .price__item-value--old {
    font-size: 18px;
  }

  .price__item-value--new {
    font-size: 22px;
  }
}

#order {
  margin-top: 1rem;
}

.image-product {
  max-width: var(--product-narrow);
}

.comment:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

.comment__ava {
  margin-inline-end: 10px;
  width: 50px;
  float: inline-start;
}
.comment__ava img {
  border-radius: 0.5rem;
}
.comment__name {
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: 1.1em;
}
.comment__date {
  margin-inline-start: 60px;
  color: gray;
  font-size: 0.9em;
}

.comment__avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 0.5rem;
  background: #0c3492;
  color: #fff;
  font-weight: 700;
}

.comment-form {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.5rem;
  background: #f7f7f7;
}
.comment-form h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.comment-form__field {
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.comment-form__field span {
  display: block;
  margin-bottom: 0.35rem;
}
.comment-form input,
.comment-form textarea {
  display: block;
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #b8b8b8;
  border-radius: 0.25rem;
  background: #fff;
  color: #222;
  font: inherit;
  font-weight: 400;
}
.comment-form textarea {
  resize: vertical;
}
.comment-form__submit {
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 0.25rem;
  background: #0c3492;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.comment-form__submit:hover,
.comment-form__submit:focus-visible {
  background: #09266c;
}
.comment-form__notice {
  min-height: 1.3em;
  margin: 0.7rem 0 0;
  color: #248433;
}

.comment__text {
  margin-inline-start: 60px;
  margin-top: 0;
  margin-bottom: 10px;
}

.comment__actions {
  margin-left: 60px;
}
.comment__reply-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b5bc4;
  font: inherit;
  font-size: 0.9em;
  font-weight: 700;
  cursor: pointer;
}
.comment__reply-btn:hover,
.comment__reply-btn:focus-visible {
  color: #e4364b;
  text-decoration: underline;
}
.reply-form {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin: 12px 0 0 60px;
  padding: 12px;
  border: 1px solid #d8e5f3;
  border-radius: 10px;
  background: #f5fbff;
}
.reply-form input,
.reply-form textarea {
  grid-column: 1 / -1;
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #b8cbe0;
  border-radius: 6px;
  background: #fff;
  color: #222;
  font: inherit;
}
.reply-form textarea {
  resize: vertical;
}
.reply-form button {
  justify-self: start;
  padding: 0.5rem 0.75rem;
  border: 0;
  border-radius: 6px;
  background: #0b5bc4;
  color: #fff;
  font: inherit;
  font-size: 0.9em;
  font-weight: 700;
  cursor: pointer;
}
.reply-form button[type="button"] {
  grid-column: 2;
  justify-self: start;
  margin: 0;
  background: transparent;
  color: #48637f;
}
.comment-replies {
  margin-top: 14px;
}
.comment--reply {
  margin-left: 60px;
  padding: 13px;
  border: 1px solid #dce9f7;
  border-radius: 10px;
  background: #f3f8ff;
}
.comment--reply .comment__text,
.comment--reply .comment__date {
  margin-left: 0;
}

.comment__img {
  max-width: 250px;
  width: 100%;
  display: block;
  margin-top: 15px;
}
.answer {
  margin-inline-start: 60px;
}
@media screen and (max-width: 479px) {
  .answer {
    margin-inline-start: 30px;
  }
  /* .comment__img {
    max-width: 250px;
  } */
}

.footer {
  text-align: center;
  font-size: 1rem;
}

/* Visual refresh */
:root {
  --brand-blue: #0b5bc4;
  --brand-navy: #071d49;
  --brand-cyan: #12b9d7;
  --surface: #ffffff;
  --page: #edf4fc;
}
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 185, 215, 0.12), transparent 28rem),
    var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
.container {
  max-width: 1080px;
}
.header {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(7, 29, 73, 0.13);
}
.header__top {
  background: linear-gradient(110deg, #06183d 0%, #092b68 55%, #0b5bc4 100%);
}
.header__top .header__inner {
  min-height: 52px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.02em;
  font-family: inherit;
  font-size: 1.1rem;
}
.menu__item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.menu__item:not(:last-child) {
  border-color: rgba(255, 255, 255, 0.25);
}
.theme-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.header__middle {
  position: relative;
  overflow: hidden;
  min-height: 130px;
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
  background-color: #0b438a;
  background-image:
    linear-gradient(100deg, rgba(4, 22, 59, 0.92) 0%, rgba(8, 58, 129, 0.78) 45%, rgba(14, 172, 211, 0.53) 100%),
    url(../images/header_bg.jpg);
  background-size: cover;
  background-position: center;
}
.header__middle::after {
  position: absolute;
  right: -55px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 50px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}
.header__middle .header__inner {
  position: relative;
  z-index: 1;
}
.header__edition {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.header__edition span {
  margin-bottom: 4px;
  color: #75e7f5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.header__edition strong {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}
.social {
  margin-right: 18px;
  color: #fff;
}
.social__item {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.social__item:not(:last-child) {
  margin-right: 7px;
}
.social__item:hover {
  background: #fff;
  color: var(--brand-blue);
}
.search {
  width: 180px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(2, 13, 41, 0.18);
}
.header__bottom {
  background: #fff;
}
.submenu {
  padding: 13px 0;
  border: 0;
}
.submenu__item {
  color: #526072;
  font-size: 0.84rem;
  font-weight: 700;
}
.submenu__item:hover,
.submenu__item.active {
  color: var(--brand-blue);
}
.content {
  margin-top: 28px;
  margin-bottom: 28px;
  border: 1px solid rgba(16, 67, 130, 0.08);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(32, 76, 126, 0.1);
}
.content h1 {
  max-width: 900px;
  color: var(--brand-navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.content h2 {
  color: #123d79;
  line-height: 1.22;
}
.content a:not(.btn):not(.menu__item):not(.submenu__item) {
  color: var(--brand-blue);
  font-weight: 700;
}
.image-content img,
.image-caption {
  border-radius: 14px;
}
.image-content img {
  box-shadow: 0 12px 28px rgba(26, 58, 100, 0.14);
}
.hero-story-image {
  border-radius: 0 !important;
  filter: contrast(0.9) saturate(0.9) brightness(1.03);
}
.image-caption {
  background: #edf7ff;
  color: #305070;
}
.section.bg {
  border-radius: 14px;
}
.bg-lightred {
  border: 1px solid #ffd2d0 !important;
  background: linear-gradient(135deg, #fff8f7, #fff0ec);
}
.bg-gray {
  background: linear-gradient(105deg, #e7f7ff, #d5efff);
  color: #0c497a;
  font-weight: 700;
}
.price {
  padding: 13px 7px;
  border-radius: 14px;
  background: linear-gradient(125deg, #071d49, #0b5bc4);
  box-shadow: 0 12px 24px rgba(11, 91, 196, 0.24);
}
.price__item--old {
  border-color: rgba(255, 255, 255, 0.35);
}
.price__item-value--new {
  color: #82f3ff;
}
.btn,
.comment-form__submit {
  padding: 0.85rem 1.25rem;
  border-radius: 9px;
  background: linear-gradient(120deg, #e4364b, #f2763d);
  box-shadow: 0 10px 20px rgba(221, 60, 66, 0.24);
  font-weight: 800;
}
.btn:hover,
.comment-form__submit:hover,
.comment-form__submit:focus-visible {
  background: linear-gradient(120deg, #ca263d, #e25c2e);
  transform: translateY(-1px);
}
.comments {
  margin-top: 2.5rem;
}
.comments > h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 22px 8px 0;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, rgba(18, 185, 215, 0.16), rgba(18, 185, 215, 0.035));
}
.comments > h2::before {
  width: 6px;
  height: 28px;
  border-radius: 99px;
  background: linear-gradient(#12b9d7, #0b5bc4);
  content: "";
}
.comment {
  padding: 16px;
  border: 1px solid #e1ebf6;
  border-radius: 14px;
  background: #fbfdff;
}
.comment:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e1ebf6;
}
.comment__ava img,
.comment__avatar-initials {
  border-radius: 50%;
}
.comment__date {
  color: #7a8a9e;
}
.comment-form {
  border: 1px solid #d8e5f3;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5fbff, #eff7ff);
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #12a8cf;
  outline: 3px solid rgba(18, 185, 215, 0.15);
}
.footer {
  background: #071d49;
  color: #bed1ef;
}
body.is-dark {
  background: #0a1120;
}
body.is-dark .content,
body.is-dark .header__bottom {
  background: #111c2e;
  border-color: #263b59;
}
body.is-dark .content h1,
body.is-dark .content h2 {
  color: #d8ecff;
}
body.is-dark .comment {
  border-color: #2d4666;
  background: #16243a;
}
body.is-dark .comment-form {
  background: #16243a;
  border-color: #2d4666;
}
body.is-dark .reply-form,
body.is-dark .comment--reply {
  border-color: #2d4666;
  background: #13243b;
}
body.is-dark .reply-form input,
body.is-dark .reply-form textarea {
  border-color: #405a79;
  background: #0e1828;
  color: #eef6ff;
}
body.is-dark .comment__reply-btn {
  color: #75e7f5;
}
body.is-dark .comments > h2 {
  background: linear-gradient(90deg, rgba(18, 185, 215, 0.24), rgba(18, 185, 215, 0.06));
}
body.is-dark .bg-lightgreen {
  border-color: #23965b !important;
  background: linear-gradient(135deg, #123d31, #174b3b);
  color: #edfff5;
}
body.is-dark .bg-lightred {
  border-color: #9d4753 !important;
  background: linear-gradient(135deg, #3f2029, #4e2631);
  color: #ffeef0;
}
body.is-dark .bg-yellow {
  background: #4a3b16;
  color: #fff3bd;
}
body.is-dark .bg-blue,
body.is-dark .bg-lightblue {
  background: #123b5c;
  color: #e1f4ff;
}
body.is-dark .bg-gray,
body.is-dark .bg-lightgray {
  background: #1d2b40;
  color: #e5edf8;
}
body.is-dark .bg-white {
  background: #16243a;
}
body.is-dark .image-caption {
  background: #1d2b40;
  color: #dbe9f9;
}
body.is-dark .input,
body.is-dark select,
body.is-dark input:not([type="hidden"]) {
  border-color: #405a79;
  background: #0e1828;
  color: #eef6ff;
}
body.is-dark .red {
  color: #ff8998;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.poll {
  margin: 2rem 0;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid #b8dfcf;
  border-top: 5px solid #19a774;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5fffa, #e6f7ef);
  box-shadow: 0 14px 30px rgba(29, 125, 85, 0.12);
}
.poll__eyebrow {
  margin: 0 0 0.35rem;
  color: #18875f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.poll h3 {
  margin: 0;
  color: #103e32;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.poll__intro {
  margin: 0.45rem 0 1.1rem;
  color: #496b60;
}
.poll__options {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  border: 0;
}
.poll__option {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid #cbe8da;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  color: #25483c;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.poll__option:hover {
  border-color: #4fc398;
  box-shadow: 0 5px 12px rgba(29, 125, 85, 0.09);
  transform: translateY(-1px);
}
.poll__option:has(input:checked) {
  border-color: #149b6a;
  background: #d9f6e9;
  box-shadow: 0 0 0 3px rgba(25, 167, 116, 0.13);
}
.poll__option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #149b6a;
}
.poll__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.15rem;
}
.poll__button {
  padding: 0.72rem 1.35rem;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(120deg, #129968, #0b6f75);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(18, 153, 104, 0.2);
}
.poll__button:hover:not(:disabled) {
  background: linear-gradient(120deg, #0b8055, #075a60);
}
.poll__button:disabled {
  cursor: default;
  opacity: 0.72;
}
.poll__notice {
  min-height: 1.4em;
  margin: 0;
  color: #137553;
  font-size: 0.92em;
  font-weight: 700;
}
.poll--voted .poll__option {
  cursor: default;
}
body.is-dark .poll {
  border-color: #286f58;
  border-top-color: #39cc98;
  background: linear-gradient(135deg, #12382f, #183f38);
  box-shadow: none;
}
body.is-dark .poll h3,
body.is-dark .poll__option {
  color: #e4fff3;
}
body.is-dark .poll__intro {
  color: #b5d7c9;
}
body.is-dark .poll__option {
  border-color: #326a5a;
  background: rgba(9, 29, 26, 0.45);
}
body.is-dark .poll__option:has(input:checked) {
  border-color: #48d5a2;
  background: #164e40;
}
body.is-dark .poll__notice {
  color: #7be1b8;
}
@media screen and (max-width: 639px) {
  .header__middle {
    min-height: 0;
  }
  .header__edition {
    margin-bottom: 16px;
  }
  .header__middle .header__inner {
    flex-wrap: wrap;
  }
  .social {
    margin-left: 0;
  }
  .search {
    width: 135px;
  }
  .content {
    margin-top: 14px;
    border-radius: 12px;
  }
}


.rounded {
  border-radius: 1rem;
}
.overflow-hidden {
  overflow: hidden;
}

.gy-0 {
  --offset-y: 0;
}
.gx-0 {
  --offset-x: 0;
}

/* Mobile layout polish */
@media screen and (max-width: 767px) {
  .mobile-order-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: block;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(110deg, #ef3340, #ff7038);
    box-shadow: 0 10px 24px rgba(193, 39, 47, 0.3);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .mobile-order-cta span {
    font-weight: 600;
    opacity: 0.92;
  }
  .mobile-order-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
  }
  body {
    padding-bottom: 72px;
  }
  .header__middle {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-image: none;
  }
  .content {
    margin-top: 12px;
    margin-bottom: 16px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(32, 76, 126, 0.08);
  }
  .hero-story-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #order .section {
    padding: 0.8rem;
  }
  #order .bg-red h3 {
    font-size: 1.05rem;
    line-height: 1.35;
  }
  #order .image-product img {
    max-width: min(70vw, 250px);
    height: auto;
  }
  .price {
    margin-top: 0.25rem;
    margin-bottom: 0.9rem;
  }
  .form__btn {
    min-height: 62px;
    font-size: 1.12rem;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  body {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    max-width: none;
  }
  .header__top .header__inner {
    min-height: 50px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .logo {
    font-size: 1rem;
  }
  .theme-toggle {
    margin-right: 0;
    padding-right: 7px;
    font-size: 11px;
  }
  .header__middle {
    padding: 1.25rem 0.75rem;
  }
  .header__middle .header__inner {
    align-items: center;
    gap: 12px;
  }
  .header__edition {
    width: 100%;
    margin-bottom: 0;
  }
  .header__edition strong {
    font-size: 1.45rem;
  }
  .social {
    margin-right: auto;
  }
  .search {
    width: 145px;
    padding: 9px 11px;
  }
  .header__bottom {
    overflow: hidden;
  }
  .submenu {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 1.1rem;
    padding: 11px 0.75rem;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .submenu::-webkit-scrollbar {
    display: none;
  }
  .submenu__item {
    flex: 0 0 auto;
    margin-inline-end: 0 !important;
    font-size: 0.78rem;
  }
  .content {
    width: calc(100% - 16px);
    margin: 12px auto 18px;
    padding: 0.85rem;
    border-radius: 13px;
  }
  .content h1 {
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
  .content h2 {
    font-size: 1.4rem;
  }
  .content h3 {
    font-size: 1.2rem;
  }
  .content p,
  .content li {
    line-height: 1.52;
  }
  .row .col {
    width: 100%;
    flex-basis: 100%;
  }
  .image-content,
  .image-content-md,
  .image-content-sm,
  .image-content-xs {
    max-width: 100%;
  }
  .image-caption {
    max-width: 100%;
    padding: 8px;
    font-size: 0.88rem;
  }
  .content .section {
    padding: 0.9rem;
  }
  .order {
    border-radius: 12px;
  }
  .order__inner,
  .order__form {
    width: 100%;
  }
  #order .row > .col:first-child {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  #order .image-product {
    display: block;
    width: 100%;
    max-width: var(--product-narrow);
    margin-left: auto;
    margin-right: auto;
  }
  #order .image-product img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #order .row > .col:last-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .order__form {
    max-width: none;
  }
  .price__item-value--old {
    font-size: 1.05rem;
  }
  .price__item-value--new {
    font-size: 1.3rem;
  }
  .btn,
  .form__btn,
  .poll__button {
    width: 100%;
    text-align: center;
  }
  .poll {
    margin: 1.25rem 0;
    padding: 1rem;
    border-radius: 13px;
  }
  .poll__option {
    padding: 11px;
    font-size: 0.94rem;
  }
  .poll__footer {
    align-items: stretch;
    flex-direction: column;
  }
  .poll__notice {
    text-align: center;
  }
  .comments {
    margin-top: 1.5rem;
    width: 100%;
    overflow: hidden;
  }
  .comments > h2 {
    font-size: 1.35rem;
  }
  .comment {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    overflow-wrap: anywhere;
  }
  .comments-list {
    width: 100%;
    max-width: 100%;
  }
  .comments-list > .comment {
    margin-right: 0;
    margin-left: 0;
  }
  .comment__name,
  .comment__text,
  .comment__date {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .comment__text,
  .comment__date,
  .comment__actions,
  .reply-form {
    margin-left: 0;
  }
  .comment--reply {
    margin-left: 10px;
  }
  .reply-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .reply-form button,
  .reply-form button[type="button"] {
    grid-column: 1;
    justify-self: stretch;
    margin: 0;
  }
  .phone-field-label {
    font-size: 0.95rem;
  }
}

/* Final mobile image sizing: preserve proportions and center the product. */
@media screen and (max-width: 767px) {
  .content .image-content,
  .content picture.image-content {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
  }
  .content .image-content img,
  .content picture.image-content img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain;
  }
  #order .row > .col:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }
  #order .image-product {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(52vw, 185px);
    max-width: 185px;
    margin: 0 auto;
    overflow: visible;
  }
  #order .image-product img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: contain;
  }
}

@media screen and (max-width: 420px) {
  .header__middle .header__inner {
    gap: 10px;
  }
  .social__item {
    width: 30px;
    height: 30px;
  }
  .search {
    width: 125px;
  }
  .theme-toggle__label {
    display: none;
  }
  .content h1 {
    font-size: 1.5rem;
  }
  .content {
    padding: 0.7rem;
  }
  .poll__option {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 767px) {
  .comments-list > .comment,
  .comments-list > .comment.answer {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .comment__text,
  .comment__date,
  .comment__actions,
  .reply-form {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .comment__text,
  .comment__name {
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .comment .reply-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .comment-replies {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .comment--reply {
    width: calc(100% - 10px) !important;
    margin-inline-start: 10px !important;
  }
}

/* Keep only the single comment form at the bottom of the comments section. */
.comment__actions,
.comment .reply-form {
  display: none !important;
}
