@charset "UTF-8";
:root {
  --blue: #00338E;
  --white: #ffffff;
  --font-heading: 'Odds';
  --font-subheading: 'Iskra';
}

@font-face {
  font-family: "Odds";
  src: url("/assets/fonts/Odds/Odds-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Iskra";
  src: url("/assets/fonts/Iskra/iskra_medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SoftClubHelvetica";
  src: url("/assets/fonts/SoftClubHelvetica/softclubhelvetica.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: url("../imgs//background_main.png") center/cover no-repeat;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.main {
  flex: 1 0 auto;
}

/* Components */
.language {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 800;
  background: rgba(2, 20, 60, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.language.show {
  display: flex;
}
.language__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 36px 36px;
  width: min(500px, 92vw);
  box-shadow: 0 48px 120px rgba(0, 51, 142, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: lang-card-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.language__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #00338E;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}
.language__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.language__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 2px solid #dce8f8;
  border-radius: 14px;
  text-decoration: none;
  color: #00338E;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease,
              color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.language__item:hover {
  border-color: #00338E;
  background: #eef4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 51, 142, 0.12);
}
.language__item.active {
  border-color: #00338E;
  background: #00338E;
  color: #ffffff;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 51, 142, 0.3);
}
.language__item.active .language__item-code {
  opacity: 0.6;
}
.language__item-name {
  font-size: 14px;
}
.language__item-code {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.45;
}
@keyframes lang-card-in {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.header {
  padding: 15px 100px;
  --header-background: rgba(255, 255, 255, 0.3);
  --header-link-color: var(--blue);
}
.header__container {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--header-background);
  border-radius: 100px;
}
.header__logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 84px;
  transform: translate(-25%, -50%);
}
.header__nav {
  display: flex;
}
.header__link {
  color: var(--header-link-color);
  font-weight: bold;
  text-decoration: none;
}
.header__language {
  position: absolute;
  right: 5%;
  translate: 5% 0;
  width: 32px;
  height: 80%;
  background: url(/assets/imgs/header/language.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
}

.hero {
  --hero-title-font-family: var(--font-heading);
  --hero-title-color: var(--blue);
  --hero-title-font-size: 6vw;
  position: relative;
}
.hero__background {
  width: 100%;
  display: block;
}
.hero__background.mobile {
  display: none;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13vw 0 0 5vw;
}
.hero__title {
  font-family: var(--hero-title-font-family);
  font-size: var(--hero-title-font-size);
  line-height: 1;
  color: var(--hero-title-color);
  text-shadow: 0.3vw 0.3vw 0 white, -0.3vw 0.3vw 0 white, 0.3vw -0.3vw 0 white, -0.3vw -0.3vw 0 white;
}

.promo {
  --promo-title-font-family: var(--font-heading);
  --promo-title-font-color: var(--blue);
  --promo-title-font-size: 5vw;
  height: 60vw;
  position: relative;
}
.promo__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo__title {
  color: var(--promo-title-font-color);
  font-family: var(--promo-title-font-family);
  font-size: var(--promo-title-font-size);
  line-height: 120%;
  z-index: 3;
  text-shadow: 0.3vw 0.3vw 0 white, -0.3vw 0.3vw 0 white, 0.3vw -0.3vw 0 white, -0.3vw -0.3vw 0 white;
  text-align: center;
}
.promo__decor {
  position: absolute;
  z-index: 2;
  width: 25%;
}
.promo__decor--eggs {
  bottom: -5%;
  left: 0;
}
.promo__decor--milk {
  top: -5%;
  left: 0;
}
.promo__decor--flour {
  right: 0;
  bottom: 0;
}
.promo__decor--chocolate {
  width: 20%;
  right: 5%;
  top: 0;
  translate: -5% 0;
}
.promo__decor--wheat {
  right: -5%;
  translate: 5% 0;
}
.promo__decor--line {
  width: 100%;
  bottom: 20%;
  z-index: 1;
}
.promo__decor--light {
  width: 100%;
  z-index: 1;
}

.flavors {
  --flavors-title-font-family: var(--font-heading);
  --flavors-title-font-color: var(--blue);
  --flavors-title-font-size: 5vw;
  --flavors-description-font-family: var(--font-subheading);
  --flavors-description-font-color: var(--blue);
  --flavors-description-font-size: 2vw;
  --flavor-name-font-family: var(--font-subheading);
  --flavor-name-font-color: var(--blue);
  --flavor-name-font-size: 1.5vw;
  position: relative;
}
.flavors__container {
  position: relative;
}
.flavors__background {
  width: 100%;
}
.flavors__content {
  position: absolute;
  top: 15%;
  left: 10%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.flavors__title {
  color: var(--flavors-title-font-color);
  font-family: var(--flavors-title-font-family);
  font-size: var(--flavors-title-font-size);
  line-height: 120%;
  text-wrap: nowrap;
}
.flavors__description {
  color: var(--flavors-description-font-color);
  font-family: var(--flavors-description-font-family);
  font-size: var(--flavors-description-font-size);
  line-height: 150%;
  text-wrap: nowrap;
}
.flavors__slider {
  position: absolute;
  bottom: 10%;
  width: 100%;
  height: 50%;
}
.flavors__slider__viewport {
  height: 100%;
  overflow: hidden;
}
.flavors__slider__track {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
  cursor: grab;
  padding: 0 20px;
  -webkit-user-drag: none;
}
.flavors__slider__card {
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3vw;
  position: relative;
  min-width: calc(33.3333333333% - 10px);
  flex: 1 1 30%;
  transform: translateZ(0);
}
.flavors__slider__card:hover .flavor__item__decor {
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.flavor__image {
  position: relative;
  display: block;
  width: 80%;
  z-index: 5;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.flavor__name {
  color: var(--flavor-name-font-color);
  font-family: var(--flavor-name-font-family);
  font-size: var(--flavor-name-font-size);
  text-align: center;
  z-index: 6;
  text-wrap: nowrap;
}
.flavor__item__decor {
  position: absolute;
  width: 100%;
  top: 30%;
  left: 50%;
  z-index: 1;
  transition: 0.5s;
  display: block;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.flavor__item__decor:nth-child(1) {
  transition-delay: 0.04s;
  transform: translate(-50%, -50%) scale(0) rotate(18deg);
}
.flavor__item__decor:nth-child(2) {
  transition-delay: 0.08s;
  transform: translate(-50%, -50%) scale(0) rotate(21deg);
}
.flavor__item__decor:nth-child(3) {
  transition-delay: 0.12s;
  transform: translate(-50%, -50%) scale(0) rotate(24deg);
}
.flavor__item__decor:nth-child(4) {
  transition-delay: 0.16s;
  transform: translate(-50%, -50%) scale(0) rotate(27deg);
}
.flavor__item__decor:nth-child(5) {
  transition-delay: 0.2s;
  transform: translate(-50%, -50%) scale(0) rotate(30deg);
}
.flavor__item__decor:nth-child(6) {
  transition-delay: 0.24s;
  transform: translate(-50%, -50%) scale(0) rotate(33deg);
}
.flavor__item__decor:nth-child(7) {
  transition-delay: 0.28s;
  transform: translate(-50%, -50%) scale(0) rotate(36deg);
}
.flavor__item__decor:nth-child(8) {
  transition-delay: 0.32s;
  transform: translate(-50%, -50%) scale(0) rotate(39deg);
}
.flavor__item__decor:nth-child(9) {
  transition-delay: 0.36s;
  transform: translate(-50%, -50%) scale(0) rotate(42deg);
}
.flavor__item__decor:nth-child(10) {
  transition-delay: 0.4s;
  transform: translate(-50%, -50%) scale(0) rotate(45deg);
}
.flavor__item__decor:nth-child(11) {
  transition-delay: 0.44s;
  transform: translate(-50%, -50%) scale(0) rotate(48deg);
}

.creative {
  --creative-title-font: var(--font-heading);
  --creative-title-font-color: var(--blue);
  --creative-description-font: var(--font-subheading);
  --creative-description-font-color: var(--blue);
  --creative-button-color: var(--blue);
  --creative-button-color-hover: #022C79FF;
  --creative-button-font-color: var(--white);
  --creative-button-font: var(--font-base);
}
.creative__container {
  position: relative;
}
.creative__background {
  width: 100%;
}
.creative__content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.creative__title {
  color: var(--creative-title-font-color);
  font-family: var(--creative-title-font);
  text-align: center;
  font-size: 4vw;
  text-shadow: 0.3vw 0.3vw 0 white, -0.3vw 0.3vw 0 white, 0.3vw -0.3vw 0 white, -0.3vw -0.3vw 0 white;
  text-wrap: nowrap;
}
.creative__description {
  color: var(--creative-description-font-color);
  font-family: var(--creative-description-font);
  text-align: center;
  font-size: 2vw;
  text-wrap: nowrap;
}
.creative__button {
  color: var(--creative-button-font-color);
  background-color: var(--creative-button-color);
  font-family: var(--creative-button-font);
  text-decoration: none;
  padding: 2vw 5vw;
  border-radius: 50px;
  cursor: pointer;
  font-size: 2vw;
  text-wrap: nowrap;
}
.creative__button:hover {
  background-color: var(--creative-button-color-hover);
}

.cookie-page__content {
  padding: 20px;
  background: white;
  color: var(--blue);
  font-family: var(--font-subheading);
}
.cookie-page__content h2 {
  margin-bottom: 20px;
}
.cookie-page__content .ot-sdk-show-settings {
  margin-top: 20px;
}
.cookie-page__content .ot-sdk-cookie-policy th, .cookie-page__content .ot-sdk-cookie-policy td, .cookie-page__content .ot-sdk-cookie-policy p, .cookie-page__content .ot-sdk-cookie-policy span, .cookie-page__content .ot-sdk-cookie-policy a {
  color: rgba(0, 51, 142, 0.8039215686) !important;
}
.cookie-page__content .ot-sdk-cookie-policy-group {
  color: rgba(0, 51, 142, 0.8039215686) !important;
}

.footer {
  --footer-background: var(--blue);
  --footer-company-color: rgba(255, 255, 255, 0.5);
  --footer-link-color: var(--white);
  flex-shrink: 0;
  background: var(--footer-background);
}
.footer__container {
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.footer__info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
  text-align: center;
}
.footer__company {
  color: var(--footer-company-color);
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--footer-link-color);
  text-decoration: none;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo img {
  width: 50%;
}

.admin-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 25%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", -apple-system, sans-serif;
}
.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}
.admin-sidebar::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 10px;
}
.admin-sidebar h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}
.admin-sidebar form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.admin-sidebar .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-sidebar .field-group label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-sidebar textarea, .admin-sidebar input[type=text] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #f9f9f9;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}
.admin-sidebar textarea:focus, .admin-sidebar input[type=text]:focus {
  background: #fff;
  border-color: #ff9800;
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.15);
}
.admin-sidebar textarea {
  height: 100px;
  line-height: 1.5;
  resize: none;
}
.admin-sidebar textarea::-webkit-scrollbar {
  background: transparent;
}
.admin-sidebar .list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fdfdfd;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed #dcdcdc;
}
.admin-sidebar .list-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.admin-sidebar .list-item:hover {
  border-color: #ff9800;
}
.admin-sidebar button {
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: none;
}
.admin-sidebar .save-btn {
  background: #1a1a1a;
  color: white;
  padding: 14px;
  font-size: 16px;
  margin-top: 20px;
}
.admin-sidebar .save-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.admin-sidebar .save-btn:active {
  transform: translateY(0);
}
.admin-sidebar .field-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  background: #fff8f0;
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  margin-top: 8px;
}
.admin-sidebar .field-styles div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 70px;
}
.admin-sidebar .field-styles div span {
  font-size: 10px;
  font-weight: 700;
  color: #b58133;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.admin-sidebar .field-styles div input[type=text] {
  height: 32px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #ffcc80;
}
.admin-sidebar .field-styles div input[type=text]:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}
.admin-sidebar .field-styles div input[type=text]::placeholder {
  color: #ccc;
  font-size: 11px;
}
.admin-sidebar button[type=button]:not(.save-btn) {
  background: #f0f0f0;
  color: #444;
  padding: 10px;
  font-size: 13px;
}
.admin-sidebar button[type=button]:not(.save-btn):hover {
  background: #e4e4e4;
  color: #000;
}
.admin-sidebar .image-upload-wrapper {
  position: relative;
  width: 80%;
  line-height: 0;
}
.admin-sidebar .image-upload-wrapper .image-preview {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #fdfdfd;
  border: 2px dashed #e0e0e0;
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}
.admin-sidebar .image-upload-wrapper .image-preview:hover {
  border-color: #ff9800;
  background: #fff8f0;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.1);
}
.admin-sidebar .image-upload-wrapper .image-preview:active {
  transform: scale(0.98);
}
.admin-sidebar .image-upload-wrapper::after {
  content: "✎";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: #ff9800;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.admin-sidebar .image-upload-wrapper:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.admin-sidebar .field-group .image-upload-wrapper {
  margin-top: 4px;
}
.admin-sidebar-content {
  height: 100%;
  overflow-y: auto;
  padding: 24px;
}
.admin-sidebar-content::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
.admin-sidebar-content::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}
.admin-sidebar .toggle-sidebar-btn {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%) translateY(0%);
  width: 48px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-right: none;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ff9800;
  font-size: 18px;
  transition: all 0.3s ease;
}
.admin-sidebar .toggle-sidebar-btn:hover {
  background: #fdfdfd;
  color: #333;
  padding-right: 5px;
}

body.sidebar-hidden .admin-sidebar {
  right: -25%;
}
body.sidebar-hidden #page-content {
  width: 100%;
  zoom: 1;
}

#page-content {
  width: 75%;
  zoom: 0.75;
  transition: all 0.3s ease;
}

/* Layout */
@media (max-width: 1024px) {
  .language__grid {
    grid-template-columns: 1fr;
  }
  .header {
    padding: 15px 50px;
  }
  .hero__background {
    display: none;
  }
  .hero__background.mobile {
    display: block;
  }
  .hero__title {
    font-size: calc(var(--hero-title-font-size) * 1.5);
  }
  .promo {
    height: 100vw;
  }
  .promo__title {
    font-size: calc(var(--promo-title-font-size) * 1.5);
  }
  .promo__decor {
    width: 35%;
  }
  .promo__decor--chocolate {
    right: -5%;
    translate: 5% 0;
  }
  .promo__decor--flour {
    right: -5%;
  }
  .promo__decor--wheat {
    bottom: -13%;
    right: -7%;
    translate: 5% 5%;
  }
  .promo__decor--line {
    width: 100%;
    bottom: 50%;
    translate: 0 50%;
  }
  .promo__decor--light {
    width: 100%;
  }
  .flavors__container {
    display: flex;
    justify-content: center;
  }
  .flavors__content {
    left: 0;
  }
  .flavors__background {
    width: 200%;
  }
  .flavors__title {
    font-size: calc(var(--flavors-title-font-size) * 1.4);
    text-align: center;
  }
  .flavors__description {
    font-size: calc(var(--flavors-description-font-size) * 2);
    text-align: center;
    text-wrap: wrap;
    margin: 0 10px;
  }
  .flavors__slider__card {
    min-width: calc(100% - 10px);
    flex: 1 1 90%;
  }
  .flavors__slider__card:hover .flavor__item__decor {
    transform: translate(-50%, -50%) scale(0.8) rotate(0);
  }
  .flavors .flavor__item__decor {
    top: 35%;
  }
  .flavors .flavor__name {
    font-size: calc(var(--flavor-name-font-size) * 3);
  }
  .footer__info {
    flex-direction: column;
    gap: 30px;
  }
  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
