#nextBtn {
	cursor: pointer;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card__content {
  padding: 20px;
}

.blog-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-card__title a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.blog-card__title a:hover {
  color: #0073e6;
}

.blog-card__excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 📱 Мобильная адаптация */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card__image img {
    height: 180px;
  }
}





details {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: white;
}

details p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: lightgray;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}


#explore-button {
	width: 100%;
	max-width: 350px;
}

.buy-button {
	display:inline-block;
	padding:12px 24px;
	border-radius:8px;
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	transition:all .3s ease;
	font-size:16px;
	background: radial-gradient(at center center, #1D3C99CC 20%, #33A4C4 100%);
	min-width: 200px;
	max-width: 350px;
	text-align: center;
}

.buy-button:hover {
	color: white;
}

p.download {
	font-size: 14px;
    text-align: center;
}

div.download {
	text-align: center;
}

.copy-status {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: green;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-status.visible {
  opacity: 1;
}


.purchase-card {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.title {
  font-size: 18px;
  margin-bottom: 16px;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.item-info {
  flex: 1;
}

.item-name {
  font-weight: bold;
  margin-bottom: 4px;
}

.item-name span {
  font-weight: normal;
}

.item-price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.item-meta {
  font-size: 13px;
  color: #666;
}

.total {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.payment-success {
  margin: 12px 0;
  text-align: center;
  font-size: 14px;
}

.pin-code {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.pin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.pin code {
  font-size: 16px;
  letter-spacing: 2px;
	max-width: 100%;
	word-wrap: break-word;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}


div#page, main#content {
	background: black;
	color: white;
}

.woocommerce div.product .product_title {
	padding: 10px!important;
}

nav.woocommerce-breadcrumb {
	padding: 10px!important;
}

.tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      background: #f5f5f5;
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 15px;
      color: #000;
      white-space: nowrap;
    }

.card {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #2C2A2A;
	color: #E8E8E8;
      border-radius: 8px;
      padding: 16px;
      margin-bottom: 16px;
    }

    .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      color: #E8E8E8;
      font-size: 20px;
      flex-shrink: 0;
    }

    .icon.blue { background: #1e88e5; }   /* для distance */
    .icon.green { background: #388e3c; }  /* для duration */

    .card-content {
      display: flex;
      flex-direction: column;
    }

    .card-content strong {
      font-weight: 600;
      color: #E8E8E8;
    }

    .card-content span {
      color: #E8E8E8;
      margin-top: 4px;
    }




#primary {
	background: black;
}

h1.product_title.entry-title {
    color: white;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a, nav.woocommerce-breadcrumb {
	color: lightgray!important;
}

p.product.woocommerce.add_to_cart_inline {
	border: none!important;
}

span.woocommerce-Price-amount.amount {
    color: white;
}

.info-block {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 400px;
	color: white;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .info-item i {
      font-size: 20px;
      color: white;
      min-width: 24px;
      margin-top: 3px;
    }

    .info-content strong {
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .info-content p {
      margin: 0;
      line-height: 1.4;
    }


.hfe-nav-menu-icon {
	fill: white;
}

@media (max-width: 1024px) {
	a.hfe-menu-item {
		color: black!important;
	}
}

#header-looks {
	position: absolute;	
	top: -240px;
    left: 250px;
}

@media (max-width:760px) {
	#header-looks {
		position: relative !important;
        top: auto !important;
        left: auto !important;
	}
}

#mobile-header {
	display: none;
}

#pc-header {
	display: flex;
}

@media (max-width:760px) {
	#mobile-header {
		display: flex;
	}

	#pc-header {
		display: none;
	}
}

/*
 * Styles for quest cards
 */

:root {
    --bg:#0d6efd;
    --card:#ffffff;
    --muted:#6b7280;
    --shadow: 0 12px 24px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
    --radius: 18px;
    --t: 420ms cubic-bezier(.2,.7,.2,1);
  }

.wrap{
    width:min(1100px, 94vw); display:grid; 
	grid-template-columns:1fr auto 1fr;
    align-items:center; gap:3vw;
  }


.wrap .side {
	order: 3;
	text-align: right;
}

 .wrap .side a {
    color: #1270fc; font-weight:700; font-size:clamp(18px,2.2vw,28px); opacity:.9; user-select:none;
  }
 .wrap .action{ text-align:left; order: 1; }
 .wrap .btn{
    appearance:none; border:0; border-radius:999px; padding:14px 22px; font-weight:700;
    background:#fff; color:#0d6efd; cursor:pointer; box-shadow:var(--shadow);
    transition: transform .15s ease, box-shadow .15s ease; font-size:clamp(14px,1.5vw,16px);
  }
 .wrap .btn:hover{ transform:translateY(-1px) }
 .wrap .btn:active{ transform:translateY(0); box-shadow:0 6px 14px rgba(0,0,0,.12) }

  /* Стек карточек */
 .wrap .stage{
    position:relative;
	width:min(480px, 80vw);
	/* height:clamp(440px, 58vh, 560px); */
    perspective:1200px;
	margin: auto;
	 order: 2;
  }
 .wrap .card {
	 padding: 0;
    position:absolute; inset:auto 0 0 0; margin:auto; width:100%;
    background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
    transform-origin:50% 85%; /* естественный поворот у низа */
    overflow:hidden; display:flex; flex-direction:column;
    transition: transform var(--t), opacity var(--t), filter var(--t);
	 gap: 8px!important;
	 
	 touch-action: pan-y; /* разрешаем вертикальную прокрутку, но даём возможность захватить горизонтальный свайп */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  cursor: grab;
  transition: transform .25s cubic-bezier(.2,.9,.3,1), opacity .2s;
  will-change: transform;
  }

.wrap .card.dragging {
  transition: none !important; /* во время перетаскивания без перехода */
  cursor: grabbing;
}

 .wrap .card__media{
    height: 30vh;
	 min-height: 300px;
	 background:#eef2ff center/cover no-repeat;
	 width: 100%;
  }
 .wrap .card__body{ padding:0px 22px 18px 22px; display:flex; flex-direction:column; gap:12px }
 .wrap .title{ color: black; font-size:clamp(20px, 2.4vw, 28px); line-height:1.15; font-weight:800; }
 .wrap .rating{ color:#f59e0b; font-weight:600; font-size:14px }
 .wrap .muted{ color:var(--muted) }
 .wrap .link{ color:#0f766e; font-weight:700; text-decoration:none }
 .wrap .link:hover{ text-decoration:underline }

  /* Позиции в стеке — управляются через data-pos (0=top,1=mid,2=back) */
 .wrap .card[data-pos="0"]{ z-index:30; transform:translateY(0) rotate(0deg) scale(1) }
 .wrap .card[data-pos="1"]{ z-index:20; transform:translateY(18px) rotate(-3deg) scale(.985); filter:saturate(.98) }
 .wrap .card[data-pos="2"]{ z-index:10; transform:translateY(36px) rotate(3deg) scale(.97); filter:saturate(.94) }

  /* входящая карточка снизу */
 .wrap .card.incoming{
    z-index:5; transform:translateY(70px) scale(.94) rotate(-2deg);
    opacity:0;
  }
 .wrap .card.incoming.ready{ opacity:1; transform:translateY(36px) scale(.97) rotate(3deg) }

  /* жест “ухода” верхней карты */
 .wrap .card.swipe-out{
    transform:translate(260px,-30px) rotate(8deg) scale(1.02);
    opacity:0;
  }

@media (max-width: 1024px) {
	.wrap {
		grid-template-columns: 1fr 1fr;
	}
	
	.wrap .stage {
		order: 1;	
	}
	
	.wrap .side {
		text-align: center;
		order: 2;
	}
	
	.wrap .action {
		text-align: center;
		margin-top: 20px;
		order: 2;
	}
}

  @media (max-width:760px){
    .wrap{ grid-template-columns:1fr; gap:18px; width: auto; }
   .wrap .side{ order:3; text-align:center }
   .wrap .action{ order:2; text-align:center }
   .wrap .stage{ order:1; height: 80vh; margin-bottom: 40px; }
	  .wrap .action { margin-top: 35px; }
	  .wrap .card__media { height: 35vh; }
  }




/*
 * Styles for our solution
 */

.solution .h1 {font-size:clamp(28px,3.2vw,40px); margin:0 0 8px; font-weight:800; color: white}
.solution .lead {margin:0 0 28px; color:var(--muted); font-size:clamp(16px,1.4vw,18px); color: white}

/* Двухколоночный блок */
.solution .content {
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap:24px;
  align-items:stretch;           /* важно: обе колонки растягиваются по одной высоте */
}

.solution .visual video{
  width:100%;
  height:100%;
  object-fit:cover;   /* обрезаем, чтобы заполнить блок */
  display:block;
}

/* Левая картинка: занимает всю высоту ряда, обрезка по контейнеру */
.solution .visual{
  border-radius: 16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  height:100%;                   /* тянется под высоту правой колонки */
  background:#111;
}

.solution .visual img{
  width:100%;
  height:100%;                   /* на ту же высоту, что контейнер */
  object-fit:cover;              /* заполняем и обрезаем как на макете */
  display:block;
}

/* Плашки справа */
.solution .bullets {
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.solution .note {
  padding:22px 24px;
  border-radius:18px;
  color:#0b0b0b;
  box-shadow:var(--shadow);
}
.solution .note h3{
  margin:0 0 10px;
  font-size:clamp(16px,1.5vw,18px);
  font-weight:800;
  letter-spacing:.2px;
}
.solution .note p {
  margin:0;
  color:#1f2937;
  font-size:clamp(14px,1.35vw,16px);
}

/* Цвета как в макете */
.solution .note.lime{ background:#CDFB79; }
.solution .note.cyan{ background:#8FF0FF; }
.solution .note.purple{ background:#B8B0FF; }

/* Адаптив */
@media (max-width: 860px){
  .solution .content{ grid-template-columns: 1fr; }
}


/*
 * Custom styles
 */

button.orange {
	background: #F2952C;
	color: white;
	border: none;
}

button.quest {
	background: white;
	border: none;
	color: black;
}

.explore-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 8px 16px;
  background-color: #2C2A2A;
	color: white;
  font-family: system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
}

.explore-tag .icon {
  font-size: 24px;
}

.explore-tag .icon-img {
  width: 24px;
  height: 24px;
}

.sound-familiar-container {
    color: black!important;
}

.sound-familiar-container h2 {
	margin-bottom: 20px;
}

.sound-familiar-container .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

.sound-familiar-container .item {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.sound-familiar-container p {
  margin-block-end: 0;
}

.number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background: #e4ddff;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.emoji-card {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 12px;
  color: white;
  max-width: 700px;
  margin: 20px auto;
}

.emoji-img {
    width: 56px !important;
    border-radius: 8px !important;
    background-color: white;
    padding: 8px;
    margin-right: 16px !important;
}



.lang-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.lang-trigger {
  cursor: pointer;
  font-weight: bold;
  user-select: none;
	color: white;
}

.lang-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 6px 0 0 0;
  padding: 6px 0;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.lang-list li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.lang-list li a:hover,
.lang-list li a.active {
  background-color: #ff6b6b;
  color: #fff;
  border-radius: 6px;
}

.lang-dropdown.open .lang-list {
  display: block;
}

/* Мобилки */
@media (max-width: 768px) {
  .lang-list {
    right: auto;
    left: 0;
  }
}




.archive .page-title,
.blog .page-title,
.page-header {
  display: none;
}




/**
 *  Cookie
**/
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #0073aa;
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  color: #ddd;
  border: 1px solid #555;
}



.comments-area a,.page-content a{text-decoration:underline}.alignright{float:right;margin-left:1rem}.alignleft{float:left;margin-right:1rem}.aligncenter{clear:both;display:block;margin-inline:auto}.alignwide{margin-inline:-80px}.alignfull{margin-inline:calc(50% - 50vw);max-width:100vw}.alignfull,.alignfull img{width:100vw}.wp-caption{margin-block-end:1.25rem;max-width:100%}.wp-caption.alignleft{margin:5px 20px 20px 0}.wp-caption.alignright{margin:5px 0 20px 20px}.wp-caption img{display:block;margin-inline:auto}.wp-caption-text{margin:0}.gallery-caption{display:block;font-size:.8125rem;line-height:1.5;margin:0;padding:.75rem}.pagination{display:flex;justify-content:space-between;margin:20px auto}.sticky{display:block;position:relative}.bypostauthor{font-size:inherit}.hide{display:none!important}.post-password-form{margin:50px auto;max-width:500px}.post-password-form p{align-items:flex-end;display:flex;width:100%}.post-password-form [type=submit]{margin-inline-start:3px}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#eee;clip:auto!important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000}.post .entry-title a{text-decoration:none}.post .wp-post-image{max-height:500px;-o-object-fit:cover;object-fit:cover;width:100%}@media(max-width:991px){.post .wp-post-image{max-height:400px}}@media(max-width:575px){.post .wp-post-image{max-height:300px}}#comments .comment-list{font-size:.9em;list-style:none;margin:0;padding:0}#comments .comment,#comments .pingback{position:relative}#comments .comment .comment-body,#comments .pingback .comment-body{border-block-end:1px solid #ccc;display:flex;flex-direction:column;padding-block-end:30px;padding-block-start:30px;padding-inline-end:0;padding-inline-start:60px}#comments .comment .avatar,#comments .pingback .avatar{border-radius:50%;left:0;margin-inline-end:10px;position:absolute}body.rtl #comments .comment .avatar,body.rtl #comments .pingback .avatar,html[dir=rtl] #comments .comment .avatar,html[dir=rtl] #comments .pingback .avatar{left:auto;right:0}#comments .comment-meta{display:flex;justify-content:space-between;margin-block-end:.9rem}#comments .comment-metadata,#comments .reply{font-size:11px;line-height:1}#comments .children{list-style:none;margin:0;padding-inline-start:30px;position:relative}#comments .children li:last-child{padding-block-end:0}#comments ol.comment-list .children:before{content:"↪";display:inline-block;font-size:1em;font-weight:400;left:0;line-height:100%;position:absolute;top:45px;width:auto}body.rtl #comments ol.comment-list .children:before,html[dir=rtl] #comments ol.comment-list .children:before{content:"↩";left:auto;right:0}@media(min-width:768px){#comments .comment-author,#comments .comment-metadata{line-height:1}}@media(max-width:767px){#comments .comment .comment-body{padding:30px 0}#comments .children{padding-inline-start:20px}#comments .comment .avatar{float:left;position:inherit}body.rtl #comments .comment .avatar,html[dir=rtl] #comments .comment .avatar{float:right}}.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{margin-inline-end:auto;margin-inline-start:auto;width:100%}@media(max-width:575px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{padding-inline-end:10px;padding-inline-start:10px}}@media(min-width:576px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:500px}.site-footer.footer-full-width .footer-inner,.site-header.header-full-width .header-inner{max-width:100%}}@media(min-width:768px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:600px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}@media(min-width:992px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:800px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}@media(min-width:1200px){.page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:1140px}.site-footer.footer-full-width,.site-header.header-full-width{max-width:100%}}.site-header+.elementor{min-height:calc(100vh - 320px)}
