/** Shopify CDN: Minification failed

Line 349:0 Expected "}" to go with "{"

**/
.footer__content-bottom-wrapper.page-width::before {
  content: "© 2024 Stravion — All rights reserved. | Thoughtfully crafted in the UK.";
  display: block;
  color: #999999;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.35px;
  opacity: 0.6;
  font-weight: 400;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
}
.footer__content-bottom-wrapper.page-width * {
  display: none !important;
}

.footer__content-bottom-wrapper.page-width:not(:first-of-type) {
  display: none !important;
}


.rte a {
  color: #ccc !important;
  text-decoration: none !important;
  text-underline-offset: 2px !important;
  text-decoration-thickness: 1px !important;
  transition: text-decoration 0.2s ease !important;
}

.rte a:hover {
  text-decoration: underline !important;
}

@media screen and (min-width: 768px) {
  .footer__blocks-wrapper .footer-block:nth-child(4) .rte p {
    margin-left: 40px !important;
  }

  .footer__blocks-wrapper .footer-block:nth-child(4) .footer-block__heading.inline-richtext {
    margin-left: 40px !important;
  }
}


.footer__blocks-wrapper > div:nth-child(4) .footer-block__details-content.rte p {
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.4;
}
.footer__blocks-wrapper > div:nth-child(4) .footer-block__details-content.rte p:first-of-type {
  margin-top: 0;
}

.footer__blocks-wrapper > div:nth-child(4) .footer-block__details-content.rte p:nth-of-type(2) {
  margin-top: 16px; /* можно варьировать: 8–12px */
}


@media screen and (max-width: 767px) {
  .footer__blocks-wrapper .footer-block:nth-child(4)::before {
    content: "";
    display: block;
    height: 1px;
    background-color: #ffffff33; /* полупрозрачный белый */
    margin: 24px 0; /* сверху и снизу отступы */
  }
}


@media screen and (max-width: 749px) {
  .footer__content-bottom-wrapper.page-width::before {
    margin-top: 20px;
  }
}



/* ---------- Layout ---------- */
.newsletter-luxe{
  max-width: 540px;
  margin: 0 auto 80px;
  text-align: center;
  color: #EAEAEA;
  font-family: 'Poppins', serif;
}

.newsletter-heading{
  font-size: 1.4rem;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  color: #FFFFFF;
}

.newsletter-tag{
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 2.5rem;
}

/* ---------- Form ---------- */
.newsletter-form{
  position: relative;
}

/* input — «невидимая» линия */
.newsletter-input{
  width: 100%;
  padding: 14px 52px 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #777;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  transition: border-color .4s ease, color .4s ease;
}
.newsletter-input::placeholder{
  color: #999;
  transition: color .4s ease;
}

/* фокус + hover */
.newsletter-input:focus{
  outline: none;
  /*border-color: #CACBCC;*/
  border-color: #1EAA32;
  color: #fff;
}
.newsletter-input:focus::placeholder{
  color: transparent;
}

/* ---------- Button ---------- */
.newsletter-btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(60%);
  background: none;
  border: none;
  /*color: #CACBCC;*/
  color: #1EAA32;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

.newsletter-input:focus + .newsletter-btn,
.newsletter-input:not(:placeholder-shown) + .newsletter-btn{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.newsletter-btn:hover{
  color: #65C178;
}

/* ---------- Small screens ---------- */
@media (max-width: 480px){
  .newsletter-luxe{ margin: 0 1.25rem 64px; }
}





/* === Desktop: делаем форму чуть шире и «тяжелее» === */
.newsletter-luxe {
  max-width: 540px;      /* вместо 540px */
  margin-bottom: 40px;  /* чуть больше отступ снизу */
  margin: 0 auto 60px;
}

.newsletter-heading{
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.newsletter-tag{
  font-size: 15px;
  opacity: .7;
  margin-bottom: 20px;
}

.newsletter-input {
  font-size: 1.1rem;               /* чуть крупнее текст */
  padding: 18px 72px 18px 0;       /* увеличиваем топ/боттом и правый отступ под кнопку */
  border-bottom-width: 2px;        /* чуть более заметная линия */
}

.newsletter-btn {
  font-size: 1.6rem;               /* увеличиваем стрелочку */
  padding: 0;                      /* убираем лишние внутренние отступы */
}

/* === Mobile: форма не на всю ширину экрана === */
@media (max-width: 768px) {
  .newsletter-luxe {
    max-width: 80%;       /* 90% ширины экрана */
    margin: 0 auto 60px;  /* центрируем с нижним отступом */
  }
  .newsletter-input {
    padding: 10px 16px 10px 8px; /* возвращаем чуть меньшие отступы */
    font-size: 1.3rem;
  }
  .newsletter-btn {
    font-size: 2rem;
    right: 8px;
    top: 45%;
    transform: translateY(-45%);
  }
}


/* === Жёсткая фиксация ширины на десктопе === */
@media (min-width: 769px) {
  /* 1) расширяем сам form */
  .newsletter-luxe .newsletter-form {
    width: 100% !important;
    max-width: 100% !important;
    /* если form — flex-item, включим флекс-рост */
    flex: 1 0 auto !important;
  }

  /* 2) делаем input «гибким» и учитываем паддинги */
  .newsletter-luxe .newsletter-form .newsletter-input {
    box-sizing: border-box !important;
    width: 100% !important;
  }
}



@media (min-width: 769px) {
  .newsletter-input {
    padding: 10px 32px 10px 16px;
  }
  .newsletter-btn {
    right: 16px;
  }
  .newsletter-input {
    font-size: 14px;
    box-sizing: border-box; 
}


.newsletter-luxe {
  margin-bottom: 40px !important;
}




.newsletter-input:focus {
  outline: none !important;                  /* сбрасываем обводку браузера */
  box-shadow: none !important;               /* убираем всякие тени */
}

.newsletter-input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* === Плавный Fade-In + подъём при загрузке страницы === */
.newsletter-luxe {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.link link--text list-menu__item list-menu__item--link {
  padding-bottom: 0 !important;
}



    .footer-block__details-content .link {
        color: #ccc !important;
        /*text-decoration: none !important;*/
        text-decoration: underline !important;
        text-underline-offset: 2px !important;
        text-decoration-thickness: 1px !important;
        text-decoration-color: transparent !important; 
        transition: text-decoration-color 0.3s ease, color 0.2s ease !important;
}

    .footer-block__details-content .link:hover,
    .footer-block__details-content .link:focus,
    .footer-block__details-content .link:active,
    .footer-block__details-content .link:focus-visible {
        text-decoration: underline !important;
        color: #3CB371 !important;
        /*text-decoration: none !important;*/
        text-decoration-color: #3CB371 !important;
    }


/*
    .rte a {
        color: #ccc !important;
        text-decoration: underline !important;
        text-underline-offset: 2px !important;
        text-decoration-thickness: 1px !important;
        text-decoration-color: transparent !important; 
        transition: text-decoration-color 0.0s ease, color 0.0s ease !important;
}

    .rte a:hover {
        text-decoration: underline !important;
        color: #3CB371 !important;
        /text-decoration: none !important;/
        text-decoration-color: #3CB371 !important;
}

*/















