html, body {
  overflow-x: hidden;
  max-width: 100%;
 
}
* {
    box-sizing: border-box
}
.site_wrapper {
  min-height: calc(100vh - 195px); /* viewport magasság */
  display: flex;
  flex-direction: column;
  padding-top: 97px; /* régi body padding ide kerül */
}
main {
  flex: 1;
}

a {
     color: var(--ayana-muted);
}
/* ====== ALAPOK ====== */ :root {
  --ayana-bg: #f3f0eb;
  --ayana-bg-light: #f7f4f0;
  --ayana-text: #2e2b29;
  --ayana-muted: #7e756f;
  --ayana-accent: #d6bfa7;
  --ayana-accent-dark: #c19f7f;
  --ayana-border: #e2ddd6;
  --ayana-radius: 18px;
  --ayana-radius-large: 28px;
  --ayana-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
}
img {
  max-width: 100%;
}
b,strong {
    font-weight: 600
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-color: var(--ayana-bg);
  transition: all 0.3s ease-in-out;
  color: var(--ayana-muted);
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  font-size: 18px
}
/* ==== HEADER ==== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #f5f2ed;
  border-bottom: 1px solid var(--ayana-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 27px 40px;
  position: relative;
}
.site-logo {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ayana-text);
}
.site-logo img {
  display: block;
  width: 180px;
  height: auto;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.ayana-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.site-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ayana-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ayana-social {
  display: flex;
  gap: 25px;
  padding-right: 20px
}
.ayana-social img {
  width: 20px;
  height: auto;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: block
}
.ayana-social a:hover img {
  opacity: 0.7;
}
/* CTA BUTTON */
.btn--book {
  background: var(--ayana-accent);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--ayana-accent);
  transition: 0.2s ease;
}
.btn--book:hover {
  background: var(--ayana-accent-dark);
  border-color: var(--ayana-accent-dark);
  var(--ayana-accent-dark);
}
.site-nav a {
  text-decoration: none;
  color: var(--ayana-muted);
  position: relative;
  padding-bottom: 0.2rem;
    font-weight: 500
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ayana-text);
  transition: width 0.2s ease;
}
.site-nav a:hover {
  color: var(--ayana-text);
}
.site-nav a:hover::after {
  width: 100%;
}
.site-nav .sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  padding: 50px 20px 10px 20px;
  margin: 0 0 0 -20px;
  list-style: none;
  background-color: #f5f2ed;
  box-shadow: 0 60px 60px rgba(0, 0, 0, 0.05);
}
.site-nav > li:hover .sub-menu {
  display: block;
}
.site-nav > li:hover .sub-menu li {
  margin-bottom: 10px
}
.site-header__cta {
  font-size: 0.85rem;
}
.ayana-page {
  background: var(--ayana-bg);
}
.container {
  width: min(1330px, 100% - 3rem);
  margin: 0 auto;
}
/* ==== TIPOGRÁFIA ==== */
h1, h2, h3, h4 {
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ayana-text);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.2;
    font-family: 'Baskerville';
    text-transform: uppercase
}
h2 {
  font-size: 26px;
  line-height: 1.25;
      font-family: 'Baskerville';
     text-transform: uppercase
}
h3 {
  font-size: 1.4rem;
      font-family: 'Baskerville';
     text-transform: uppercase
}
h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px
}

p {
  margin: 0 0 25px 0;
  line-height: 1.6;
  
}
p:last-child {
    margin: 0
}

/* ==== GOMBOK ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--large {
  padding: 20px 50px;
}
.btn--primary {
     background: var(--ayana-accent-dark);
  border-color: var(--ayana-accent-dark);
  
  color: #fff;
}
.btn--primary:hover {
background: var(--ayana-accent);
  border-color: var(--ayana-accent);

}
.btn--secondary {
  background: var(--ayana-muted);
  color: #fff;
  border-color: var(--ayana-muted);
  box-shadow: var(--ayana-shadow-soft);
}
.btn--secondary:hover {
  background: transparent;
  border-color: var(--ayana-muted);
  box-shadow: var(--ayana-shadow-soft);
  color: var(--ayana-text);
}
/* ==== NYITÓLAP HERO 3 KÉP ==== */
.home-hero {
  padding: 0
}
.home-hero__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; /* képek összeérnek, mint a mockupon */
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; /* képek összeérnek, mint a mockupon */
}


/* itt nincs lekerekítés */

.home-hero__item a {
    position: relative;
    display: block
}
.home-hero__item a .overlay {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
}
.home-hero__item a:hover .overlay {
    opacity: 1;
      transition: transform 0.3s ease, opacity 0.3s ease;
}
.home-hero__item {
  position: relative;
  overflow: hidden;
}
.home-hero__image {
  width: 100%;
  height: 0;
  padding-top: 140%; /* álló fotó arány */
  background-size: cover;
  background-position: center;
}
.events__image {
      width: 100%;
  height: 0;
  padding-top: 140%; /* álló fotó arány */
  background-size: cover;
  background-position: center;
}
.home-hero__label {
    font-family: 'Baskerville';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
  font-weight: 500;
    z-index: 2
}
.events__label {
        font-family: 'Baskerville';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 500;
    z-index: 2
}
.home-newsletter .inner {
  display: flex;
  justify-content: center
}
/* szöveges blokk a képek ALATT */
.home-hero__text {
  text-align: center;
  margin-top: 80px;
}



h2.hero_title {
    font-size: 1.4rem;
  font-family: 'Baskerville';
  text-transform: uppercase;
      margin-bottom: 70px;
      text-align: center;
}

.home-hero__title {
  max-width: 880px;
  margin: 0 auto 0 auto;
    
}
.home-hero__subtitle {
  max-width: 640px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}
.section.noPadding {
  padding: 0
}
.section.noPaddingTop {
  padding-top: 0
}
.section--light {
  background: var(--ayana-bg-light);
    
}
.ourMethodLight {
   background: var(--ayana-bg-light); 
    padding: 40px 0;
    margin: 40px 0
}
.paddingToBottom {
    padding: 40px 0
}
.section__header {
  text-align: center;
  margin-bottom: 2.2rem;
  margin-top: 40px;
}
.studios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.studio-card {
  position: relative;

  overflow: hidden;
}
.studio-card a {
    text-decoration: none
}
.studio-card__image {
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-size: cover;
  background-position: top center;
}
.studio-card__content {
    background-color: var(--ayana-accent);
    padding: 30px 30px;
    text-align: center
}
.studio-card__content h4 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Baskerville'
}
.ayana-studios-overview {
    padding-top: 30px
}
.ayana-studios-overview h2 {
  font-size: 1.4rem;
}
/* ==== KÉP + SZÖVEG KÉT OSZLOPBAN (ABOUT, STUDIOS, COMMUNITY, CONTACT) ==== */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}
.two-col--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}
.two-col__image {
  background-size: cover;
  background-position: top center;
  min-height: 700px;
  height: 100%;
}
.two-col__image.full {
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 200px);
}
.two-col__content {
  padding: 0 15px;
  text-align: left
}
.two-col__content h1, .two-col__content h2 {
  margin-bottom: 1rem;
}
.two-col__content .inset {
    max-width: 550px
}
/* ==== ONLINE ==== */
.online-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}
.online-hero .inner {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center
}
.online-hero__image {
  width: 100%;
  height: 0;
  padding-top: 45%; /* széles hero */
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}
.online-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1
}
.online-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 580px;
  color: #fff;
  z-index: 2;
  text-align: center
}
.online-hero__content .subtitle {
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase
}
.online-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
  color: #fff;
  text-align: center;
}
.online-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.online-hero__content h1 {
  margin: 0.8rem 0 0.5rem;
  color: #fff !important
}
.online-intro-icon {
  width: 54px;
  opacity: 0.9;
}
/*SHOP */
.horizontal-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}
.horizontal-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 680px;
  color: #fff;
  z-index: 2;
  text-align: center
}



.horizontal-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
  color: #fff;
  text-align: center;
}
.horizontal-hero .inner {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center
}

.horizontal-hero.smallHeader .inner {
     height: 300px;
}

.horizontal-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1
}
.horizontal-hero__content h1 {
  margin: 0;
  color: #fff !important
}
.horizontal-hero__content h1:has(+ h2) {
  margin-bottom: 30px;
}
.horizontal-hero__content h2 {
   
  margin: 0;
  color: #fff !important
}


/* ==== ÁRAK (PRICES) ==== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: #ffffff;
  padding: 2rem 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--ayana-shadow-soft);
}
.price-card__name {
  font-size: 22px;
  margin-bottom: 15px;
}
.price-card__value {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
.price-card__note {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.price-card .btn {
  margin-top: 30px
}
/* ==== FAQ ==== */
.faq {
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--ayana-border);
  padding: 1rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  margin: 0;
  font-size: 20px;
}
.faq-answer {
  margin-top: 0.6rem;
  display: none;
  overflow: hidden;
}
.faq-item.open .faq-answer {
    padding-top: 15px;
    padding-right: 25px
    
    
}
.faq-question span {}
.faq-item.open .faq-question span {
  transform: rotate(45deg); /* + → x-szerű ikon (opcionális) */
}
.plus {
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plus__horizontal-line, .plus__vertical-line {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* a vertical line valójában 90°-kal elforgatott */
.plus__vertical-line {
  transform: rotate(90deg);
}
/* amikor nyitva van */
.faq-item.open .plus__vertical-line {
  transform: rotate(90deg) scaleY(0); /* eltűnik */
  opacity: 0;
}
.faq-item.open .plus__horizontal-line {
  transform: rotate(180deg); /* – ikon */
}
/* ==== BOOKING (ÓRAREND) ==== */
.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  margin-top: 40px;
  justify-content: flex-start;
}
.pill {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--ayana-border);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}
.pill--active {
  background: var(--ayana-accent);
  border-color: var(--ayana-accent);
  color: #fff;
}
.schedule {
  border-radius: 14px;
  border: 1px solid var(--ayana-border);
  background: #fff;
  overflow: hidden;
}
.class-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 120px;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--ayana-border);
  font-size: 0.9rem;
}
.class-row:last-child {
  border-bottom: none;
}
/* ==== SHOP (kategóriák + termékek) ==== */
.shop-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.shop-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2.5rem;
}
.product-card {
  background: #fff;
  padding-bottom: 1rem;
  box-shadow: var(--ayana-shadow-soft);
}
.product-card__image {
  padding-top: 100%;
  background-size: cover;
  background-position: center;
}
.product-card__body {
  padding: 0.7rem 1rem 0;
  font-size: 0.9rem;
}
/* ==== CONTACT ==== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}
.contact-grid a {
  color: var(--ayana-text);
  text-decoration: none
}
.contact-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contatc_title {
  font-size: 30px;
  color: var(--ayana-text);
}
.studios_addresses {
  display: flex;
  column-gap: 40px;
  padding: 40px 0 25px 0px;
    text-align: left;
}
.studios_addresses .card {
    width: 50%
}
/* ==== COMMUNITY (KÁRTYÁK / BLOKKOK) ==== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.site-footer {
  background-color: var(--ayana-accent);
}
.site-footer .copyright {
  color: #fff;
  font-size: 14px;
}
.site-footer .separator {
  margin: 0 10px
}
.site-footer .inner {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 0
}
.site-footer .footer-menu li {
  display: inline-block;
  margin: 0 10px
}
.site-footer a {
  color: #fff;
  font-size: 14px;
  text-decoration: none
}
.page404 {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.page404 .text1 {
  font-size: 140px
}
.page404 .text2 {
  margin-bottom: 80px
}
html [id*="bsport-widget"] .cleanslate .bs-calendar {
  margin-top: 0 !important
}
.download_apps{
    padding: 30px 0
}
.download_apps img {
  max-width: 200px;
}
.gform_validation_errors, .gfield_required_text {
  display: none !important
}
.gform-theme--foundation .gform_fields {
  row-gap: 15px !important;
}
.gform-theme--framework input[type="text"], .gform-theme--framework input[type="email"], .gform-theme--framework input[type="checkbox"], .gform-theme--framework textarea {
  background: transparent !important;
  border-color: #ccc !important;
  box-shadow: none !important;
  outline: none !important
}
.gform-theme--framework input[type="text"]:focus, .gform-theme--framework input[type="email"]:focus, .gform-theme--framework input[type="checkbox"]:focus, .gform-theme--framework textarea:focus {
  outline: none !important
}
.gform-theme--framework input[type="submit"] {
  outline: none !important;
  background-color: var(--ayana-accent) !important
}
.gform-theme--foundation .gfield textarea.medium {
  min-block-size: 6rem !important;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600
}
.woocommerce ul.products li.product .woocommerce-loop-category__title > mark {
  display: none
}
li.product-category:hover img {
  opacity: 0.6
}

.woocommerce ul.products li.product .price {
  color: #000;
  font-size: 20px
}
.woocommerce .woocommerce-ordering select {
  background-color: transparent;
  border: none;
}
.related.products {
  display: block;
  clear: both;
  float: none;
  margin-top: 100px
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
  border-width: 1px
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
  width: 1px
}
.woocommerce-product-gallery__trigger {
  opacity: 0;
  pointer-events: none
}
/* Outer wrapper: clean outline box */
.quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 10px;
  gap: 20px; /* spacing between buttons and input */
  width: fit-content;
}
/* Minus / Plus buttons */
.qty-btn {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 20px;
  text-align: center;
  color: #444;
}
.qty-btn:hover {
  color: #000;
}
/* Quantity input */
.quantity input.qty {
  border: none !important;
  width: 35px;
  text-align: center;
  font-size: 18px;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none !important;
  color: #333;
}
/* Remove WooCommerce default +/- if theme adds them */
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity .qty {
  -moz-appearance: textfield;
}
/* image wrapper: két kép egymás fölött */
.product-image-wrap {
  position: relative;
  overflow: hidden;
}
.product-image-wrap .product-image {
  display: block;
  width: 100%;
  transition: opacity 0.35s ease;
}
/* alapállapot: csak az első látszik */
.product-image-wrap .product-image.secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
/* hover: második kép fade-in, első fade-out (ha akarod) */
.woocommerce ul.products li.product:hover .product-image-wrap .product-image.secondary {
  opacity: 1;
}
.woocommerce ul.products li.product:hover .product-image-wrap .product-image.primary {
  opacity: 0;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt {
  background-color: var(--ayana-accent);
  padding: 16px 40px;
  border-radius: 40px
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover {
  background-color: var(--ayana-accent-dark);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: var(--ayana-text);
  font-size: 1.25em;
}
.single-product .summary a {
 
  text-decoration: none
}
.woocommerce-Tabs-panel h2 {
  display: none
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-width: 0 0 1px 0;
  border-radius: 0;
  padding: 0;
  margin: 0 20px 0 0;
  background-color: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent;
  border-bottom-color: #000
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  left: 0;
  border-bottom-right-radius: 0;
  border-width: 0;
  box-shadow: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  right: 0;
  border-bottom-left-radius: 0;
  border-width: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0
}
.wc-block-components-product-metadata__description {
  display: none
}
.wc-block-cart-item__wrap a {
  color: var(--ayana-text);
}
.wc-block-cart__submit-button {
  background-color: var(--ayana-accent);
  padding: 16px 40px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none
}
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
  background-color: transparent
}
.wc-blocks-components-select .wc-blocks-components-select__container {
  background-color: transparent
}
.wc-block-components-textarea {
  background-color: transparent
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"], .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
  background: transparent;
}
.wc-block-components-checkout-place-order-button {
  background-color: var(--ayana-accent);
  padding: 16px 40px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  border: none
}
.woocommerce-message {
  border-top-color: var(--ayana-accent-dark);
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: var(--ayana-bg-light);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  background-color: var(--ayana-accent);
  padding: 16px 40px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  border: none
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  background-color: var(--ayana-accent-dark);
  color: #fff
}
.woocommerce-message::before {
  content: "\e015";
  color: var(--ayana-accent-dark);
}

.mobile-toggle {
 position: absolute;
  
  width: 40px;
  height: 30px;
  display: none;
  right: 15px;
  top:40px;
  z-index: 1000;
    cursor: pointer
}
.mobile-toggle .bar {
    width: 100%;
    height: 4px;
    background-color: var(--ayana-accent-dark);
    margin-bottom: 5px
}

.mobile-menu {
     background-color: #c6bfb9;
    color: #fff;
     display: none;
    position: fixed;
    top:95px;
    right: 0;
    left: 0;
    bottom: 0;
    flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 90px 0 100px 0;
  margin: 0;
    z-index: 3
}
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    font-family: 'Baskerville';
    text-transform: uppercase
   
}
.mobile-menu .sub-menu a {
   font-size: 18px;
    font-weight: 400
   
}
.mobile-menu li {
    display: block;
    margin-bottom: 30px
}
.mobile-menu  ul.sub-menu {
    padding: 0;
    display: none;
    margin-top: 20px;
    margin-bottom: 20px
}

/* A mobil menü tartója legyen görgethető, ha magas */
.menu-mobile-container,
#menu-mobile {
  max-height: 100vh;
  overflow-y: auto;
}

/* chevron pseudo-element */
#menu-mobile li.menu-item-has-children > a {
  position: relative;
 
}

#menu-mobile li.menu-item-has-children > a::after {
  content: '';
  display: block;
    position: absolute;
    right: -15px;
    top:13px;
  width: 4px;
  height: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);      /* ▼ */

  
  transform-origin: center;
  transition: transform 0.2s ease;
}

/* nyitott állapotban fordítsuk felfelé */
#menu-mobile li.menu-item-has-children.is-open > a::after {
  transform: rotate(45deg);
 
}


.fixed_button {
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background-color: var(--ayana-accent);
    text-align: left;
    display: flex;
  justify-content: space-between;
    z-index: 3
}
.fixed_button img {
    width: 20px
}
.mobile-social {
    display: flex;
    column-gap: 20px;
    align-items: center
}



 .account_icon {
    background-image: url("../images/account.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    display: block;
    width: 20px;
      height: 20px;
}
 .cart_icon {
    background-image:url("../images/cart.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
     display: block;
    width: 20px;
     height: 20px;
     position: relative
}
 .cart_icon .number {
    position: absolute;
    background-color: var(--ayana-accent);
   right: -9px;
  top: -3px;
    color: #000;
    width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  display: flex;
    align-items: center;
    justify-content: center
}

.mobile-cart {
    position: absolute;
 right: 80px;
  top: 40px;
  z-index: 10000;

  gap: 20px;
    display: none
    
}

.book-dropdown {
    position: relative;
    display: inline-block;
}

.book-dropdown .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.book-dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.book-dropdown:hover .book-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.book-dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1f1f1f;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.book-dropdown-menu a:hover {
    background: #f5f5f5;
}



.text-center {
     text-align: center
}
.text-justify {
     text-align: justify
}

.eyebrow {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ayana-muted);
  margin-bottom: .8rem;
}

.about-hero__grid,
.split-grid,
.about-story__grid,
.about-pillars__grid,
.about-strip__grid,
.about-pair__grid {
  display: grid;
  gap: 2rem;
}

.about-hero__grid,
.split-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-hero__image img,
.about-strip__item img,
.split-grid__image img,
.about-pair__grid img,
.about-break img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-hero__image img,
.split-grid__image img {
  aspect-ratio: 4 / 5;
}

.about-strip__grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-strip__item img {
  aspect-ratio: 3 / 4;
}

.about-story__grid {
  grid-template-columns: 1fr 1fr;
}

.about-break img {
  aspect-ratio: 16 / 7;
}

.about-pillars__grid {
  grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--ayana-border);
}

.split-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.split-grid--reverse .split-grid__content {
  order: 1;
}
.split-grid--reverse .split-grid__image {
  order: 2;
}

.about-statement__text {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-pair__grid {
  grid-template-columns: 1fr 1fr;
}

.about-pair__grid img {
  aspect-ratio: 4 / 5;
}

.about-pair__text {
  max-width: 760px;
  margin: 2rem auto 0;
}
.about-cta {
    padding-top: 40px
}
.about-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn--secondary {
  border: 1px solid var(--ayana-text);
  color: var(--ayana-text);
  background: transparent;
}


/* =========================
   AYANA CIRCLE SECTION
========================= */

.ayana-circle {
  padding: 60px 0;
    text-align: center
}

.circle-intro {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.circle-intro .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ayana-muted);
  margin-bottom: 12px;
}

.circle-intro h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.circle-intro .lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ayana-muted);
}

/* =========================
   BENEFITS
========================= */

.circle-benefits {
  max-width: 860px;
  margin: 60px auto 70px auto;
 
  text-align: center;
}


/* =========================
   CARDS GRID
========================= */

.circle-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
    max-width: 800px;
    margin: 0 auto
}

.circle-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ddd;
}

.circle-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.circle-card:hover img {
  transform: scale(1.06);
}

/* =========================
   OVERLAY
========================= */

.circle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
}

/* =========================
   BIG CIRCLE BUTTON
========================= */

.circle-button {
  width: 180px;
  height: 180px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  position: relative;
}

.circle-button span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  line-height: 1;
}

/* opcionális finom extra karika */
.circle-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  transition: all 0.35s ease;
}

.circle-card:hover .circle-button {
  background: rgba(255,255,255,0.95);
  color: #111;
  border-color: rgba(255,255,255,0.95);
}

.circle-card:hover .circle-button::before {
  inset: -16px;
  border-color: rgba(255,255,255,0.18);
}

/* =========================
   CARD TITLE
========================= */

.circle-overlay p {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
    text-transform: uppercase;
    font-family: 'Baskerville'
}

/* =========================
   FOOTER TEXT
========================= */

.circle-footer {
  margin-top: 60px;
  text-align: center;
}

.circle-footer p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ayana-text);
  margin: 0;
}



.inner {
    max-width: 780px;
    margin: 0 auto
}


.dt-tow-col {
    display: flex;
    min-height: calc(100vh - 195px)
}
.dt-tow-col  .col1 {
    width: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.dt-tow-col  .col2 {
    width: 50%;
    padding: 50px;
    align-content: center
}
.dt-tow-col  .col2  h2{ margin-bottom: 40px}

.mob-tow-col-hor {
    min-height: 100%;
    display: none
}
  
.dt-visible {
    display: block
}

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

.gallery3 img {
  width: 100%;
  height: auto;
  display: block;
}

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

.gallery4 img {
  width: 100%;
  height: auto;
  display: block;
}


.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li a{
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    background-color: transparent!important
}

.woocommerce-button, .wc-backward, .woocommerce-Button {
    background-color: var(--ayana-accent)!important;
    color: #fff!important;
    font-weight: 400!important;
    text-transform: uppercase
}

.woocommerce-button:hover, .wc-backward:hover, .woocommerce-Button:hover {
    background-color:  var(--ayana-accent-dark)!important;
}

.required {
    display: none!important
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    
    padding: 15px 10px!important
    
}

.woocommerce .cart-empty.woocommerce-info {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: 20px;
    font-weight: 600
}

/* bal oldali ikon eltüntetése */
.woocommerce-info::before {
    display: none !important;
}

/* felső kék csík */
.woocommerce-info {
    border-top: none !important;
}


.ayana_app_img img {
    border-radius: 20px
}


/* Desktop 2 oszlopos checkout */
@media (min-width: 768px) {

  form.checkout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  #customer_details {
    width: 60%;
  }

  #order_review {
    width: 40%;
  }

}



/* Desktop 2 oszlopos checkout */
@media (min-width: 768px) {

  form.checkout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  #customer_details {
    width: 60%;
  }

  #order_review {
    width: 40%;
  }

}

/* Mobilon maradjon egymás alatt */
@media (max-width: 767px) {

  form.checkout {
    display: block;
  }

  #customer_details,
  #order_review {
    width: 100%;
  }

}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: none!important;
  width: 100%!important;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  float: none!important;
  width: 100%!important;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  background-color: var(--ayana-accent)!important;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5!important;
  text-transform: uppercase!important;
    font-family: 'Baskerville'!important;
    font-weight: 400!important;
    width: 100%
}

.woocommerce form .form-row label {
    line-height: 1!important
}

#custom_legal_checkbox_field {
    margin-bottom: 20px;
    font-size: 16px
}

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
  display: block;
  margin-bottom: 10px!important;
  font-size: 16px!important;
}

.select2-container--default .select2-selection--single {
    background-color: transparent!important
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: var(--ayana-bg-light)!important;
}

.woocommerce-checkout .shop_table {
    background-color: var(--ayana-bg-light)!important;
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box { 
background-color: var(--ayana-accent)!important;
    color: #fff!important
}


#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  display: none!important;
  
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
      margin: 3px!important
}

.woocommerce-error, .woocommerce-info, .woocommerce-message { 
    background-color: var(--ayana-accent)!important;
    color: #FFFFFF!important;
    padding: 20px!important
    
}
#coupon_code {
    width: 100%;
    border: var(--wc-form-border-width) solid var(--wc-form-border-color);
  border-radius: var(--wc-form-border-radius);
  color: var(--wc-form-color-text,#000);
  box-sizing: border-box;
    padding: 15px 10px !important;
    background-color: transparent!important;
    margin-bottom: 20px
    
}
.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
      color: #FFFFFF!important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: .618em 1em;
  font-weight: 400!important;
  border-radius: 0px!important;
  left: auto;
  color: #FFF!important;
  background-color: var(--ayana-accent)!important;

}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 1px transparent; /* finom bézs fókusz */

}
.woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
  border-color: inherit!important;
}

:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 15px!important
}

.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {display:none
}


.woocommerce div.product form.cart div.quantity {
    margin: 20px 4px 35px 0!important;
    
}

.woocommerce-message::before {
    content:none!important
}

.woocommerce-message {
    border: none!important
}

.woocommerce-message:focus,
.woocommerce-message:focus-visible,
.woocommerce-info:focus,
.woocommerce-info:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.added_to_cart {
    display: none!important
}

.class-formats {
  column-count: 2;
  column-gap: 20px;
    
}

.format-card {
  break-inside: avoid;
  margin-bottom: 20px;

  padding: 26px 28px;
  background: #f7f4ef;
  border: 1px solid #e5dfd7;
  border-radius: 10px;
   
}

.format-card:hover {
  background: #f1ece6;
}

.format-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.format-card p {
  margin: 0;
  color: #777;
  line-height: 1.6;
}

/* mobile */
@media (max-width: 768px) {
  .class-formats {
    grid-template-columns: 1fr;
  }
}