*,
::after,
::before,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 17px;
  line-height: normal;
  font-family:
    open sans,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.blue-link {
  color: #1a0dab;
  font-weight: 700;
  text-decoration: underline;
}
.blue-link:hover {
  text-decoration: none;
}
.container {
  max-width: 1190px;
  margin: 0 auto;
}
.figure {
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: center;
}
.figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
h1 {
  font-size: 39px;
  line-height: 1.2;
  margin-bottom: 20px;
}
h2 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.breadcrumbs {
  color: red;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px 0;
}
.header {
  display: flex;
}
.header > div {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
}
.header ul {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
@keyframes wipe-in-down {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
.wipe-in-down {
  animation: 0.3s cubic-bezier(0.25, 1, 0.3, 1) wipe-in-down both;
}
.menu ul {
  display: flex;
  align-items: center;
}
.menu ul li {
  position: relative;
  transition: all 0.1s ease-out;
}
.menu ul li > .bg-link {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.menu ul li a {
  z-index: 999;
  position: relative;
  padding: 20px 15px;
  display: block;
  font-family: merriweather, serif;
  font-size: 16px;
  font-weight: 700;
}
.menu ul li:hover {
  color: #d33;
}
.menu ul li:hover .bg-link {
  display: block;
}
.menu ul li:hover svg path {
  fill: #d33;
}
.main {
  padding: 0 30px 30px;
  background: #fff;
  color: #0c1521;
  font-size: 17px;
  line-height: 1.4;
}
.main p {
  margin-bottom: 20px;
}

.zodiac-signs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.zodiac-signs li a {
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  border-radius: 5px;
  font-weight: 700;
  row-gap: 10px;
  text-align: center;
  transition: all 0.2s ease-out;
}
.zodiac-signs li a img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
#aries img {
  width: 88px;
  height: 50px;
}
#taurus img {
  width: 58px;
  height: 58px;
}
#gemini img {
  width: 92px;
  height: 41px;
}
#cancer img {
  width: 58px;
  height: 58px;
}
#leo img {
  width: 58px;
  height: 58px;
}
#vigro img {
  width: 92px;
  height: 52px;
}
#libra img {
  width: 88px;
  height: 44px;
}
#scorpio img {
  width: 84px;
  height: 47px;
}
.zodiac-signs li a:hover {
  box-shadow: 0 0 10px #ccc;
}
.promo-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.promo-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.promo-popup__dialog {
  position: relative;
  width: min(100%, 360px);
  padding: 28px 24px 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.promo-popup.is-open .promo-popup__backdrop {
  opacity: 1;
}
.promo-popup.is-open .promo-popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.promo-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #333;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.promo-popup__eyebrow {
  margin-bottom: 8px;
  color: #cf1925;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-popup__title {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.15;
}
.promo-popup__code-label {
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
}
.promo-popup__code {
  width: 100%;
  padding: 14px 18px;
  border: 1px dashed #cf1925;
  border-radius: 14px;
  background: #fff5f6;
  color: #cf1925;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.promo-popup__hint {
  margin-top: 12px;
  color: #666;
  font-size: 13px;
}
.right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  font-size: 16px;
}
.right-column b {
  width: 100%;
  display: block;
  font-size: 20px;
  border-bottom: 2px solid #ccc;
  text-align: center;
}
.right-column img {
  display: block;
  width: 100%;
}
.comments {
  margin-top: 50px;
}
.comments h2 {
  font-size: 27px;
  margin-bottom: 30px;
}
.comment-item {
  display: grid;
  grid-template-columns: 70px auto;
  grid-column-gap: 15px;
  margin-bottom: 35px;
}
.comment-item p {
  margin-bottom: 10px;
}
.comment-item .avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-item .info .name {
  display: block;
  margin-bottom: 5px;
}
.comment-item .info img {
  width: 100%;
  height: auto;
  max-width: 400px;
}
.faq-section {
  margin-top: 48px;
}
.faq__spollers {
  max-width: 860px;
  margin: 0 auto;
}
.faq-section .spollers__item {
  overflow: hidden;
  border: 1px solid #ded8cf;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf9 0%, #f4f0e8 100%);
  box-shadow: 0 18px 40px rgba(134, 126, 110, 0.1);
}
.faq-section .spollers__item[open] {
  border-color: #d1c9bc;
  box-shadow: 0 22px 48px rgba(134, 126, 110, 0.14);
}
.faq-section .spollers__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  color: #49433b;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.faq-section .spollers__title::-webkit-details-marker {
  display: none;
}
.faq-section .spollers__title:hover {
  background: rgba(255, 255, 255, 0.45);
}
.faq-section .spollers__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d5cec2;
  border-radius: 50%;
  background: linear-gradient(180deg, #8f8577 0%, #756c60 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
.faq-section .spollers__button svg {
  display: block;
}
.faq-section .spollers__item:not([open]) .spollers__body {
  display: none;
}
.faq-section .spollers__body {
  padding: 0 28px 28px;
  color: #615a50;
  font-size: 16px;
  line-height: 1.8;
}
.faq-section .spollers__item[open] .spollers__title {
  color: #2f2a24;
}
.faq-section .spollers__item[open] .spollers__button {
  transform: rotate(180deg);
  background: linear-gradient(180deg, #7f766a 0%, #655d52 100%);
  border-color: #c7beae;
}
.footer {
  padding: 0 40px 20px;
  font-size: 15px;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
}
.footer-top > div:nth-child(2),
.footer-top > div:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-menu-title {
  font-weight: 700;

  display: block;
  font-size: 16px;
}
.footer-top .socials {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.footer-top .socials img {
  display: block;
}
.footer-top div:first-child {
  margin-right: 130px;
}
.footer-nav {
  display: flex;
  align-items: start;
  flex-direction: column;
  row-gap: 10px;
}
.footer-nav li a {
  transition: all 0.3s ease-out;
}
.footer-nav li a:hover {
  margin-left: 5px;
  color: #cf1925;
}
#second-page {
  font-size: 19px;
  line-height: 1.4;
  display: none;
}
#second-page .red {
  color: red;
}
#second-page .figure {
  max-width: 500px;
}
.second-page-title {
  font-size: 22px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}
.second-page-title img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto 20px;
}
.second-page-title .second-page-sign {
  color: red;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  font-size: 26px;
  display: block;
  text-transform: uppercase;
}
.product-img img {
  display: block;
  width: 100%;
}
.product-img {
  max-width: 400px;
  margin: 30px auto;
}
.blue-link {
  color: #1a0dab;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #1a0dab;
}
.blue-link:hover {
  border-bottom: none;
}
@media (max-width: 1100px) {
  .zodiac-signs {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-top div:first-child {
    margin-right: 100px;
  }
  .breadcrumbs {
    margin: 10px 0;
  }
  .header ul {
    grid-template-columns: repeat(5, 1fr);
  }

  h1 {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .right-column {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
  }
  .right-column img {
    max-width: 300px;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-top div:first-child {
    margin-right: 50px;
  }
  .menu ul {
    justify-content: center;
  }
  .breadcrumbs {
    display: none;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
  }
  .header .line {
    display: none;
  }
  .header > div {
    flex-direction: column;
    text-align: center;
    row-gap: 10px;
  }
  nav.menu {
    display: none;
  }
  .main {
    padding: 20px 10px;
  }
  .zodiac-signs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .zodiac-signs li a {
    padding: 10px;
  }
  .promo-popup__dialog {
    width: min(100%, 320px);
    padding: 24px 18px 20px;
  }
  .promo-popup__title {
    font-size: 24px;
  }
  .promo-popup__code {
    font-size: 24px;
  }
  .faq-section {
    margin-top: 36px;
  }
  .faq-section .spollers__item {
    border-radius: 22px;
  }
  .faq-section .spollers__title {
    padding: 18px 18px 16px;
    gap: 14px;
    font-size: 20px;
  }
  .faq-section .spollers__button {
    width: 38px;
    height: 38px;
  }
  .faq-section .spollers__body {
    padding: 0 18px 20px;
    font-size: 15px;
    line-height: 1.7;
  }
  h1 {
    font-size: 23px;
  }
  .footer {
    padding: 20px 10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    row-gap: 20px;
  }

  .comment-item .avatar img {
    width: 60px;
    height: 60px;
  }
  .comment-item {
    grid-template-columns: 60px 1fr;
    column-gap: 10px;
  }
  #second-page {
    font-size: 17px;
  }
  .second-page-title {
    font-size: 20px;
    line-height: 1.3;
  }
  h2 {
    font-size: 20px;
  }
  .footer-top div:first-child {
    margin: 0 auto;
  }
  .footer-top .socials {
    justify-content: center;
  }
}

.main {
  padding-top: 0 !important;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
