/* Fonts */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --maze-max: 1435px;
  --maze-pad: 39px;
  --maze-bg: #0b0f17;
  --maze-surface: #111827;
  --maze-surface-2: rgba(17, 24, 39, 0.55);
  --maze-text: #e5e7eb;
  --maze-muted: #9ca3af;
  --maze-accent: #f3cf78;
  --maze-border: rgba(255, 255, 255, 0.10);
  --maze-border-soft: rgba(255, 255, 255, 0.06);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {height: 100%;}
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #181F3A;
  color: var(--maze-text);
  background-image: url('../img/stars.png');
  background-size: cover;
}
a {color: inherit;}
/* a:hover {color: #fff;} */
.section {
  max-width: var(--maze-max);
  margin: 0 auto;
  padding: 0;
}
.site-footer {
  border-bottom: none;
  border-top: 1px solid var(--maze-border-soft);
  padding-bottom: 90px;
  background-color: #181F3A;
  position: relative;
}
.site-header__inner,
.site-footer__inner,
.site-content,
.home__inner {max-width: var(--maze-max);margin: 0 auto;}
.footer-brand svg{margin-left: -5px;}
.site-footer__inner{max-width: 1431px;}
.site-header__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  padding-bottom: 0px;
  position: relative;
  z-index: 10;
  justify-content: space-between;
}
.section__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.section__title {
  font-family: Montserrat;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 36px;
  line-height: 54px;
  letter-spacing: 0%;
}
.section__action {
  text-decoration: none;
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px 14px;
}
.section__action:hover { color: #fff; }
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #0b0f17;
  background: linear-gradient(180deg, #f6d98a, #d9b35e);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.10);
}
.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: center;
}
.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nav a {
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-decoration: none;
  color: #fff;
}
.nav a:hover {color: #fff;}
.nav--fallback {display: none;}
.site-header__nav:has(.nav:empty) .nav--fallback {display: flex;}

/* Blog categories dropdown in menu */
.nav .menu-item-has-children {
  position: relative;
}
.nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1B2342;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 100;
  border: 1px solid rgba(249, 214, 149, 0.2);
}
.nav .sub-menu .menu-item {
  margin: 0;
  padding: 0;
}
.nav .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}
.nav .sub-menu a:hover {
  background: rgba(249, 214, 149, 0.1);
}
.nav .menu-item-has-children:hover .sub-menu {
  display: block;
}
.nav .menu-item-has-children .sub-menu {
  margin-top: 4px;
}

/* Blog categories dropdown in nav */
.nav .menu-item-has-children {
  position: relative;
}
.nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: rgba(24, 31, 58, 0.98);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(249, 214, 149, 0.2);
  z-index: 100;
}
.nav .menu-item-has-children:hover .sub-menu,
.nav .menu-item-has-children.submenu-open .sub-menu {
  display: block;
}
.nav .sub-menu .menu-item {
  margin: 0;
  padding: 0;
}
.nav .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}
.nav .sub-menu a:hover {
  background: rgba(249, 214, 149, 0.15);
}

.login-block {
  display: flex;
  align-items: center;
  gap: 16px;
  a {
    text-decoration: none;
  }
}
.login-block .login {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.login-block .subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: Montserrat;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  color: #483208;
  line-height: 150%;
  letter-spacing: 0%;
  background: linear-gradient(0deg, #B98C4B 0%, #FFF2DB 68.75%, #EDD39F 80.29%, #F8DCAE 97.92%);
}

.site-footer__grid {padding-top: 25px;}
.footer-brand {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {width: 50px;height: 53px;}
.footer-brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b0f17;
  background: linear-gradient(180deg, #f5d78d, #d9b35e);
}
.footer-brand__name {font-weight: 800;}
.site-footer__title {
  margin: 0 0 19px;
  font-size: 16px;
  color: #fff;
  font-family: Montserrat !important;
  font-weight: 500 !important;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color:rgba(212, 212, 216, 1);
}
.site-footer__links a {
  text-decoration: none;
  font-size: 16px;
  color: rgba(212, 212, 216, 1);
}
.site-footer__links a:hover {color: #fff;}
.site-footer__copy {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.55);
}
.entry {
  background: var(--maze-surface-2);
  border: 1px solid var(--maze-border-soft);
  border-radius: 14px;
  padding: 18px;
  margin: 14px 0;
}
.entry__title {margin: 0 0 10px;font-size: 22px;}
.entry__title a {text-decoration: none;}
.entry__title a:hover {color: var(--maze-accent);}
.entry__content {color: rgba(229, 231, 235, 0.72);}
.footer_links {
  margin-top: 17px;
  display: flex;
  gap: 147px;
}
.site-footer__brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social_links {
  display: flex;
  gap: 16px;
  margin-right: -20px;
}
.social_links a {text-decoration: none;}
.social_links a:nth-child(2) {text-decoration: none;}
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 1001;
  color: #fff;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 0px 0 10px;
  padding-top: 144px;
  padding-bottom: 103px;
  background-image: url('../img/map.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -69px;
  top: 0;
}
.hero__title {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 150%;
  letter-spacing: 0%;
  background: linear-gradient(0deg,
      #B08420 8.17%,
      #FFF2DB 37.02%,
      #FBF5D1 45.67%,
      #EDD094 56.25%,
      #EAC885 65.38%,
      #BD9A4B 75.48%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero__kicker {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
}
.hero__lead {
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
  margin-top: 8px;
}

.woocommerce-page .hero__inner,
.single-product-page .hero__inner,
.product-category-page .hero__inner,
.cart-page .hero__inner,
.checkout-page .hero__inner {
  max-width: var(--maze-max);
  margin: 0 auto;
  height: 600px;
}

.woocommerce div.product form.cart .variations th.label label{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-top: 6px;
}
.woocommerce div.product form.cart .variations td.value{
  padding-left: 10px;
}

.woocommerce div.product form.cart .variations select {
  filter: brightness(0) invert(1);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1435px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.breadcrumb a {
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 20px;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
}
.breadcrumb a:hover {opacity: 1;}
.episode-card {
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #f9d69563;
  width: 100%;
  max-width: 261px;
  background: linear-gradient(143.36deg, #181F3A 2.9%, #1B2342 67.38%, #4256A0 111.74%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}
.episode-card__meta {
  color: #483208;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  max-height: 20px;
  padding: 2px 4px;
  background: linear-gradient(0deg, #B98C4B 0%, #FFF2DB 68.75%, #EDD39F 80.29%, #F8DCAE 97.92%);
  border-radius: 6px;
  border: 1px solid #F9D695;
  box-shadow: 0 20px 100.5px -5px rgba(0, 0, 0, 0.10);
  font-style: normal;
}
.episode-card__title {
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  background: linear-gradient(0deg, #B98C4B 0%, #FFF2DB 68.75%, #EDD39F 80.29%, #F8DCAE 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 16px;
  text-decoration: none;
}
.pill {
  width: 100%;
  height: 36px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #F9D695;
  background: linear-gradient(0deg, #B08420 8.17%, #FFF2DB 37.02%, #FBF5D1 45.67%, #EDD094 56.25%, #EAC885 65.38%, #BD9A4B 75.48%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  margin-top: 45px;
  font-weight: 500;
}

.pill:hover {
  background: linear-gradient(0deg, #B98C4B 0%, #FFF2DB 68.75%, #EDD39F 80.29%, #F8DCAE 97.92%);
  color: #483208;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.floating-cart-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #F9D695;
  background: linear-gradient(143.36deg, #181F3A 2.9%, #1B2342 67.38%, #4256A0 111.74%);
  color: #FFF2DB;
  text-decoration: none;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.floating-cart-button:hover {
  background: linear-gradient(143.36deg, #1E2645 2.9%, #252F55 67.38%, #4E61AC 111.74%);
  color: #FFFFFF;
}

.floating-cart-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-cart-button__label {
  white-space: nowrap;
}

.floating-cart-button__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 242, 219, 0.18);
  color: #FFF2DB;
  font-size: 12px;
  line-height: 20px;
  margin-left: 6px;
  font-weight: 600;
}

body .listeo-floating-chat-widget {
  bottom: 80px;
}

.woocommerce-cart .hero {
    padding: 0px 0 10px;
    padding-top: 84px;
    padding-bottom: 72px;
    margin-top: -70px;
}
.cart-section{
  margin-top: -500px;
  position: relative;
}

/* WooCommerce Cart - Maze theme styling */
.woocommerce-cart {
  --maze-cart-border: rgba(249, 214, 149, 0.35);
  --maze-cart-text: rgba(229, 231, 235, 0.95);
  --maze-cart-muted: rgba(229, 231, 235, 0.75);
}

.woocommerce-cart .woocommerce-cart-form__contents {
  width: 100%;
}

.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--maze-cart-border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.25);
}

.woocommerce-cart table.shop_table thead th {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 18px;
  border-bottom: 1px solid rgba(249, 214, 149, 0.18);
}

.woocommerce-cart table.shop_table tbody td {
  padding: 18px 18px;
  color: var(--maze-cart-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.woocommerce-cart table.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.woocommerce-cart th.product-remove,
.woocommerce-cart td.product-remove {
  width: 1%;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.woocommerce-cart .product-thumbnail img {
  width: 70px!important;
  height: 70px!important;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(249, 214, 149, 0.25);
}

.woocommerce-cart .product-name a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 700;
}

.woocommerce-cart .product-name a:hover {
  color: #ffffff;
  opacity: 1;
}

.woocommerce-cart .product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.10);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.woocommerce-cart .product-remove a.remove:hover {
  filter: brightness(1.03);
}

.woocommerce-cart .product-quantity {
  text-align: center;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
  text-align: right;
  font-weight: 600;
}

/* Cart totals on the right */
.woocommerce-cart .cart-collaterals {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  margin-top: 0;
}

.woocommerce-cart .maze-cart-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.woocommerce-cart .maze-cart-main {
  flex: 1 1 auto;
  min-width: 0;
}

.woocommerce-cart .maze-cart-main .maze-cart-actions-table {
  flex: 1 1 auto;
  margin: 18px 0 0;
}

.woocommerce-cart .maze-cart-layout .cart-collaterals {
  flex: 0 0 420px;
  display: block;
}

.woocommerce-cart .maze-cart-layout .cart_totals {
  max-width: none;
}

.woocommerce-cart .cart_totals {
  width: 100%!important;
  max-width: 420px;
  border: 1px solid var(--maze-cart-border);
  border-radius: 12px;
  padding: 18px 18px 18px;
  background: rgba(17, 24, 39, 0.25);
}

.woocommerce-cart .cart_totals h2 {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 14px;
}

.maze-cart-layout .shop_table.shop_table_responsive.maze-cart-actions-table .actions>button:hover{
  background-color: #dcd7e247!important;
}

.woocommerce-cart .cart_totals table.shop_table {
  border: none;
  background: transparent;
  border-radius: 0;
}

.woocommerce-cart .cart_totals table.shop_table thead {
  display: none;
}

.woocommerce-cart .cart_totals table.shop_table tbody td,
.woocommerce-cart .cart_totals table.shop_table tbody th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.woocommerce-cart .cart_totals table.shop_table tbody th {
  font-weight: 600;
}

.woocommerce-cart .cart_totals table.shop_table tbody td {
  font-weight: 500;
}

.woocommerce-cart .cart_totals table.shop_table tbody tr:last-child td,
.woocommerce-cart .cart_totals table.shop_table tbody tr:last-child th {
  border-bottom: none;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding-top: 16px;
}

.woocommerce-cart .cart_totals .order-total td {
  text-align: right;
}

/* Proceed to checkout button */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: none;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #181F3A;
  text-decoration: none;
  background: rgba(249, 250, 251, 1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  filter: brightness(1.03);
  color: #181F3A;
  background: rgba(249, 250, 251, 1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* Coupon + update cart controls */
.woocommerce-cart .actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
}

.woocommerce-cart .coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.woocommerce-cart input#coupon_code {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(249, 214, 149, 0.45);
  background: rgba(17, 24, 39, 0.35);
  color: #ffffff;
  padding: 0 14px;
  outline: none;
}

.woocommerce-cart input#coupon_code::placeholder {
  color: rgba(229, 231, 235, 0.6);
}

.woocommerce-cart button[name="apply_coupon"] {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(249, 214, 149, 0.55);
  background: linear-gradient(143.36deg, #181F3A 2.9%, #1B2342 67.38%, #4256A0 111.74%);
  color: #ffffff;
  font-weight: 600;
}

.woocommerce-cart button[name="update_cart"] {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(249, 214, 149, 0.45);
  background: rgba(17, 24, 39, 0.35);
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .woocommerce-cart .cart-collaterals {
    justify-content: flex-start;
  }

  .woocommerce-cart .maze-cart-layout {
    flex-direction: column;
  }

  .woocommerce-cart .maze-cart-layout .cart-collaterals {
    flex: 1 1 auto;
    width: 100%;
  }

  .woocommerce-cart .maze-cart-main .maze-cart-actions-table {
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .woocommerce-cart .cart-collaterals {
    align-items: stretch;
  }

  .woocommerce-cart .cart_totals {
    max-width: none;
  }

  .woocommerce-cart .product-price,
  .woocommerce-cart .product-subtotal {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .floating-cart-button {
    right: 16px;
    bottom: 16px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
@media (max-width: 1470px) {
  .section {padding: 0px 20px;}
  .site-header__inner{
    padding: 32px 20px;
  }
  .breadcrumb{
    padding: 0 20px;
  }
  .hero__inner, .about-hero__inner, .site-footer{
    padding-left: 20px;
    padding-right: 20px;
  }
  .social_links{
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .section__head{align-items: center;align-self: stretch;}
  .section__title {
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
  }
  .section__action{
    font-size: 14px;
    line-height: 21px;
    display: flex;
    padding: 11px 16px 10px;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    box-shadow: 0 1px 0.5px 0.05px rgba(29, 41, 61, 0.02);
    align-items: flex-start;
  }
  .section__action svg{
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }
  .social_links{margin: 0;}
  .episode-card__title {
    font-size: 14px;
    line-height: 21px;
    margin-top: 17px;
  }
  .pill {
    font-size: 12px;
    margin-top: 15px;
    height: 28px;
    padding: 4px;
  }
  .episode-card__meta {
    max-height: 20px;
  }
  .social_links a {
    text-decoration: none;
    margin: 3px 3.75px !important;
    margin-right: 0 !important;
    margin-left: 0px !important;
  }
}
@media (max-width: 1400px) {
  .site-footer {padding: 0 20px;}
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 143px;
    padding-bottom: 0px;
    margin-top: -130px;
    background-size: 100% 100%;
    background-image: url('../img/map-mobile.png');
  }
 .site-footer__links{
    color: #D4D4D8;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.001px;
    gap: 12px;
  }
  .footer_links{margin-bottom: 60px;margin-top: 20px;}
  .footer_links .site-footer__title{font-family: Inter!important;}
  .site-footer__grid {padding-bottom: 32px;}
  .hero__title {margin-top: -4px;}
  .hero__kicker,
  .hero__title {font-size: 36px;text-align: center;}
  .hero__lead {font-size: 16px;text-align: center;}
  .site-footer__title,
  .site-footer__links a {font-size: 13px;}
  .site-footer__title{margin: 0 0 17px;}
  .site-site-footer__links {font-weight: 400;}
  .footer_links {gap: 70px;}
  .site-header__brand {z-index: 1001;}
  .site-header__brand img {width: 40px;height: 40px;}
  .site-footer__brand img {width: 50px;height: 53px;}
  .site-header.active {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding-top: 30px;
  }
  .burger {display: block;}
  .site-header__inner {justify-content: space-between;padding: 32px 20px;}
  .site-header.active .site-header__inner {padding: 32px 20px;padding-top: 132px;}
  .site-header__nav {
    position: fixed;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-image: url('../img/menu-stars.png');
    background-color: #181F3A;
    background-size: cover;
    padding: 80px 30px;
    transition: 0.3s ease;
    z-index: 111;
    flex-direction: column;
    justify-content: flex-start;
    gap : 24px;
  }
  .site-header__nav.active {
    right: 0;
  }
  .site-header__nav.active ul {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    gap: 32px;
  }
  .site-header__nav.active ul a {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
  }
  /* Mobile: blog categories dropdown */
  .site-header__nav.active .nav .sub-menu {
    display: none;
    position: static;
    margin-top: 8px;
    padding: 0 0 0 16px;
    min-width: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .site-header__nav.active .nav .nav__blog-categories.submenu-open .sub-menu {
    display: block;
  }
  .site-header__nav.active .nav .sub-menu a {
    font-size: 18px;
    padding: 8px 0;
  }
  .login-block .login {
    font-size: 26px;
  }
  .login-block {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 400px) {
  .episode-card {
    max-width: 167px;
    gap: 0;
    padding: 14px;
  }
}

 .woocommerce-thankyou-order-received{
  font-size: 38px;
  line-height: 150%;
  letter-spacing: 0%;
  font-weight: 700;
  font-family: Montserrat;
  font-style: Bold;
  text-align: center;
  margin-bottom: 26px;
  margin-top: 26px;
  color: #fff;

 }
 
 .woocommerce .added_to_cart.wc-forward{
  display: none!important;
 }

.maze-quantity-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  justify-content: center
}

.maze-quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #b98c4b;
  background: rgba(249, 250, 251, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.maze-qty-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.85);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.maze-qty-btn:hover {
  background: linear-gradient(0deg, #b98c4b 0%, #fff2db 70%, #edd39f 84%, #f8dcae 98%);
  color: #fff;
}

.wp-theme-maze.woocommerce div.product form.cart div.quantity {
  margin: 0;
}

.maze-qty-input {
  width: 64px;
  height: 40px;
  border: none;
  border-left: 1px solid #b98c4b;
  border-right: 1px solid #b98c4b;
  background: transparent;
  color: rgba(15, 23, 42, 0.85);
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.maze-qty-input::-webkit-outer-spin-button,
.maze-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.maze-add-to-cart-button.single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid #f9d695;
  background: linear-gradient(143.36deg, #181F3A 2.9%, #1B2342 67.38%, #4256A0 111.74%);
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.maze-add-to-cart-button.single_add_to_cart_button:hover {
  background: linear-gradient(143.36deg, #1E2645 2.9%, #252F55 67.38%, #4E61AC 111.74%);
  color: #fff;
}

@media (max-width: 480px) {
  .maze-quantity-add-to-cart {
    width: 100%;
    justify-content: space-between;
  }

  .maze-add-to-cart-button.single_add_to_cart_button {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* WooCommerce notices (added to cart / messages) */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  width: 100%;
  border-radius: 12px;
  /* border: 1px solid rgba(249, 214, 149, 0.35); */
  background: rgba(17, 24, 39, 0.88);
  color: rgba(229, 231, 235, 0.95);
  /* padding: 14px 18px; */
  margin: 16px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-color: rgba(249, 214, 149, 0.35);
}

.woocommerce-notices-wrapper {
  max-width: var(--maze-max);
  margin-left: auto;
  margin-right: auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  line-height: 1.2;
  min-height: 48px;
  flex-wrap: nowrap;
  white-space: nowrap; /* keep icon + text + button on one row */
}

.woocommerce-message p,
.woocommerce-info p,
.woocommerce-error p {
  margin: 0;
}

/* Left icon (WooCommerce uses :before on these blocks) */
.woocommerce-message::before {
  color: #22c55e;
  float: none !important;
  margin: 0 !important;
  padding: 0 10px 0 0 !important; /* fixed gap to the text */
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 18px;
  height: 18px;
  line-height: 1;
  font-size: 14px;
  position: relative;
  top: 0;
  transform: translateY(0);
  left: 0px;
}
.woocommerce-info::before {
  color: #f3cf78;
  float: none !important;
  margin: 0 !important;
  padding: 0 10px 0 0 !important; /* fixed gap to the text */
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 18px;
  height: 18px;
  line-height: 1;
  font-size: 14px;
  position: relative;
  top: 0;
  transform: translateY(0);
}
.woocommerce-error::before {
  color: #ef4444;
  float: none !important;
  margin: 0 !important;
  padding: 0 10px 0 0 !important; /* fixed gap to the text */
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 18px;
  height: 18px;
  line-height: 1;
  font-size: 14px;
  position: relative;
  top: 0;
  transform: translateY(0);
}

/* "View cart" / actions button inside notice */
.woocommerce-message .button,
.woocommerce-message a.button,
.woocommerce-message a.wc-forward,
.woocommerce-info .button,
.woocommerce-info a.button,
.woocommerce-info a.wc-forward,
.woocommerce-error .button,
.woocommerce-error a.button,
.woocommerce-error a.wc-forward {
  float: none !important;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid rgba(249, 214, 149, 0.45);
  background: linear-gradient(143.36deg, #181F3A 2.9%, #1B2342 67.38%, #4256A0 111.74%);
  color: #ffffff !important;
  text-decoration: none;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Keep WooCommerce action button visible inside notices */
.woocommerce-message .added_to_cart.wc-forward,
.woocommerce-info .added_to_cart.wc-forward,
.woocommerce-error .added_to_cart.wc-forward {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* Keep action button aligned on the right edge (symmetry fix) */
.woocommerce-message a.wc-forward,
.woocommerce-info a.wc-forward,
.woocommerce-error a.wc-forward {
  margin-left: auto;
}

.woocommerce-message a.button:hover,
.woocommerce-message a.wc-forward:hover,
.woocommerce-info a.button:hover,
.woocommerce-info a.wc-forward:hover,
.woocommerce-error a.button:hover,
.woocommerce-error a.wc-forward:hover {
  filter: brightness(1.03);
  border-color: rgba(249, 214, 149, 0.7);
}

@media (max-width: 768px) {
  .woocommerce-notices-wrapper,
  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    margin: 12px 0;
    white-space: normal;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    flex-direction: column;
    align-items: flex-start;
  }
}