/* Базовые сбросы */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  background: #f6f8fd;
  color: #23234a;
  min-height: 100vh;
}

/* Контейнер */
.wq-container-l3 { min-height: 100vh; display: flex; flex-direction: column; }

/* Хедер и навигация */
.wq-header-t9 {
  background: #183364;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(25,42,82,0.11);
  position: sticky;
  top: 0;
  z-index: 100;
}
.wq-flexbox-u4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  position: relative;
}
.wq-brand-m5 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffe49c;
}
.wq-burger-a2 {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 34px;
  height: 29px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  justify-content: center;
  align-items: flex-end;
}
.wq-burger-a2 span {
  display: block;
  width: 100%;
  height: 4px;
  background: #ffe49c;
  border-radius: 2px;
  transition: all 0.25s;
}
.wq-navigation-k8 {
  display: flex;
  gap: 32px;
  align-items: center;
  transition: right 0.22s;
}
.wq-navigation-k8 a {
  color: #e0e8fb;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.15s;
}
.wq-navigation-k8 a:hover { color: #ffcb40; }

/* Мобильное меню */
@media (max-width: 900px) {
  .wq-burger-a2 { display: flex; }
  .wq-navigation-k8 {
    position: fixed;
    right: -110vw;
    top: 0;
    flex-direction: column;
    background: #183364;
    height: 100vh;
    width: 75vw;
    max-width: 320px;
    box-shadow: -2px 0 18px #18202e44;
    padding: 70px 24px 24px 24px;
    gap: 22px;
    align-items: flex-start;
    z-index: 101;
    transition: right 0.28s cubic-bezier(.5,.6,.19,.95);
  }
  .wq-navigation-k8.active { right: 0; }
  .wq-flexbox-u4 { padding: 16px 10px; }
}

/* Витрина и блоки */
.wq-showcase-e1 { background: #fff; padding: 45px 0 24px; }
.wq-row-p2 {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}
.wq-row-p2.wq-reverse-j1 { flex-direction: row-reverse; }
.wq-product-image-g7 img {
  max-width: 350px;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(28,54,105,0.11);
  display: block;
}
.wq-product-desc-b4 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 14px;
}
.wq-headline-v6 {
  font-size: 2rem;
  color: #294d8a;
  font-weight: 900;
  margin-bottom: 7px;
}
.wq-list-r9 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wq-list-r9 li {
  margin-bottom: 7px;
  color: #34406a;
  font-size: 1.06rem;
}

/* Блок заказа */
.wq-order-n4 {
  background: linear-gradient(90deg, #ffa928 60%, #ffd13e 100%);
  padding: 42px 0 50px;
}
.wq-centerbox-y5 { text-align: center; }
.wq-order-title-l1 {
  font-size: 1.7rem;
  color: #273059;
  margin-bottom: 8px;
}
.wq-price-c7 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #273059;
  margin-bottom: 18px;
}
.wq-btn-x9 {
  background: #273059;
  color: #fffbe5;
  border: none;
  border-radius: 23px;
  padding: 12px 38px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  box-shadow: 0 1px 8px #3a384a1c;
}
.wq-btn-x9:hover { background: #ffa928; color: #23234a; }

/* Футер */
.wq-footer-s2 {
  background: #23234a;
  padding: 25px 0;
  margin-top: auto;
}
.wq-footcontent-c2 {
  color: #fffbe5;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.4px;
}

/* Модальное окно */
.wq-modal-overlay-z3 {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,37,78,0.93);
  justify-content: center;
  align-items: center;
  transition: opacity 0.19s;
}
.wq-modal-overlay-z3.active { display: flex; }
.wq-modal-content-k7 {
  background: #fff;
  padding: 40px 27px 28px;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 6px 30px rgba(36,59,120,.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wq-modal-close-m2 {
  position: absolute;
  right: 15px;
  top: 13px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.wq-modal-close-m2:before, .wq-modal-close-m2:after {
  content: "";
  position: absolute;
  left: 11px; top: 2px;
  width: 2px; height: 20px;
  background: #d5a342;
}
.wq-modal-close-m2:before { transform: rotate(45deg);}
.wq-modal-close-m2:after { transform: rotate(-45deg);}
.wq-form-h6 { display: flex; flex-direction: column; gap: 10px; }
.wq-form-h6 label { color: #233564; font-weight: 600; }
.wq-input-f4 {
  padding: 8px 13px;
  border: 1px solid #dadada;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 2px;
}
.wq-form-success-x1 {
  display: none;
  color: #31b779;
  background: #e4fbe8;
  border-radius: 7px;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  margin-top: 10px;
}
.wq-form-h6.success ~ .wq-form-success-x1 { display: block; }

/* Consent (cookie) */
#wq-consent-popup {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #23234a;
  color: #fffbe5;
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 21px 13px;
  box-shadow: 0 -4px 18px #27305933;
}
#wq-consent-popup[style*="flex"] { display: flex !important; }
#wq-consent-message {
  max-width: 680px;
  margin: 0 auto 8px;
  font-size: 1rem;
}
#wq-consent-message a {
  color: #ffd13e;
  text-decoration: underline;
}
#wq-consent-settings {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 10px;
}
.wq-switch-i {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wq-switch-i span {
  flex: 1;
  font-size: 0.97rem;
}
.wq-consent-btns {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 6px;
}
.wq-cb-btn {
  background: #ffcb40;
  color: #23234a;
  border: none;
  border-radius: 8px;
  padding: 8px 17px;
  font-weight: bold;
  cursor: pointer;
  margin: 2px 3px;
  transition: background 0.15s, color 0.15s;
}
.wq-cb-btn:hover { background: #ffa928; color: #fffbe5; }

/* Адаптив */
@media (max-width: 900px) {
  .wq-row-p2, .wq-row-p2.wq-reverse-j1 { flex-direction: column; gap: 29px; }
  .wq-product-image-g7 img { max-width: 94vw; }
  .wq-flexbox-u4 { flex-direction: row; padding: 10px 5vw; }
  .wq-modal-content-k7 { padding: 18px 4vw; }
  .wq-navigation-k8.active { box-shadow: -2px 0 38px #23234a55; }
}
@media (max-width: 600px) {
  .wq-headline-v6, .wq-order-title-l1, .wq-price-c7, .wq-footcontent-c2,
  #wq-consent-message { font-size: 1rem; }
  .wq-showcase-e1, .wq-order-n4 { padding: 16px 0 10px; }
}
