@charset "UTF-8";
/*  Roboto  */
/* 300 Light */
@font-face {
  font-family: "Roboto";
  src: local("Roboto Light"), local("Roboto-Light"), url("../fonts/Roboto/static/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* 400 Regular */
@font-face {
  font-family: "Roboto";
  src: local("Roboto Regular"), local("Roboto-Regular"), url("../fonts/Roboto/static/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 400 Italic */
@font-face {
  font-family: "Roboto";
  src: local("Roboto Italic"), local("Roboto-Italic"), url("../fonts/Roboto/static/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* 500 Medium */
@font-face {
  font-family: "Roboto";
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../fonts/Roboto/static/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* 600 SemiBold */
@font-face {
  font-family: "Roboto";
  src: local("Roboto SemiBold"), local("Roboto-SemiBold"), url("../fonts/Roboto/static/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* 700 Bold */
@font-face {
  font-family: "Roboto";
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/Roboto/static/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Berkshire Swash */
@font-face {
  font-family: "Berkshire Swash";
  src: url("/assets/fonts/BerkshireSwash/BerkshireSwash-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ink-free */
@font-face {
  font-family: "Ink Free";
  src: url("/assets/fonts/Iink-free/ink-free.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Base / Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #FFFFFF;
  font-family: "Roboto", -apple-system, system-ui, "Segoe UI", Arial, sans-serif;
  line-height: 1.3;
  background-color: #285591;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  position: relative;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
}

footer {
  margin: auto 0 0 0;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(127, 198, 255, 0.25);
  color: #FFFFFF;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 198, 255, 0.35);
}

/* Typography */
h1, .looks_like_h1, h2, .looks_like_h2, h3, .looks_like_h3, h4, .looks_like_h4, h5, .looks_like_h5, h6, .looks_like_h6 {
  margin: 0 0 0.5em;
  font-family: "Roboto", -apple-system, system-ui, "Segoe UI", Arial, sans-serif;
  color: #FFFFFF;
  line-height: 1.2;
}

h1, .looks_like_h1 {
  font-size: 2.22rem;
}
@media (min-width: 650px) {
  h1, .looks_like_h1 {
    font-size: 2.67rem;
  }
}

h2, .looks_like_h2 {
  font-size: 1.5rem;
}

h3, .looks_like_h3 {
  font-size: 1.3rem;
}

h4, .looks_like_h4 {
  font-size: 1.25rem;
}

h5, .looks_like_h5 {
  font-size: 1.125rem;
}

h6, .looks_like_h6 {
  font-size: 1rem;
}

small,
.muted {
  color: rgba(255, 255, 255, 0.75);
}

/* utility “looks like” */
/* Links */
a {
  color: #fb5e54;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  opacity: 0.9;
}
a:focus-visible {
  box-shadow: 0 0 0 3px rgba(127, 198, 255, 0.35);
  border-radius: 4px;
}

/* Lists */
ol, ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
  color: #FFFFFF;
}

li {
  margin: 0 0 0.5em;
}

ol li::marker {
  color: #fb5e54;
  font-weight: 600;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  color: #FFFFFF;
}

th, td {
  padding: 12px 14px;
  border: 1px solid #103c5d;
}

thead th {
  background: rgba(12, 39, 72, 0.12);
  color: #FFFFFF;
  text-align: left;
}

/* Containers & Sections */
.container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

.section-hero {
  height: calc(100vh - 244px);
}

section {
  padding-block: 30px;
}

.hr {
  height: 1px;
  background: #103c5d;
  border: 0;
  margin: 24px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn--primary {
  background: #004a8b;
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-1px);
}
.btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(127, 198, 255, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Status tags (optional) */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid currentColor;
}

.badge--success {
  color: #22C55E;
}

.badge--warning {
  color: #F59E0B;
}

.badge--danger {
  color: #EF4444;
}

.badge--info {
  color: #7FC6FF;
}

/* Fields */
input,
textarea {
  font-family: "Roboto", -apple-system, system-ui, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  color: #0c2748;
  border: 1px solid #103c5d;
  border-radius: 6px;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
input::placeholder,
textarea::placeholder {
  color: rgba(12, 39, 72, 0.75);
}
input:focus,
textarea:focus {
  border-color: #7FC6FF;
  box-shadow: 0 0 0 2px rgba(127, 198, 255, 0.25);
}
input:disabled,
textarea:disabled {
  background: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  color: rgba(12, 39, 72, 0.6);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Validation states */
.is-invalid {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

.is-success {
  border-color: #22C55E !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18) !important;
}

/* Hints/errors below the field */
.form-help {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.form-error {
  color: #EF4444;
}

/* main title */
.title-block.main-title {
  min-height: calc(100svh - 350px);
  min-height: calc(100dvh - 350px);
  min-height: calc(100vh - 350px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}
@media (min-width: 1300px) {
  .title-block.main-title {
    padding-bottom: 10em;
  }
}

.title-block.main-title h1, .title-block.main-title .looks_like_h1 {
  font-family: "Ink Free", serif;
  font-size: clamp(60px, 7.2vw, 108px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 2.4em 0;
  width: 100%;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), 0 3px 8px rgba(0, 0, 0, 0.25), 0 10px 24px rgba(0, 0, 0, 0.25);
}
@media (min-width: 450px) {
  .title-block.main-title h1, .title-block.main-title .looks_like_h1 {
    font-size: clamp(80px, 7.2vw, 108px);
  }
}
@media (min-width: 1300px) {
  .title-block.main-title h1, .title-block.main-title .looks_like_h1 {
    font-size: clamp(40px, 7.2vw, 108px);
    margin: 0 0 0 0;
  }
}

.title-animated {
  display: flex;
  flex-direction: column;
}

.title-animated__static {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.scroll-wrap {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 3;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
@media (min-width: 1300px) {
  .scroll-wrap {
    bottom: 4em;
  }
}

.scroll-wrap.is-visible {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}

.scroll-wrap__chevrons {
  width: 20px;
  height: 30px;
  display: block;
}

.scroll-wrap__chevron {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* secondary title */
.secondary-title {
  padding-top: 0.56em;
}

/* product specifications */
.product--specifications {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2em;
  max-width: 54em;
  width: 100%;
  margin: auto;
}
@media (min-width: 1280px) {
  .product--specifications {
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 100%;
    gap: 0.834em;
  }
}

.product--specifications__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  max-width: 12em;
  width: 100%;
  text-align: center;
}

.product--specifications--title {
  margin-bottom: 3em;
}

.product--specifications__container__icon {
  max-height: 8.34em;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.product--specifications__container__title {
  font-weight: 600;
}

.product--specifications__container__description {
  font-size: 0.889em;
  font-weight: 300;
  margin-top: 0.35em;
}

@media (hover: hover) and (pointer: fine) {
  .product--specifications__container {
    transition: transform 0.2s ease, filter 0.2s ease;
  }
  .product--specifications__container:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  }
}
.product--specifications__container {
  will-change: transform, opacity;
}

.product--specifications--title {
  visibility: hidden;
  will-change: opacity, transform;
}

.product--specifications--title .looks_like_h1 {
  visibility: hidden;
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .product--specifications--title,
  .product--specifications--title .looks_like_h1 {
    visibility: visible;
    transform: none;
  }
}
/* our product */
.title-block {
  text-align: center;
}

.our--product--bg {
  position: relative;
  isolation: isolate;
  z-index: 1;
  padding-block: clamp(24px, 5vw, 64px) clamp(32px, 6vw, 80px);
  --section-bg-image: none;
  --section-bg-y: clamp(40px, 10vw, 1px);
  --section-bg-opacity: 0.7;
}
.our--product--bg .container,
.our--product--bg .our--product,
.our--product--bg .our--product__main--title {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.our--product--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--section-bg-image);
  background-repeat: no-repeat;
  background-position: 50% var(--section-bg-y);
  background-size: clamp(350px, 80vw, 1450px) auto;
  opacity: var(--section-bg-opacity);
}
@media (min-width: 500px) {
  .our--product--bg::before {
    background-position: 50% var(--section-bg-y);
    background-size: clamp(550px, 80vw, 1450px) auto;
    opacity: 0.78;
  }
}
@media (min-width: 700px) {
  .our--product--bg::before {
    background-position: 50% var(--section-bg-y);
    background-size: clamp(700px, 80vw, 1450px) auto;
    opacity: 0.7;
  }
}
@media (min-width: 1024px) {
  .our--product--bg::before {
    opacity: 0.7;
    background-position: 50% calc(var(--section-bg-y) + 1.5vw);
    background-size: clamp(900px, 68vw, 1600px) auto;
  }
}
@media (min-width: 1440px) {
  .our--product--bg::before {
    background-position: 50% calc(clamp(40px, 9vw, 8px) + 24px);
    background-size: clamp(1100px, 50vw, 1800px) auto;
  }
}

.our--product--bg-codfish {
  --section-bg-image: url("../img/webP/background-codfish.webp");
  --section-bg-y: clamp(40px, 9vw, 8px);
}

.our--product--bg-herring {
  --section-bg-image: url("../img/webP/background-herring.webp");
  --section-bg-y: clamp(40px, 9vw, 8px);
}

.our--product--bg-tuns {
  --section-bg-image: url("../img/webP/background-tunas.webp");
  --section-bg-y: clamp(40px, 9vw, 8px);
}

.our--product-container {
  padding: 0;
}

.our--product__container__raw {
  display: flex;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  margin-top: 2em;
  flex-wrap: nowrap;
}
@media (min-width: 1281px) {
  .our--product__container__raw {
    gap: clamp(12px, 3vw, 28px);
  }
}

.our--product__container {
  flex: 1 1 clamp(220px, 22vw, 320px);
  max-width: 21.84em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  cursor: pointer;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.our--product__container .our--product__container__icon--block {
  width: 100%;
  max-width: 20em;
  max-height: 20em;
}
.our--product__container .our--product__container__icon--block img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.28));
  min-width: clamp(180px, 22vw, 320px);
}
@media (min-width: 640px) {
  .our--product__container .our--product__container__icon--block {
    max-width: none;
    max-height: none;
  }
}
.our--product__container .our--product__container__description {
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 500px) {
  .our--product__container .our--product__container__description {
    font-size: 1em;
  }
}
@media (min-width: 998px) {
  .our--product__container .our--product__container__description {
    font-size: 1.05em;
  }
}
.our--product__container .our--product__container__description__title {
  font-size: 1.12em;
  font-weight: 600;
  color: #FFFFFF;
}
.our--product__container .our--product__container__description__gram {
  font-weight: 800;
  color: #fb5e54;
}

@media (prefers-reduced-motion: reduce) {
  .our--product__container {
    transform: none !important;
  }
}
@media (max-width: 1280px) {
  .swiper-codfish .swiper-wrapper {
    gap: 0 !important;
    justify-content: flex-start !important;
    padding: 0;
  }
  .swiper-codfish .swiper-slide {
    margin: 0 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1280px) and (min-width: 641px) {
  .swiper-codfish .swiper-slide {
    width: 50% !important;
  }
}
@media (max-width: 1280px) and (min-width: 981px) and (max-width: 1280px) {
  .swiper-codfish .swiper-slide {
    width: 33.3333333333% !important;
  }
}
@media (max-width: 1280px) {
  .our--product__container.swiper-slide {
    max-width: none !important;
  }
  .our--product__container.swiper-slide .our--product__container__icon--block img {
    min-width: 0 !important;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.our--product__main--title {
  will-change: transform, opacity;
}

.our--product__container.swiper-slide {
  will-change: transform, opacity;
}

.our--product__container__icon--block,
.our--product__container__description {
  will-change: transform, opacity;
}

/* Circle */
.hover-circle figure {
  position: relative;
  overflow: visible;
  margin: 0;
}

.hover-circle figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  will-change: transform, opacity;
}

.hover-circle.is-rippling figure::before {
  animation: circle 0.75s ease-out;
}

@keyframes circle {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* bt lightbox (gallery) */
.no-scroll {
  overflow: hidden;
}

.bt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  transition: opacity 0.2s ease;
}

.bt-lightbox.is-open {
  pointer-events: auto;
  opacity: 1;
}

.bt-lightbox__dialog {
  position: relative;
  max-width: min(1100px, 92vw);
  width: 100%;
  margin: 2rem;
}

.bt-lightbox__close {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  right: calc(16px + env(safe-area-inset-right));
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #0c2748;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  z-index: 1400;
}

.bt-lightbox__figure {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: clamp(240px, 60vh, 900px);
}

.bt-lightbox__img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.bt-lightbox__img.is-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2;
}

.bt-lightbox__img.is-leave {
  opacity: 0 !important;
  transform: scale(1.01) !important;
  z-index: 1;
}

.bt-lightbox__caption {
  text-align: center;
  padding: 0;
  margin-top: 14px;
  color: #fff;
}

.bt-lightbox__link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.bt-lightbox__name {
  display: block;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.bt-lightbox__gram {
  font-size: clamp(16px, 1.6vw, 22px);
  display: block;
  color: #fb5e54;
}

/* new items */
.new-items--title-block--description {
  margin-top: 3em;
}

.novelties .swiper {
  position: relative;
  overflow: hidden;
  margin-inline: clamp(12px, 4vw, 48px);
}
.novelties .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  will-change: transform;
}
.novelties .swiper-slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.novelties .swiper-slide .product-card {
  display: flex;
  margin: 0;
}
.novelties .swiper-slide .product-card__img {
  display: block;
  width: auto;
  object-fit: contain;
  height: auto;
  max-height: 20em;
  transition: filter 0.25s ease;
}
@media (min-width: 478px) {
  .novelties .swiper-slide .product-card__img {
    height: auto;
  }
}
@media (max-width: 477.98px) {
  .novelties .swiper-slide {
    width: auto;
  }
}
.novelties .novelties__nav {
  --btn-size: clamp(36px, 3.6vw, 48px);
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.novelties .novelties__nav img {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  pointer-events: none;
  display: block;
}
.novelties .novelties__nav--prev {
  inset-inline-start: max(8px, clamp(12px, 4vw, 48px) - 24px);
}
.novelties .novelties__nav--next {
  inset-inline-end: max(8px, clamp(12px, 4vw, 48px) - 24px);
}
.novelties .novelties__nav:hover {
  opacity: 1;
}
.novelties .novelties__nav[disabled],
.novelties .novelties__nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.novelties .novelties__cta {
  display: flex;
  font: 300 18px/1 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  appearance: none;
  padding: 0.778em 2.5em;
  color: #FFFFFF;
  cursor: pointer;
  margin: 2em auto auto;
  border: 2px solid #FFFFFF;
  border-radius: 14px;
  background: #004a8b;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0.554em 1.445em rgba(11, 90, 168, 0.35), 0 2px 0 rgba(0, 0, 0, 0.06);
}
.novelties .novelties__cta a {
  color: #FFFFFF;
}
.novelties .novelties__cta:focus-visible,
.novelties .novelties__cta:hover {
  background: #0a66c1;
  box-shadow: 0 0.667em 1.774em rgba(10, 102, 193, 0.38);
}
.novelties .novelties__cta:active {
  transform: translateY(1px);
}

.new-product .title-block,
.new-items--title-block--description,
.novelties__slide,
.product-card__img {
  will-change: transform, opacity, filter;
  transform-origin: center center;
  backface-visibility: hidden;
}

.new-product,
#novelties-slider {
  overflow: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.new-product .looks_like_h1,
.new-items--title-block--description span {
  display: inline-block;
  will-change: transform, opacity, filter;
  transform-origin: center;
}

.novelties__slide,
.product-card {
  overflow: hidden;
  contain: layout paint;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.product-card__img {
  display: block;
  will-change: transform, opacity, filter;
}

/* Contact form */
.contact-form--title {
  margin-top: 2em;
}

.contact-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px);
  color: #0f2536;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.5vw, 20px);
}
@media (min-width: 720px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  width: 100%;
}

.contact-form__field--full {
  grid-column: 1/-1;
}

.contact-form__input,
.contact-form__textarea {
  display: block;
  width: 100%;
  padding: clamp(14px, 1.8vw, 18px) clamp(18px, 2.2vw, 22px);
  border-radius: 0;
  border: 2px solid #103c5d;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03), 0 6px 18px rgba(0, 0, 0, 0.12);
  font: 500 16px/1.4 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: #0f2536;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(15, 37, 54, 0.55);
}

.contact-form__input {
  min-height: 56px;
}

.contact-form__textarea {
  min-height: clamp(160px, 26vw, 220px);
  resize: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #3ea0ff;
  box-shadow: 0 0 0 3px rgba(62, 160, 255, 0.25), 0 6px 18px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.contact-form__input:disabled,
.contact-form__textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__notes {
  grid-column: 1/-1;
  margin: 0;
  font: 400 13px/1.5 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form__notes--info {
  margin-left: 0.8em;
}

.contact-form__actions {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  padding-top: clamp(12px, 2.5vw, 60px);
}

.contact-form__notes--container {
  display: flex;
  flex-direction: column;
  grid-column: 1/-1;
  gap: 0.5em;
}

.contact-form__confirm {
  font: 300 18px/1 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  appearance: none;
  padding: 0.778em 1.224em;
  color: #FFFFFF;
  cursor: pointer;
  border: 2px solid #FFFFFF;
  border-radius: 14px;
  background: #004a8b;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0.554em 1.445em rgba(11, 90, 168, 0.35), 0 2px 0 rgba(0, 0, 0, 0.06);
}

.contact-form__confirm:focus-visible,
.contact-form__confirm:hover {
  background: #0a66c1;
  box-shadow: 0 0.667em 1.774em rgba(10, 102, 193, 0.38);
}

.contact-form__confirm:active {
  transform: translateY(1px);
}

.contact-form__field.is-error .contact-form__input,
.contact-form__field.is-error .contact-form__textarea {
  border-color: #004a8b;
  box-shadow: 0 0 0 3px rgba(0, 74, 139, 0.18), 0 6px 18px rgba(0, 74, 139, 0.14);
  background: #fff;
}

.contact-form__error {
  font: 400 13px/1.4 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  width: fit-content;
  padding: 0.1em 0.3em;
  margin: 0.44em 0 0 1.06em;
  color: #FFFFFF;
  background-color: #FB5E54;
}

.contact-form__confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-toast {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.contact-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.contact-toast__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 32, 0.55);
  backdrop-filter: blur(2px);
}

.contact-toast__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(6px);
  width: min(92vw, 560px);
  padding: clamp(20px, 3vw, 28px);
  border: 2px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.22s ease;
}

.contact-toast.is-visible .contact-toast__card {
  transform: translate(-50%, -50%) translateY(0);
}

.contact-toast__title {
  font: 600 20px/1.3 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: #0f2536;
  margin: 0 0 8px 0;
}

.contact-toast__text {
  font: 400 15px/1.5 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: rgba(15, 37, 54, 0.85);
  margin: 0 0 16px 0;
}

.contact-toast__close {
  font: 500 16px/1 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  padding: 0.7em 1.1em;
  border-radius: 12px;
  border: 2px solid #FFFFFF;
  background: #004a8b;
  color: #FFFFFF;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0.554em 1.445em rgba(11, 90, 168, 0.35), 0 2px 0 rgba(0, 0, 0, 0.06);
}

.contact-toast__close:hover,
.contact-toast__close:focus-visible {
  background: #0a66c1;
  box-shadow: 0 0.667em 1.774em rgba(10, 102, 193, 0.38);
}

.contact-form--title .looks_like_h1 {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: center;
}

.contact-form__grid > * {
  will-change: transform, opacity;
}

/* bg canvas (video) */
:root {
  --vv-top: 0px;
  --vv-height: 100vh;
  --bg-bleed: 128px;
}

.preloader-video {
  position: fixed;
  left: calc(-1 * var(--bg-bleed));
  top: 0;
  width: calc(100vw + var(--bg-bleed) * 2);
  height: calc(var(--vv-height) + var(--bg-bleed) * 2);
  transform: translate3d(0, calc(var(--vv-top) - var(--bg-bleed)), 0);
  background-image: url("/assets/img/jpg/2430087_Underwater_Depth_1280x720.mp4_snapshot_00.00.000.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, height;
}

.page-bg {
  position: fixed;
  left: calc(-1 * var(--bg-bleed));
  top: 0;
  width: calc(100vw + var(--bg-bleed) * 2);
  height: calc(var(--vv-height) + var(--bg-bleed) * 2);
  transform: translate3d(0, calc(var(--vv-top) - var(--bg-bleed)), 0);
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, height;
}

.page-bg__canvas,
.page-bg__video,
#bgCanvas,
#bgSrc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.page-bg__canvas,
#bgCanvas {
  display: block;
  pointer-events: none;
}

.page-bg__video,
#bgSrc {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.use-native-video .page-bg__video,
body.use-native-video #bgSrc {
  opacity: 1;
  visibility: visible;
}

body.use-native-video #bgCanvas {
  display: none;
}

.main {
  position: relative;
  z-index: 0;
}

/* title block */
.title-block h1, .title-block .looks_like_h1 {
  font-weight: 300;
  text-align: center;
}

.looks_like_h1 {
  display: inline-block;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-ready {
  visibility: hidden;
}

.contact-form__input,
.contact-form__textarea {
  --accent: #5dd4ff;
  --danger: #fb5e54;
  --ink: 0;
  --glow: 0;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: calc(var(--ink) * 1%) 2px;
  box-shadow: 0 0 calc(14px * var(--glow)) rgba(93, 212, 255, 0.35);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: color-mix(in oklab, var(--accent) 70%, white 0%);
}

.contact-form__input.is-invalid,
.contact-form__textarea.is-invalid {
  border-color: var(--danger);
}

.our--product__container,
.our--product .swiper-slide {
  will-change: transform, opacity, filter;
}

/* preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #17274b;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__wrap {
  display: grid;
  gap: 16px;
  place-items: center;
  color: #ffffff;
}

.spinner {
  width: 72px;
  height: 72px;
  display: block;
}

.spinner__circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  cx: 24;
  cy: 24;
  r: 20;
}

@media (min-width: 946px) {
  .preloader__wrap {
    gap: 20px;
  }
}
.header {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 1.5em 0 0.56em;
  z-index: 1000;
  color: #FFFFFF;
  background: transparent;
}
@media (min-width: 850px) {
  .header {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
}
@media (min-width: 850px) {
  .header__inner {
    display: grid;
    grid-auto-rows: auto;
    align-items: center;
    width: 100%;
    grid-template-columns: 1fr auto 1fr;
    row-gap: 0;
    column-gap: clamp(16px, 3vw, 48px);
  }
}

.header__nav {
  display: contents;
}

.header__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2.5vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 850px) {
  .header__menu {
    gap: clamp(12px, 2vw, 24px);
  }
}

.header__menu--left {
  justify-self: center;
}
@media (min-width: 850px) {
  .header__menu--left {
    justify-self: end;
    justify-content: flex-end;
    grid-column: 1;
  }
}

.header__menu--right {
  justify-self: center;
}
@media (min-width: 850px) {
  .header__menu--right {
    justify-self: start;
    justify-content: flex-start;
    grid-column: 3;
  }
}

.header__link {
  display: inline-block;
  font-family: "Roboto", -apple-system, system-ui, "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.2;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header__link:hover, .header__link:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (min-width: 1150px) {
  .header__link {
    font-size: clamp(15px, 0.95vw, 18px);
  }
}

.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  grid-column: 1;
  text-decoration: none;
  outline: none;
  flex: 1;
}
@media (min-width: 850px) {
  .header__logo {
    grid-column: 2;
    flex: inherit;
  }
}

.header__logo-img {
  width: clamp(220px, 14vw, 180px);
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  pointer-events: none;
  user-select: none;
}
@media (min-width: 450px) {
  .header__logo-img {
    width: clamp(300px, 14vw, 180px);
  }
}
@media (min-width: 850px) {
  .header__logo-img {
    width: clamp(200px, 12vw, 200px);
  }
}
@media (min-width: 1440px) {
  .header__logo-img {
    width: clamp(300px, 12vw, 200px);
  }
}

.header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1px);
  z-index: 900;
  display: none;
}
.header__backdrop.is-visible {
  display: block;
}

@media (max-width: 359.98px) {
  .header {
    padding: 0.5em 0 0.4em;
  }
}
.header__menu--desktop {
  display: none;
}
@media (min-width: 849.98px) {
  .header__menu--desktop {
    display: flex;
  }
}

.header__nav--mobile {
  display: flex;
}
@media (min-width: 849.98px) {
  .header__nav--mobile {
    display: none;
  }
}

/* burger */
.header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 28px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 1100;
}
.header__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 850px) {
  .header__burger {
    display: none;
  }
}

@media (max-width: 849.98px) {
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    --clip-x: 100%;
    --clip-y: 0%;
    clip-path: circle(0 at var(--clip-x) var(--clip-y));
    transition: clip-path 0.5s ease;
    background: rgba(10, 35, 60, 0.35);
    backdrop-filter: blur(8px) saturate(120%);
  }
  @supports not (clip-path: circle(50% at 50% 50%)) {
    .header__nav {
      opacity: 0;
      transition: opacity 0.35s ease;
    }
  }
  .header__nav .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 1.1em;
    padding: 0;
    list-style: none;
    margin: 0 0 7em;
  }
}
@media (max-width: 849.98px) and (min-width: 500px) {
  .header__nav .header__menu {
    margin: 0 0 10em;
  }
}
@media (max-width: 849.98px) {
  .header__nav .header__item {
    opacity: 0;
    transform: translateY(8px);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .header__nav.is-open {
    clip-path: circle(150vmax at var(--clip-x) var(--clip-y));
  }
  @supports not (clip-path: circle(50% at 50% 50%)) {
    .header__nav.is-open {
      opacity: 1;
    }
  }
  .header__nav.is-open .header__item:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: none;
  }
  .header__nav.is-open .header__item:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none;
  }
  .header__nav.is-open .header__item:nth-child(3) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: none;
  }
  .header__nav.is-open .header__item:nth-child(4) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none;
  }
  .header__nav .header__logo {
    flex: none;
    margin-top: 1.6em;
    align-items: flex-start;
  }
}

@media (max-width: 849.98px) {
  .header__link {
    font-size: clamp(30px, 4.8vw, 22px);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #FFFFFF;
  }
  .header__link:focus-visible {
    outline: 2px dashed rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
  }
}
.header__burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.body-locked {
  overflow: hidden;
}

.header__veil {
  position: fixed;
  inset: 0;
  z-index: 1040;
  pointer-events: none;
  background: radial-gradient(1200px 800px at 70% 10%, rgba(255, 255, 255, 0.06), transparent 60%), radial-gradient(900px 700px at 20% 90%, rgba(255, 255, 255, 0.05), transparent 60%), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 4px);
}

@media (prefers-reduced-motion: reduce) {
  .header__nav {
    transition: none;
  }
  .header__item {
    transition: none;
  }
  .header__burger span {
    transition: none;
  }
}
/* animation */
.header__menu--desktop .header__link {
  position: relative;
  text-decoration: none;
}

.header__menu--desktop .header__link:hover::after,
.header__menu--desktop .header__link.is-active::after {
  left: 0;
  right: 0;
}

.header__menu--desktop .header__link:hover {
  color: inherit;
  filter: saturate(1.08);
}

.header__logo, .header__logo-img {
  opacity: 1 !important;
  visibility: visible !important;
}

.header {
  position: relative;
}

.header.is-scrolled {
  box-shadow: none;
}

.site-footer {
  position: relative;
  isolation: isolate;
  margin-top: clamp(56px, 9vw, 83px);
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__brand {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-77%);
  z-index: 1;
}
.site-footer__brand .site-footer__logo-img {
  display: block;
  width: clamp(84px, 10vw, 140px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

.site-footer__bar {
  background: rgba(7, 26, 41, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: saturate(120%) blur(1px);
  padding-block: clamp(14px, 2.6vw, 41px);
}

.site-footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 946px) {
  .site-footer__content {
    gap: 2.5em;
    text-align: left;
  }
}

.site-footer__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 14px);
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .site-footer__item {
    justify-content: flex-start;
    flex: 0 0 calc(33.333% - var(--gap) * 0.666);
    max-width: calc(33.333% - var(--gap) * 0.666);
  }
}

.site-footer__icon {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
  display: block;
  opacity: 0.95;
}

.site-footer__text {
  font: 400 clamp(14px, 1.4vw, 16px)/1.45 "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer__text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-footer__text a:last-child {
  margin-left: 0.4em;
}
@media (hover: hover) and (pointer: fine) {
  .site-footer__text a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
  }
}
.site-footer address.site-footer__text {
  font-style: normal;
}

/*# sourceMappingURL=main-page.css.map */
