/* VIP Base Styles - Common layout (reset, header, nav, footer, container) */
/* Extracted from main page CSS for VIP pages that don't load the bundled CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* === Box Sizing === */
*, *::before, *::after {
  box-sizing: border-box;
}

/* === CSS Reset === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* === Normalize === */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
main {
  display: block;
  min-height: 65vh;
}
a {
  background-color: transparent;
  text-decoration: none;
}
b, strong {
  font-weight: bolder;
}
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;
}
[hidden] {
  display: none;
}

/* === Body hidden (mobile nav open) === */
body.hidden {
  overflow: hidden;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* === Subheader === */
.subheader-soc {
  background: var(--color-teal-light, #c44547);
}
.subheader-soc_cont {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 42px;
}
.subheader-soc_phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: var(--color-text-primary, #1A2332);
}
.subheader-soc_itm {
  display: flex;
  align-items: center;
  justify-content: center;
}
.subheader-soc_cont a {
  color: var(--color-text-primary, #1A2332);
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: underline;
}
.subheader-soc_cont a.email__line {
  text-decoration: none;
}
.subheader-soc_cont a:hover {
  opacity: 0.6;
}
.subheader-soc_cont img {
  margin-right: 7px;
  height: 15px;
  width: auto;
}

/* === Header === */
.header-section {
  background: #ffffff;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.header-topbar {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-logo {
  cursor: pointer;
}
.header-logo img,
.header-logo {
  max-width: 150px;
}
.header-burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header-burger-menu span {
  background: var(--color-primary, #a42b2d);
  width: 30px;
  height: 2px;
  display: block;
}
.header-burger-menu span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}
.header-cart {
  display: block;
  margin-left: auto;
  position: relative;
  width: 25px;
  height: 20px;
}
.header-cart img {
  width: 25px;
  height: 25px;
}
.header-cart__quantity {
  background: #8b8b8b;
  position: absolute;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: -5px;
  right: -5px;
}

/* === Navigation === */
.header-navigations {
  margin-left: 30px;
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.header-navigations a {
  color: var(--color-teal, #a42b2d);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 3px;
  transition: 0.2s;
  white-space: nowrap;
}
.header-navigations a:hover,
.header-navigations a.active {
  color: #a42b2d;
}
.header-navigations__close {
  display: none;
}

/* === Footer === */
footer {
  background: var(--color-text-primary, #1A2332);
  color: #cbd5e1;
}
footer .phone__line {
  text-decoration: underline;
  position: relative;
  color: #cbd5e1;
  margin-right: 20px;
  display: inline-block;
}
footer .phone__line:hover {
  opacity: 0.6;
}
footer .phone__line:after {
  cursor: auto;
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  right: -10px;
  background-color: rgba(255, 255, 255, 0.2);
}
footer .phone__line:last-child:after {
  display: none;
}
.footer-container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-topbar__title {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 10px;
}
.footer-topbar__info-box {
  align-items: center;
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  padding-bottom: 7px;
}
.footer-topbar__info-box svg {
  width: 16px;
  float: left;
  position: relative;
  bottom: -3px;
}
.footer-topbar__info-box svg path {
  fill: var(--color-teal-light, #c44547) !important;
}
.footer-topbar__info-box p {
  padding-left: 25px;
}
.footer-topbar__form {
  width: 40%;
}
.ft-form__text {
  font-size: 16px;
  color: #94a3b8;
  line-height: 19px;
}
.ft-form {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.ft-form__input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 15px;
  width: 75%;
}
.ft-form__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.ft-form__button {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 79.5%;
  border-radius: 10px;
  background: #a42b2d;
  padding: 10px 15px;
  border: none;
  width: 24%;
  transition: 0.2s;
  cursor: pointer;
}
.ft-form__button:hover {
  background: #8a2224;
}
.footer-lowbar {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-navigation a {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 400;
  line-height: 79.5%;
  margin-right: 15px;
  transition: 0.2s;
  text-decoration: none;
}
.footer-navigation a:hover {
  color: var(--color-teal-light, #c44547);
}
.footer-cards {
  display: flex;
  align-items: center;
}
.footer-cards img {
  margin-left: 3px;
  margin-right: 3px;
}
.copyright {
  font-size: 14px;
  color: #c4c4c4;
  margin-top: 15px;
}
.footer_phone {
  color: #cbd5e1;
}

/* === Responsive === */
@media screen and (max-width: 880px) {
  .subheader-soc_cont {
    height: auto;
  }
  .subheader-soc {
    padding: 12px 0;
  }
  .subheader-soc_phone {
    gap: 0;
    flex-direction: column;
    border-right: 1px solid var(--color-text-tertiary, #718096);
    padding-right: 10px;
    margin-right: 10px;
    align-items: flex-start;
  }
  .subheader-soc_cont {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .header-burger-menu {
    display: block;
    padding: 0;
  }
  .header-topbar {
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-cart {
    margin-left: 0;
    margin-right: 5px;
  }
  .header-logo img {
    width: 200px;
  }
  .header-logo {
    position: relative;
    top: 2px;
  }
  .header-navigations {
    position: fixed;
    margin-left: 0;
    background: #fff;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
  }
  .header-navigations.active {
    display: flex;
  }
  .header-navigations a {
    display: block;
    text-align: center;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #a42b2d;
    width: 50%;
  }
  .header-navigations a:last-child {
    border-bottom: 0;
  }
  .header-navigations__close {
    display: flex;
    background: #a42b2d;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: none;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
  }
  .footer-lowbar {
    flex-direction: column;
    margin-top: 30px;
  }
  .footer-navigation {
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-navigation a {
    margin: 0;
    padding: 10px;
  }
  .footer-topbar {
    flex-direction: column;
  }
  .footer-topbar__form,
  .footer-topbar__info {
    width: 100%;
  }
  .footer-topbar__form {
    margin-top: 30px;
  }
  .ft-form__input {
    width: 100%;
  }
  .ft-form {
    flex-direction: column;
  }
  .ft-form__button {
    margin-left: 0;
    width: 10%;
  }
}
