/* ========================================
   Yogin.hu Stylesheet By Mentha
   ======================================== */

/* ========================================
   Design Tokens
   ======================================== */

:root {
  --yogin-accent: #5b414d;
  --yogin-accent-hover: #7cb4a7;
  --yogin-accent-dark: #533745;
  --yogin-title-line: #525B76;
  --yogin-highlight: #b8dad3;
  --yogin-ink: #0b2f35;
  --yogin-surface: #fff;
  --yogin-surface-soft: #f6f3f4;
  --yogin-text: rgba(0, 0, 0, 0.82);
  --yogin-text-soft: rgba(0, 0, 0, 0.78);
  --yogin-muted: rgba(0, 0, 0, 0.65);
  --yogin-card-border: rgba(0, 0, 0, 0.10);
  --yogin-border: rgba(0, 0, 0, 0.12);
  --yogin-border-strong: rgba(0, 0, 0, 0.18);
  --yogin-border-light: rgba(255, 255, 255, 0.22);
  --yogin-overlay: rgba(0, 0, 0, 0.35);
  --yogin-date-bg: rgb(124 180 167 / 50%);
  --yogin-soft: rgba(242, 168, 185, 0.12);
  --yogin-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  --yogin-shadow-strong: 0 10px 22px rgba(0, 0, 0, 0.18);
  --yogin-shadow-book: 0 10px 30px rgba(90, 61, 78, 0.08);
  --yogin-shadow-book-hover: 0 16px 36px rgba(90, 61, 78, 0.14);
  --field-radius: 5px;
  --field-border: rgba(0, 0, 0, 0.18);
  --field-border-focus: #5b414d;
  --field-bg: #ffffff66;
  --field-text: rgba(0, 0, 0, 0.82);
  --field-highlight: rgba(91, 65, 77, 0.14);
  --field-highlight-strong: rgba(242, 168, 185, 0.22);
}

/* ========================================
   Global Utilities
   ======================================== */

body {
    background-image: url(../images/g1.jpg.webp);
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}


.yogin-member p.price,
.yogin-member p.membership-price {
  text-decoration: line-through;
}

.yogin-member p.price.memberprice {
  text-decoration: none;
}

div#topbar .container {
  display: flex;
  justify-content: space-between;
}

nav#social-navigation ul li,
nav#header-navigation ul li {
  float: left;
}

nav#header-navigation ul li {
  list-style: none;
}

nav#social-navigation span {
  display: none;
}

.iframe_container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.iframe_container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

h2.col-12 {
  font-size: 5rem;
  font-weight: 300;
}

#inner-content header.page-header .page-title,
.single-title {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: clamp(18px, 4vw, 34px) 0 18px;
  padding: 0 0 0.45rem 0;
  font-size: clamp(2.1rem, 6.2vw, 5.6rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  word-break: normal;
  isolation: isolate;
  font-weight: 700;
  color: var(--yogin-accent-dark);
}

#inner-content header.page-header .page-title::before,
.single-title::before {
  /*content: "";
  position: absolute;
  left: 0;
  right: 28%;
  bottom: 0.42rem;
  height: 0.62em;
  transform: skewX(-10deg);
  z-index: -1;
  background: linear-gradient(90deg, var(--yogin-highlight), rgb(255 255 255 / 10%));*/
}

#inner-content header.page-header .page-title::after,
.single-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: min(220px, 55%);
  max-width: 100%;
  height: 3px;
  background: var(--yogin-title-line);
}

#inner-content article.blog a.read-more,
#inner-content article.course a.read-more,
#inner-content article.blog a.more-link,
#inner-content article.course a.more-link {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 0;
}

a.read-more,
.read-more {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid var(--yogin-accent);
  color: var(--yogin-accent);
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.1;
  transition: all 0.2s ease;
}

a.read-more:hover,
.read-more:hover {
  background: var(--yogin-accent-hover);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575.98px) {
  #inner-content header.page-header .page-title,
  .single-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    letter-spacing: 0;
  }

  #inner-content header.page-header .page-title::before,
  .single-title::before {
    right: 8%;
    transform: none;
  }

  #inner-content header.page-header .page-title::after,
  .single-title::after {
    width: min(180px, 70%);
  }
}

/* ========================================
   Shared Listing Cards
   ======================================== */

#inner-content .blog.row > article.blog,
#inner-content .courses.row > article.course {
  display: flex;
}

#inner-content .blog.row > article.blog .post-inner,
#inner-content .courses.row > article.course .post-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#inner-content article.blog .post-body,
#inner-content article.course .post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#inner-content article.blog .post-excerpt,
#inner-content article.course .post-excerpt {
  position: relative;
  flex: 1;
  padding-bottom: 52px;
}

/* ========================================
   Home Page
   ======================================== */

.home {
  overflow-x: clip;
}

.home #inner-content .row {
  row-gap: clamp(10px, 2vw, 18px);
}

.home #inner-content article.course {
  margin-bottom: clamp(16px, 2vw, 26px);
}

.home #inner-content h2.col-12 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: clamp(18px, 4vw, 34px) 0 18px;
  padding: 0 0 0.45rem 0;
  font-size: clamp(2.1rem, 6.2vw, 5.6rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  word-break: normal;
  isolation: isolate;
  color: var(--yogin-accent-dark);
  background: radial-gradient(circle, var(--yogin-accent) 55%, transparent 56%)
    left calc(min(220px, 55%) - 2px) bottom 1px / var(--dot-size) var(--dot-size) no-repeat;
}

.home #inner-content h2.col-12::before {
  /*content: "";
  position: absolute;
  left: 0;
  right: 28%;
  bottom: 0.42rem;
  height: 0.62em;
  background: linear-gradient(90deg, var(--yogin-highlight), rgb(255 255 255 / 10%));
  transform: skewX(-10deg);
  z-index: -1;*/
}

.home #inner-content h2.col-12::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: min(220px, 55%);
  max-width: 100%;
  height: 3px;
  background: var(--yogin-title-line);
}

.home #inner-content h2.col-12::marker {
  content: "";
}

.home #inner-content h2.col-12 i,
.home #inner-content h2.col-12 ._noop {
  display: none;
}

.home #inner-content article.course .post-inner,
.archive #inner-content article.blog .post-inner,
.archive #inner-content article.course .post-inner {
  background: var(--yogin-surface);
  border: 1px solid var(--yogin-card-border);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home #inner-content article.course:hover .post-inner,
.archive #inner-content article.blog:hover .post-inner,
.archive #inner-content article.course:hover .post-inner {
  transform: translateY(-2px);
  box-shadow: var(--yogin-shadow);
  border-color: rgba(0, 0, 0, 0.18);
}

.home #inner-content article.course .post-header,
.archive #inner-content article.blog .post-header,
.archive #inner-content article.course .post-header {
  position: relative;
}

.home #inner-content article.course .post-image,
.archive #inner-content article.blog .post-image,
.archive #inner-content article.course .post-image {
  position: relative;
}

.home #inner-content article.course .post-image a,
.archive #inner-content article.blog .post-image a,
.archive #inner-content article.course .post-image a {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: #eee;
}

.home #inner-content article.course .post-image img,
.archive #inner-content article.blog .post-image img,
.archive #inner-content article.course .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.home #inner-content article.course:hover .post-image img,
.archive #inner-content article.blog:hover .post-image img,
.archive #inner-content article.course:hover .post-image img {
  transform: scale(1.04);
}

.home #inner-content article.course .post-image a::after,
.archive #inner-content article.blog .post-image a::after,
.archive #inner-content article.course .post-image a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.home #inner-content article.course:hover .post-image a::after,
.archive #inner-content article.blog:hover .post-image a::after,
.archive #inner-content article.course:hover .post-image a::after {
  opacity: 0.95;
}

.home #inner-content article.course .post-body,
.archive #inner-content article.blog .post-body,
.archive #inner-content article.course .post-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.home #inner-content article.course .post-body h3,
.archive #inner-content article.blog .post-body h3,
.archive #inner-content article.course .post-body h3, #inner-content article.course .post-body h3 {
    margin: 0;
    line-height: 1.25;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;

}

.home #inner-content article.course .post-body h3 a,
.archive #inner-content article.blog .post-body h3 a,
.archive #inner-content article.course .post-body h3 a,
.book-card-title a {
  color: var(--yogin-accent-dark);
  text-decoration: none;
}

.home #inner-content article.course .post-body h3 a,
.book-card-title a {
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
}

.home #inner-content article.course .post-body h3 a:hover,
.archive #inner-content article.blog .post-body h3 a:hover,
.archive #inner-content article.course .post-body h3 a:hover {
  color: var(--yogin-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home #inner-content article.course .post-body a {
  color: var(--yogin-accent);
}

.home #inner-content article.course .post-body a:hover {
  color: #ffffff;
}

.home #inner-content article.course .post-excerpt,
.archive #inner-content article.blog .post-excerpt,
.archive #inner-content article.course .post-excerpt {
  color: var(--yogin-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  overflow: hidden;
}

.home #inner-content article.course .post-date,
.archive #inner-content article.blog .post-date,
.archive #inner-content article.course .post-date {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0;
  color: #fff;
  background: var(--yogin-date-bg);
  box-shadow: var(--yogin-shadow-strong);
  backdrop-filter: blur(6px);
}

.home #inner-content article.course .post-date .year,
.archive #inner-content article.blog .post-date .year,
.archive #inner-content article.course .post-date .year,
.home #inner-content article.course .post-date .month,
.archive #inner-content article.blog .post-date .month,
.archive #inner-content article.course .post-date .month {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
}

.home #inner-content article.course .post-date .day,
.archive #inner-content article.blog .post-date .day,
.archive #inner-content article.course .post-date .day {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.home #inner-content article.course .post-type,
.archive #inner-content article.course .post-type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 0;
  font-size: 0.85rem;
  line-height: 1.2;
}

.home #inner-content article.course .post-type {
  background: var(--yogin-highlight);
  border: 1px solid var(--yogin-highlight);
}

.home #inner-content article.course .post-type p,
.archive #inner-content article.course .post-type p {
  margin: 0;
}

.home #inner-content article.course :is(.icon-access, .icon-noaccess),
.archive #inner-content article.course :is(.icon-access, .icon-noaccess) {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  border-radius: 0;
  font-size: 0.85rem;
  background: var(--yogin-overlay);
  color: #fff;
  border: 1px solid var(--yogin-border-light);
  backdrop-filter: blur(6px);
}

.home #inner-content article.course :is(.icon-access, .icon-noaccess) span,
.archive #inner-content article.course :is(.icon-access, .icon-noaccess) span {
  opacity: 0.9;
}

.home #inner-content article.course .post-excerpt .more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 10px;
  padding: 0.6rem 0.9rem;
  border-radius: 0;
  border: 1px solid var(--yogin-accent);
  background: transparent;
  color: var(--yogin-accent);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.home #inner-content article.course .post-excerpt .more-link::after,
.home .home-blog-collage__more::after {
  content: "→";
}

.home #inner-content article.course .post-excerpt .more-link:hover,
.home .home-blog-collage__more:hover {
  background: var(--yogin-accent);
  color: #fff;
  transform: translateY(-1px);
  border-color: var(--yogin-accent);
}

.home .home-blog-collage {
  padding: clamp(18px, 3vw, 42px) 0 clamp(34px, 6vw, 90px);
}

.home .home-blog-collage__heading {
  position: relative;
  display: inline-block;
  margin: 14px 0 clamp(18px, 3vw, 34px);
  padding: 0 0.15rem 0.55rem;
  font-weight: 700;
  color: var(--yogin-ink);
}

.home .home-blog-collage__heading::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  right: 35%;
  bottom: 0.42rem;
  height: 0.62em;
  background: linear-gradient(90deg, rgba(43, 124, 134, 0.26), rgba(43, 124, 134, 0.08));
  transform: skewX(-10deg);
  z-index: -1;
}

.home .home-blog-collage__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(220px, 55%);
  height: 3px;
  background: var(--yogin-accent);
}

.home .home-blog-collage__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 4vw, 70px);
  row-gap: clamp(22px, 5vw, 90px);
  position: relative;
  isolation: isolate;
}

.home .home-blog-collage__bigtype {
  grid-column: 1 / -1;
  grid-row: 2;
  place-self: center;
  text-align: center;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: rgba(11, 47, 53, 0.18);
  z-index: 0;
  pointer-events: none;
}

.home .home-blog-collage__bigtype-main {
  display: block;
  font-size: clamp(56px, 9vw, 150px);
  font-weight: 600;
}

.home .home-blog-collage__bigtype-sub {
  display: block;
  font-size: clamp(40px, 7vw, 120px);
  font-weight: 300;
}

.home .home-blog-collage__item {
  z-index: 1;
}

.home .home-blog-collage__item.is-left {
  grid-column: 1 / span 6;
  grid-row: 1;
}

.home .home-blog-collage__item.is-right {
  grid-column: 7 / -1;
  grid-row: 1;
}

.home .home-blog-collage__item.is-center {
  grid-column: 5 / span 4;
  grid-row: 2;
  margin-top: calc(-1 * clamp(36px, 6vw, 90px));
}

.home .home-blog-collage__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #eee;
}

.home .home-blog-collage__item.is-left .home-blog-collage__media {
  aspect-ratio: 16 / 9;
}

.home .home-blog-collage__item.is-right .home-blog-collage__media {
  aspect-ratio: 4 / 5;
}

.home .home-blog-collage__item.is-center .home-blog-collage__media {
  aspect-ratio: 3 / 4;
}

.home .home-blog-collage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.home .home-blog-collage__item:hover .home-blog-collage__media img {
  transform: scale(1.035);
}

.home .home-blog-collage__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.home .home-blog-collage__date {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  background: var(--yogin-overlay);
  border: 1px solid var(--yogin-border-light);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 0;
  z-index: 1;
}

.home .home-blog-collage__date .day {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}

.home .home-blog-collage__date .month,
.home .home-blog-collage__date .year {
  opacity: 0.9;
  font-size: 0.82rem;
}

.home .home-blog-collage__meta {
  padding-top: 14px;
}

.home .home-blog-collage__item.is-center .home-blog-collage__meta {
  text-align: center;
}

.home .home-blog-collage__title {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.2;
}

.home .home-blog-collage__title a {
  color: var(--yogin-ink);
  text-decoration: none;
}

.home .home-blog-collage__title a:hover {
  color: var(--yogin-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home .home-blog-collage__excerpt {
  color: var(--yogin-text-soft);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.home .home-blog-collage__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--yogin-accent);
  color: var(--yogin-accent);
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
  margin-bottom: 2rem;
}

@media (max-width: 1199.98px) and (min-width: 768px){
  .home #inner-content .row > article.course{
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media (max-width: 767.98px) {
  .home #inner-content article.course {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home .home-blog-collage__grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .home .home-blog-collage__bigtype {
    display: none;
  }

  .home .home-blog-collage__item,
  .home .home-blog-collage__item.is-left,
  .home .home-blog-collage__item.is-right,
  .home .home-blog-collage__item.is-center {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }

  .home .home-blog-collage__item.is-left .home-blog-collage__media,
  .home .home-blog-collage__item.is-right .home-blog-collage__media,
  .home .home-blog-collage__item.is-center .home-blog-collage__media {
    aspect-ratio: 16 / 9;
  }

  .home .home-blog-collage__item.is-center .home-blog-collage__meta {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .home #inner-content h2.col-12 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    letter-spacing: 0;
  }

  .home #inner-content h2.col-12::before {
    right: 8%;
    transform: none;
  }

  .home #inner-content h2.col-12::after {
    width: min(180px, 70%);
  }

  .home #inner-content article.course .post-date,
  .archive #inner-content article.blog .post-date,
  .archive #inner-content article.course .post-date {
    left: 10px;
    bottom: 10px;
    padding: 0.4rem 0.55rem;
  }
}

@media (max-width: 991.98px) {
  .home #inner-content article.course .post-image a,
  .archive #inner-content article.blog .post-image a,
  .archive #inner-content article.course .post-image a {
    aspect-ratio: 4 / 3;
  }

  .home #inner-content article.course .post-excerpt,
  .archive #inner-content article.blog .post-excerpt,
  .archive #inner-content article.course .post-excerpt {
    -webkit-line-clamp: 6;
  }
}

/* =========================================
   Home/Archive course badges: never overlap
========================================= */


@media (max-width: 1399.98px) and (min-width: 768px){


  #inner-content article.course .post-header{
    --badge-inset: 12px;
    --badge-gap: 10px;


    --badge-fs: clamp(.72rem, .25vw + .62rem, .85rem);
    --badge-py: clamp(.22rem, .25vw, .35rem);
    --badge-px: clamp(.40rem, .40vw, .60rem);


    --badge-right-max: clamp(9rem, 34%, 12.5rem);
  }


  #inner-content article.course .post-type{
    top: var(--badge-inset);
    left: var(--badge-inset);

 
    right: auto !important;
    width: fit-content;
    max-width: calc(
      100% - (var(--badge-inset) * 2) - var(--badge-right-max) - var(--badge-gap)
    );

    font-size: var(--badge-fs) !important;
    padding: var(--badge-py) var(--badge-px) !important;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
  }


  #inner-content article.course .post-type p{
    display: inline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }


  #inner-content article.course :is(.icon-access, .icon-noaccess){
    top: var(--badge-inset);
    right: var(--badge-inset);

    max-width: var(--badge-right-max);
    font-size: var(--badge-fs) !important;
    padding: var(--badge-py) var(--badge-px) !important;
    line-height: 1.1;

    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
  }


  #inner-content article.course :is(.icon-access, .icon-noaccess) span{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 16ch; 
  }
}


@media (max-width: 1024px) and (min-width: 768px){
  #inner-content article.course .post-header{
    --badge-gap: 8px;
    --badge-right-max: clamp(8.25rem, 36%, 11rem);
    --badge-fs: clamp(.70rem, .20vw + .60rem, .82rem);
  }
}

/* ========================================
   Archive Pages
   ======================================== */

.archive #inner-content article.blog .post-excerpt,
.archive #inner-content article.course .post-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.archive #inner-content article.blog .post-excerpt,
.archive #inner-content article.course .post-excerpt,
.home #inner-content article.course .post-excerpt {
  -webkit-line-clamp: 5;
	text-align: justify;
}

.archive #inner-content article.course .post-type {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--yogin-card-border);
  max-width: calc(100% - 24px);
}

.archive #inner-content article.course .post-type span {
  opacity: 0.9;
}

.archive #inner-content article.course :is(.icon-access, .icon-noaccess) {
  white-space: nowrap;
}

.archive #inner-content .page-header {
  margin: clamp(18px, 4vw, 34px) 0 18px;
}

.archive #inner-content .archive-description {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.65;
  margin: 0 0 8px;
}

.archive #inner-content .blog.row,
.archive #inner-content .courses.row {
  row-gap: clamp(10px, 2vw, 18px);
}

/* ========================================
   Books Page
   ======================================== */

.books-grid {
  row-gap: 32px;
}

.book-card-col {
  display: flex;
}

.book-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--yogin-surface);
  border: 1px solid rgba(90, 61, 78, 0.14);
  box-shadow: var(--yogin-shadow-book);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--yogin-shadow-book-hover);
}

.book-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--yogin-surface-soft);
  border-bottom: 1px solid rgba(90, 61, 78, 0.10);
}

.book-card-image a,
.book-card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.book-card-image img {
  object-fit: cover;
  object-position: center;
}

.book-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 24px;
}

.book-card-title {
  margin: 0 0 12px;
}

.book-card-title a {
  text-decoration: none;
}

.book-card-excerpt {
  flex: 1 1 auto;
}

.book-card-excerpt > *:last-child {
  margin-bottom: 0;
}

.book-read-more,
.book-card .read-more {
  margin-top: 20px;
  align-self: flex-start;
}

@media (max-width: 991.98px) {
  .book-card-body {
    padding: 18px 18px 20px;
  }
}

@media (max-width: 767.98px) {
  .books-grid {
    row-gap: 24px;
  }

  .book-card-body {
    padding: 16px;
  }

  .book-read-more,
  .book-card .read-more {
    margin-top: 16px;
  }
}


#inner-content #main.row{
  row-gap: clamp(10px, 2vw, 18px);
  align-items: stretch;
}

#inner-content #main.row > article.course{
  display: flex;
}

#inner-content article.course .post-inner{
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--yogin-card-border, rgba(0,0,0,.10));
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

#inner-content article.course:hover .post-inner{
  transform: translateY(-2px);
  box-shadow: var(--yogin-shadow, 0 12px 26px rgba(0,0,0,.08));
  border-color: rgba(0,0,0,.18);
}

/* Image */
#inner-content article.course .post-header{ position: relative; }
#inner-content article.course .post-image{ position: relative; }

#inner-content article.course .post-image a{
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: #eee;
}

#inner-content article.course .post-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease;
}

#inner-content article.course:hover .post-image img{
  transform: scale(1.04);
}

#inner-content article.course .post-image a::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.45) 100%);
  opacity: .80;
  pointer-events: none;
  transition: opacity .18s ease;
}

#inner-content article.course:hover .post-image a::after{
  opacity: .92;
}

#inner-content article.course .post-body{
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

#inner-content article.course .post-body h3{
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
}

#inner-content article.course .post-body h3 a{
  color: var(--yogin-accent-dark, #0b2f35);
  text-decoration: none;
}

#inner-content article.course .post-body h3 a:hover{
  color: var(--yogin-accent, #7CB4A7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991.98px){
  #inner-content article.course .post-image a{
    aspect-ratio: 4 / 3;
  }
}

/* ========================================
   Blog Single
   ======================================== */

.blog-single-page {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(32px, 5vw, 72px);
}

.blog-single-post {
  margin: 0;
}

.blog-single-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 64px);
}

.blog-single-layout__media,
.blog-single-layout__content {
  flex: 1 1 0;
  min-width: 0;
}

.blog-single-layout__media {
  width: calc(50% - 32px);
}

.blog-single-layout__content {
  width: calc(50% - 32px);
}

.blog-single-layout__image-wrap {
  position: relative;
  overflow: hidden;
  background: #edf3f1;
  aspect-ratio: 4 / 5;
}

.blog-single-layout__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single-layout__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #edf3f1 0%, #dbe8e3 100%);
  color: #2f3a36;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.blog-single-layout__date {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 10px 14px;
  background: rgb(83 55 69);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.blog-single-layout__meta-under-image {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-single-layout__author,
.blog-single-layout__categories {
  margin: 0;
  color: #2f3a36;
  font-size: 0.98rem;
  line-height: 1.5;
  font-style: normal;
}

.blog-single-layout__meta-label,
.blog-single-layout__meta-value,
.blog-single-layout__categories a {
  font-style: normal !important;
}

.blog-single-layout__meta-label {
  font-weight: 700;
  margin-right: 6px;
}

.blog-single-layout__categories a {
  color: #7CB4A7;
  text-decoration: none;
}

.blog-single-layout__categories a:hover {
  text-decoration: underline;
}

.blog-single-layout__header {
  margin-bottom: 18px;
}

.blog-single-layout__title {
  margin: 0;
  color: #2f3a36;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.blog-single-layout__excerpt {
  margin: 0 0 24px;
  color: #4b5a55;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.blog-single-layout__excerpt p:last-child {
  margin-bottom: 0;
}

.blog-single-layout__text,
.blog-single-layout__text p,
.blog-single-layout__text li {
  color: #2f3a36;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.8;
}

.blog-single-layout__text a {
  color: #7CB4A7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-single-layout__text h2,
.blog-single-layout__text h3,
.blog-single-layout__text h4 {
  color: #2f3a36;
  line-height: 1.15;
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}

.blog-single-layout__text img {
  max-width: 100%;
  height: auto;
}

.blog-single-layout__footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 58, 54, 0.12);
}

.blog-single-layout__footer .tags {
  margin: 0;
  color: #2f3a36;
  font-style: normal;
}

.blog-single-layout__footer .tags-title {
  font-weight: 700;
  margin-right: 6px;
}

.blog-single-layout__footer a {
  display: inline-block;
  margin: 4px 6px 0 0;
  padding: 6px 12px;
  border: 1px solid #7CB4A7;
  color: #7CB4A7;
  text-decoration: none;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.blog-single-layout__footer a:hover {
  background: #7CB4A7;
  color: #fff;
}

.blog-single-layout__author-on-image {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 10px 14px;
  background: rgb(124 180 167);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-style: normal;
}

.blog-single-layout__author-on-image .blog-single-layout__meta-label,
.blog-single-layout__author-on-image .blog-single-layout__meta-value {
  color: #fff;
  font-style: normal !important;
}

@media (max-width: 991px) {
  .blog-single-layout {
    flex-direction: column;
    gap: 26px;
  }

  .blog-single-layout__media,
  .blog-single-layout__content {
    width: 100%;
    flex: 0 0 100%;
  }

  .blog-single-layout__image-wrap {
    aspect-ratio: 16 / 10;
  }

  .blog-single-layout__title {
    font-size: clamp(1.9rem, 9vw, 3.4rem);
  }
}

@media (max-width: 640px) {
  .blog-single-layout__date {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .blog-single-layout__text,
  .blog-single-layout__text p,
  .blog-single-layout__text li {
    line-height: 1.75;
  }

  .blog-single-layout__author-on-image {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }
}

/* ========================================
   Course Single
   ======================================== */

.kurzus-single .tudastar {
  margin-top: 2rem;
  padding: clamp(20px, 3vw, 36px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.kurzus-single .tudastar + .tudastar,
.kurzus-single .elofizetesek {
  margin-top: 2rem;
}

.kurzus-single .tudastar_notification {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vw, 30px);
  padding: 16px 20px;
  background: #f7eef2;
  border: 1px solid #e6d6de;
  border-left: 5px solid #1b6856;
}

.kurzus-single .tudastar_notification::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 999px;
  background: #1b6856;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.kurzus-single .tudastar_notification p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #4f3140;
}

.kurzus-single .tudastar__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 48px);
}

.kurzus-single .tudastar__top > .tudastar__media,
.kurzus-single .tudastar__top > .tudastar__text {
  flex: 1 1 calc(50% - 24px);
  max-width: calc(50% - 12px);
  min-width: 0;
}

.kurzus-single .tudastar__media img,
.kurzus-single .tudastar__media .wp-post-image {
  display: block;
  width: 100%;
  height: auto;
}

.kurzus-single .tudastar__text > *:first-child {
  margin-top: 0;
}

.kurzus-single .tudastar__text > *:last-child {
  margin-bottom: 0;
}

.kurzus-single .tudastar__text p,
.kurzus-single .tudastar__text li {
  line-height: 1.8;
}

.kurzus-single .tudastar__videos {
  margin-top: clamp(28px, 5vw, 44px);
  display: grid;
  gap: 24px;
}

.kurzus-single .tudastar__videos .iframe_container,
.kurzus-single .tudastar__videos .restricted_video {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,0.10);
}

.kurzus-single .iframe_container {
  position: relative;
  padding-top: 56.25%;
}

.kurzus-single .iframe_container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.kurzus-single .paid_video {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 3rem;
}

.kurzus-single .paid_video h2 {
  margin: 0 0 0.75rem;
}

.kurzus-single .paid_video > *:last-child {
  margin-bottom: 0;
}

.kurzus-single .elofizetesek {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(124, 180, 167, .1);
  border: 1px solid #7cb4a733;
  margin-top: 2rem;
}

.kurzus-single .buyit-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.kurzus-single .buyit-buttons li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid #7cb4a733;
  box-shadow: 0 10px 24px rgba(122, 75, 99, 0.06);
  margin: 0;
}

.kurzus-single .buyit-buttons .button {
  margin-top: auto;
}

.kurzus-single .restricted_video {
  width: 100%;
}

.kurzus-single .restricted_video .restricted_video__ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #001d3d;
}

.kurzus-single .restricted_video .restricted_video__ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.kurzus-single .restricted_video--placeholder .video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(90deg, #001d3d 0%, #003566 100%);
}

.kurzus-single .restricted_video--placeholder .video-placeholder-code {
  display: block;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.5rem, 14vw, 8rem);
}

.kurzus-single .tudastar_notification a {
  color: #1b6856;
  font-weight: 700;
  text-decoration: underline;
}

.kurzus-single .elofizetesek h3 {
  margin: 0 0 1rem;
}

.kurzus-single .buyit-buttons li h3 {
  margin: 0 0 0.25rem;
  color: #4f3140;
}

.kurzus-single .buyit-buttons li p {
  margin: 0;
}

.kurzus-single .membership-price {
  margin-top: auto;
  padding-top: 10px;
  color: #1b6856;
  font-weight: 700;
  line-height: 1.2;
}

.kurzus-single .membership-price,
.kurzus-single .membership-price .amount,
.kurzus-single .membership-price bdi {
  font-size: clamp(1.5rem, 3vw, 1rem);
  color: #b8dad3;
}

span.woocommerce-Price-amount.amount {
    margin-top: auto;
    padding-top: 10px;
    color: #1b6856;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p.price.memberprice {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}


.profile-edit-form .row > [class*="col-"] {
  min-width: 0;
}


.profile-edit-form p {
  width: 100%;
  max-width: 100%;
}

.profile-edit-form .select2-container {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}


.profile-edit-form .select2-container .selection,
.profile-edit-form .select2-container .select2-selection--single {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}


.profile-edit-form .select2-dropdown {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}


.profile-edit-form .select2-results,
.profile-edit-form .select2-results__options {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.kurzus-single .buyit-buttons .button,
.kurzus-single .buyit-buttons a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 22px;
  border: 1px solid #1b6856;
  background: #1b6856;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: none;
  transition: all 0.2s ease;
}

.kurzus-single .buyit-buttons .button:hover,
.kurzus-single .buyit-buttons a.button:hover,
.kurzus-single .buyit-buttons .button:focus,
.kurzus-single .buyit-buttons a.button:focus {
  background: #fff;
  color: #1b6856 !important;
  border-color: #1b6856;
  text-decoration: none !important;
}

@media (max-width: 860px) {
  .kurzus-single .tudastar__top {
    flex-direction: column;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .kurzus-single .tudastar__top > .tudastar__media,
  .kurzus-single .tudastar__top > .tudastar__text {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .kurzus-single .buyit-buttons {
    grid-template-columns: 1fr;
  }

  .kurzus-single .buyit-buttons .button,
  .kurzus-single .buyit-buttons a.button {
    width: 100%;
  }
}

:root{
  --course-more-h: clamp(40px, 2.2vw, 46px);
  --course-more-gap: clamp(12px, 1.1vw, 18px);
  --course-more-space: calc(var(--course-more-h) + var(--course-more-gap));
}


#inner-content .courses.row article.course .post-excerpt, #inner-content .row article.course .post-excerpt {
    position: relative;
    padding-bottom: var(--course-more-space) !important;
    display: flex;
    gap: 10px;
}


#inner-content .courses.row article.course .post-excerpt > a.read-more,
#inner-content .row article.course .post-excerpt > a.read-more{
  position: absolute !important;
  left: 0;
  bottom: 0;
  margin-top: 0 !important;
  min-height: var(--course-more-h); 
  display: inline-flex;
  align-items: center;
}

/* ========================================
   Contact Page
   ======================================== */

.yogin-contact-page {
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.yogin-contact-page .page-header {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.yogin-contact-page .page-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 18px 10px 0;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 400;
  color: #5d4352;
}

.yogin-contact-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: min(220px, 55vw);
  height: 18px;
  background: #ecd0d9;
  z-index: -1;
}

.yogin-contact-intro {
  max-width: 760px;
  margin: 0 0 clamp(28px, 5vw, 50px);
}

.yogin-contact-subtitle {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b7f8d;
}

.yogin-contact-lead {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.8;
  color: #5f5560;
}

.yogin-contact-cards {
  row-gap: 24px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.yogin-contact-card {
  height: 100%;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #7cb4a733;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(93, 67, 82, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yogin-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(93, 67, 82, 0.10);
}

.yogin-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(124, 180, 167, .1);
  color: #7b5c6d;
  font-size: 1rem;
}

.yogin-contact-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  color: #382a33;
}

.yogin-contact-card p {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.8;
  color: #5e5560;
}

.yogin-contact-card p:last-child {
  margin-bottom: 0;
}

.yogin-contact-card a {
  color: #7b5c6d;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.yogin-contact-card a:hover {
  color: #5d4352;
  border-bottom-color: #5d4352;
}

.yogin-contact-card span {
  color: #998a93;
  font-size: 0.96em;
}

.yogin-contact-form-section {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(124, 180, 167, .1);
  border: 1px solid #7cb4a733;
  border-radius: 0;
}

.yogin-contact-form-text {
  padding-right: clamp(0px, 2vw, 30px);
  margin-bottom: 24px;
}

.yogin-contact-form-text__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b7f8d;
}

.yogin-contact-form-text h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  color: #4f3946;
}

.yogin-contact-form-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #665a63;
}

.yogin-contact-form-box {
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255,255,255,0.82);
  border: 1px solid #7cb4a733;
  border-radius: 0;
  backdrop-filter: blur(2px);
}

.yogin-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.yogin-cf7-field {
  margin-bottom: 18px;
}

.yogin-cf7-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f7a86;
}

.yogin-contact-form-box input[type="text"],
.yogin-contact-form-box input[type="email"],
.yogin-contact-form-box input[type="tel"],
.yogin-contact-form-box textarea,
.yogin-contact-form-box select,
.yogin-contact-form-box .wpcf7-form-control {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cdbdc5;
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #3f333a;
  box-shadow: none;
  outline: none;
  transition: border-color 0.25s ease;
}

.yogin-contact-form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.yogin-contact-form-box input:focus,
.yogin-contact-form-box textarea:focus,
.yogin-contact-form-box select:focus,
.yogin-contact-form-box .wpcf7-form-control:focus {
  border-bottom-color: #7b5c6d;
  box-shadow: none;
  outline: none;
}

.yogin-cf7-submit {
  margin-top: 10px;
}

.yogin-contact-form-box input[type="submit"],
.yogin-contact-form-box .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 28px;
  border: 1px solid #7b5c6d;
  border-radius: 0;
  background: #7cb4a7;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.yogin-contact-form-box input[type="submit"]:hover,
.yogin-contact-form-box .wpcf7-submit:hover {
  background: #1b6856;
  border-color: #5d4352;
  transform: translateY(-1px);
}

.yogin-contact-form-box .wpcf7-spinner {
  margin-top: 12px;
}

.yogin-contact-form-box .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #b14f67;
}

.yogin-contact-form-box .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 0;
  font-size: 0.95rem;
}
.wpcf7 label {
    width: 100%;
}
@media (max-width: 991px) {
  .yogin-contact-form-text {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .yogin-cf7-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .yogin-contact-card,
  .yogin-contact-form-section,
  .yogin-contact-form-box {
    border-radius: 0;
  }

  .yogin-contact-page .page-title::after {
    height: 14px;
    bottom: 0.25rem;
    width: min(140px, 45vw);
  }

  .yogin-contact-form-box input[type="submit"],
  .yogin-contact-form-box .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }
}

/* ========================================
   404 Page
   ======================================== */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order,
.woocommerce a.checkout-button,
.woocommerce .return-to-shop .button,
.woocommerce .wc-backward,
.woocommerce .woocommerce-form-login__submit,
.woocommerce .woocommerce-form-register__submit,
.woocommerce button[name="apply_coupon"],
.woocommerce button[name="update_cart"], .yogin-404-button, .yogin-404-button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--yogin-accent) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--yogin-accent) !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.1;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

.yogin-404-page {
  padding-top: clamp(40px, 7vw, 90px);
  padding-bottom: clamp(50px, 8vw, 110px);
}

.yogin-404-card {
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px);
  text-align: center;
  background: #fff;
  border: 1px solid rgba(8, 76, 97, 0.10);
  box-shadow: 0 18px 60px rgba(8, 76, 97, 0.08);
}

.yogin-404-header {
  margin-bottom: 1.25rem;
}

.yogin-404-code {
  margin: 0 0 0.75rem;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  font-weight: 700;
  color: #533745;
  letter-spacing: 0.04em;
}

.yogin-404-card .page-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: #084C61;
}

.yogin-404-content {
  max-width: 620px;
  margin: 0 auto;
}

.yogin-404-content p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: #533745;
}

.yogin-404-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.yogin-404-button,
.yogin-404-button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.yogin-404-button:hover,
.yogin-404-button.button:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .yogin-404-card {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .yogin-404-button,
  .yogin-404-button.button {
    width: 100%;
    max-width: 320px;
  }
}

/* ========================================
   WooCommerce Base
   ======================================== */

.woocommerce,
.woocommerce-page {
  overflow-x: clip;
}

.woocommerce a:not(.button),
.woocommerce-page a:not(.button) {
  color: var(--yogin-accent);
  transition: color 0.18s ease;
}

.woocommerce a:not(.button):hover,
.woocommerce-page a:not(.button):hover {
  color: var(--yogin-accent-hover);
}

.woocommerce form .form-row {
  margin: 0 0 14px;
  padding: 0;
}

.woocommerce form .form-row label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--yogin-accent-dark);
  font-weight: 500;
}

.woocommerce form .form-row .required {
  color: var(--yogin-accent);
}

.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"],
.woocommerce input[type="search"],
.woocommerce input[type="url"],
.woocommerce input[type="date"],
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container--default .select2-selection--single,
.woocommerce .select2-container--default .select2-selection--multiple {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--yogin-border-strong);
  border-radius: 0;
  background: #fff;
  color: var(--yogin-text);
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.woocommerce textarea {
  min-height: 140px;
  resize: vertical;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.2;
  padding-left: 0;
  color: var(--yogin-text);
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 10px;
}

.woocommerce input:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: none;
  border-color: var(--yogin-accent);
  box-shadow: 0 0 0 4px rgb(91 65 77 / 8%);
}

.woocommerce input[type="checkbox"],
.woocommerce input[type="radio"] {
  accent-color: var(--yogin-accent);
}

.woocommerce .woocommerce-form-login .lost_password,
.woocommerce .woocommerce-LostPassword {
  margin-top: 12px;
  font-size: 0.95rem;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #payment #place_order:hover,
.woocommerce a.checkout-button:hover,
.woocommerce .return-to-shop .button:hover,
.woocommerce .wc-backward:hover,
.woocommerce .woocommerce-form-login__submit:hover,
.woocommerce .woocommerce-form-register__submit:hover,
.woocommerce button[name="apply_coupon"]:hover,
.woocommerce button[name="update_cart"]:hover {
  background: var(--yogin-accent-hover) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  margin: 0 0 18px;
  padding: 16px 18px 16px 20px !important;
  border: 1px solid var(--yogin-border);
  border-left: 4px solid var(--yogin-accent);
  border-radius: 0;
  background: #fff;
  color: var(--yogin-accent-dark);
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--yogin-accent);
  top: 16px;
}

.woocommerce-notices-wrapper .woocommerce-message:focus,
.woocommerce-notices-wrapper .woocommerce-message:focus-visible {
  outline: none !important;
  border-color: #e4e4e4;
}

.woocommerce table.shop_table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  border: 1px solid var(--yogin-border);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px 16px;
  border-top: 1px solid var(--yogin-border);
  vertical-align: middle;
}

.woocommerce table.shop_table thead th {
  border-top: 0;
  background: rgba(242, 168, 185, 0.16);
  color: var(--yogin-accent-dark);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.woocommerce .quantity .qty {
  width: 88px;
  min-height: 46px;
  text-align: center;
  padding-inline: 8px;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]):not([type="file"]),
textarea,
select,
.woocommerce .input-text,
.woocommerce-page .input-text,
.woocommerce .select2-container--default .select2-selection--single,
.woocommerce .select2-container--default .select2-selection--multiple {
  background: var(--field-bg);
  color: var(--field-text);
  transition: border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    background-color 0.25s ease;
}

/* Checkout / billing country select2 width fix */
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_state_field {
  width: 100%;
  max-width: 100%;
}

.woocommerce-checkout #billing_country_field .woocommerce-input-wrapper,
.woocommerce-checkout #billing_state_field .woocommerce-input-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.woocommerce-checkout #billing_country_field .select2-hidden-accessible,
.woocommerce-checkout #billing_state_field .select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.woocommerce-checkout #billing_country_field .select2-container,
.woocommerce-checkout #billing_state_field .select2-container {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout #billing_country_field .select2-container .selection,
.woocommerce-checkout #billing_state_field .select2-container .selection {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
}

.woocommerce-checkout #billing_country_field .select2-selection--single, .woocommerce-checkout #billing_state_field .select2-selection--single {
    display: flex;
    align-items: center;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    background-color: var(--field-bg) !important;
}

.woocommerce-checkout #billing_country_field .select2-selection__rendered, .woocommerce-checkout #billing_state_field .select2-selection__rendered {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 11px 14px !important;
}

.woocommerce-checkout #billing_country_field .select2-dropdown,
.woocommerce-checkout #billing_state_field .select2-dropdown,
.woocommerce-checkout #billing_country_field .select2-results,
.woocommerce-checkout #billing_state_field .select2-results,
.woocommerce-checkout #billing_country_field .select2-results__options,
.woocommerce-checkout #billing_state_field .select2-results__options {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}


.woocommerce-checkout .col2-set > div,
.woocommerce-checkout .form-row,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  min-width: 0;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]):not([type="file"]):focus,
textarea:focus,
select:focus,
.woocommerce .input-text:focus,
.woocommerce-page .input-text:focus,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: none;
  border-color: var(--field-border-focus) !important;
  box-shadow: 0 0 0 3px var(--field-highlight),
    0 0 0 7px var(--field-highlight-strong);
  background: #fff;
}

.woocommerce .password-input,
.woocommerce-page .password-input {
  display: block;
  align-items: center;
  border: none;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  position: relative;
  width: 100%;
}

.woocommerce .password-input:focus-within,
.woocommerce-page .password-input:focus-within {
  border-color: var(--field-border-focus, #5b414d);
  box-shadow: 0 0 0 3px var(--field-highlight, rgba(91, 65, 77, 0.14)),
    0 0 0 7px var(--field-highlight-strong, rgba(242, 168, 185, 0.22));
}

.woocommerce .password-input input,
.woocommerce-page .password-input input {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 46px 0.78rem 0.9rem;
}

.woocommerce .password-input input:focus,
.woocommerce-page .password-input input:focus {
  box-shadow: none !important;
  outline: none;
}

.woocommerce .show-password-input,
.woocommerce-page .show-password-input {
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  margin: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0.7;
  cursor: pointer;
}

.woocommerce .password-input:focus-within .show-password-input,
.woocommerce-page .password-input:focus-within .show-password-input {
  transform: scale(1.05);
}

.woocommerce .show-password-input:hover,
.woocommerce-page .show-password-input:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}

.woocommerce .show-password-input::after,
.woocommerce-page .show-password-input::after,
.woocommerce .show-password-input::before,
.woocommerce-page .show-password-input::before {
  margin: 0;
}

.select2-container--default .select2-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 0 !important;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 6px;
  z-index: 99999;
}

.select2-container--default .select2-search--dropdown {
  padding: 10px 12px;
  background: #fff;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  min-height: 40px;
  padding: 8px 10px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.select2-container--default .select2-results > .select2-results__options,
.select2-results__options {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.select2-container--default .select2-results__option {
  margin: 0 !important;
  padding: 11px 14px !important;
  border: 0 !important;
  list-style: none !important;
  background: #fff;
  color: #0b2f35;
  line-height: 1.45;
  transition: background 0.15s ease, color 0.15s ease;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: rgba(242, 168, 185, 0.18) !important;
  color: #5b414d !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background: rgba(91, 65, 77, 0.08) !important;
  color: #5b414d !important;
  font-weight: 600;
}

.select2-container--default .select2-results__option[aria-disabled="true"],
.select2-container--default .select2-results__message {
  color: rgba(0, 0, 0, 0.48) !important;
  padding: 11px 14px !important;
  background: #fff !important;
}

.select2-results,
.select2-results ul,
.select2-results li {
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.woocommerce-notices-wrapper,
.woocommerce-notices-wrapper:focus,
.woocommerce-notices-wrapper:focus-visible,
.woocommerce-notices-wrapper *:focus,
.woocommerce-notices-wrapper *:focus-visible,
.woocommerce-notices-wrapper .woocommerce-error:focus,
.woocommerce-notices-wrapper .woocommerce-error:focus-visible,
.woocommerce-notices-wrapper .woocommerce-info:focus,
.woocommerce-notices-wrapper .woocommerce-info:focus-visible,
.woocommerce-notices-wrapper .woocommerce-message:focus,
.woocommerce-notices-wrapper .woocommerce-message:focus-visible,
.woocommerce-notices-wrapper ul[tabindex="-1"]:focus,
.woocommerce-notices-wrapper ul[tabindex="-1"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 767.98px) {
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    padding: 12px;
  }

  .select2-container--default .select2-dropdown {
    margin-top: 4px;
  }

  .select2-container--default .select2-results__option {
    padding: 12px 12px !important;
    font-size: 0.95rem;
  }
}


.woocommerce .password-input {
  position: relative;
  display: block;
  width: 100%;
}

.woocommerce .password-input .input-text {
  width: 100%;
  padding-right: 44px !important;
}

.woocommerce .password-input .show-password-input {
  position: absolute;
  right: 0;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 3;
  color: #5b414d;
  font-size: 0;
}

.woocommerce .password-input .show-password-input::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  opacity: 0.85;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b414d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/><circle cx='12' cy='12' r='3'/></svg>");
}

.woocommerce .password-input .show-password-input:hover::before {
  opacity: 1;
}

.woocommerce .password-input .show-password-input.display-password::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b414d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M17.94 17.94A10.94 10.94 0 0 1 12 19c-7 0-11-7-11-7a21.77 21.77 0 0 1 5.06-5.94'/><path d='M9.9 4.24A10.94 10.94 0 0 1 12 5c7 0 11 7 11 7a21.86 21.86 0 0 1-2.16 3.19'/><path d='M1 1l22 22'/><path d='M10.58 10.58A2 2 0 0 0 12 14a2 2 0 0 0 1.42-.58'/></svg>");
}

.woocommerce .password-input .show-password-input:focus,
.woocommerce .password-input .show-password-input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce .password-input .show-password-input,
.woocommerce .password-input .show-password-input:hover,
.woocommerce .password-input .show-password-input:active,
.woocommerce .password-input .show-password-input:focus,
.woocommerce .password-input .show-password-input:focus-visible {
  transform: translateY(-50%) !important;
  top: 50%;
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce .password-input .show-password-input:active {
  background: transparent !important;
}

.woocommerce .password-input .show-password-input:hover::before,
.woocommerce .password-input .show-password-input:focus::before,
.woocommerce .password-input .show-password-input:focus-visible::before,
.woocommerce .password-input .show-password-input:active::before {
  opacity: 1;
  filter: brightness(0.9);
}

.woocommerce .password-input .show-password-input:hover,
.woocommerce .password-input .show-password-input:focus,
.woocommerce .password-input .show-password-input:focus-visible,
.woocommerce .password-input .show-password-input:active {
  border-radius: 999px;
  background: rgba(91, 65, 77, 0.08) !important;
}

/* ========================================
   WooCommerce Product Pages
   ======================================== */

.woocommerce-page #inner-content header.page-header .page-title,
.single-product #inner-content .product_title {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: clamp(18px, 4vw, 34px) 0 18px;
  padding: 0 0 0.45rem 0;
  font-size: clamp(2.1rem, 6.2vw, 5.6rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  word-break: normal;
  isolation: isolate;
  font-weight: 200;
  color: var(--yogin-accent-dark);
}

.woocommerce-page #inner-content header.page-header .page-title::before,
.single-product #inner-content .product_title::before {
  /*content: "";
  position: absolute;
  left: 0;
  right: 28%;
  bottom: 0.42rem;
  height: 0.62em;
  transform: skewX(-10deg);
  z-index: -1;
  background: linear-gradient(90deg, var(--yogin-highlight), rgb(255 255 255 / 10%));*/
}

.woocommerce-page #inner-content header.page-header .page-title::after,
.single-product #inner-content .product_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: min(220px, 55%);
  max-width: 100%;
  height: 3px;
  background: var(--yogin-title-line);
}

.single-product div.product {
  display: grid;
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.single-product div.product > .product-description {
  grid-column: 1 / -1;
  color: var(--yogin-text);
  line-height: 1.75;
  margin-bottom: 4px;
}

.single-product div.product div.images,
.single-product div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.single-product div.product div.images {
  grid-column: 1;
}

.single-product div.product div.images .woocommerce-product-gallery__image,
.single-product div.product div.images img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.single-product div.product div.summary {
  grid-column: 2;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--yogin-border);
  background: #fff;
}

.single-product div.product .price {
  margin: 0 0 18px;
  color: var(--yogin-accent-dark);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 600;
}

.single-product div.product .woocommerce-product-details__short-description {
  color: var(--yogin-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.single-product div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--yogin-border);
}

.single-product div.product .product_meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--yogin-border);
  color: var(--yogin-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.single-product div.product .product_meta > span {
  display: block;
}

.single-product div.product .product_meta a {
  color: var(--yogin-accent);
}

.single-product span.onsale {
  min-width: auto;
  min-height: auto;
  padding: 8px 12px;
  border-radius: 0;
  background: var(--yogin-highlight);
  color: var(--yogin-accent-dark);
  line-height: 1.1;
  font-weight: 700;
  box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: clamp(24px, 4vw, 48px);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--yogin-accent);
  color: var(--yogin-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  background: var(--yogin-accent);
  color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  color: var(--yogin-text);
  line-height: 1.75;
}

.woocommerce ul.products {
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  padding: 0 0 18px;
  border: 1px solid var(--yogin-border);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: var(--yogin-shadow);
  border-color: rgba(0, 0, 0, 0.18);
}

.woocommerce ul.products li.product a img {
  margin: 0 0 14px;
  border-radius: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  padding: 0 14px;
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--yogin-accent-dark);
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 14px;
  margin: 0 0 14px;
  color: var(--yogin-accent-dark);
  font-weight: 600;
}

.woocommerce ul.products li.product .button {
  margin: 0 14px;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
  margin: 0 0 24px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border: 1px solid var(--yogin-border);
  border-radius: 0;
  margin: 0 0 0 82px;
  padding: 16px 18px;
}

.woocommerce #review_form #respond {
  padding: 0;
  background: transparent;
}

@media (max-width: 991.98px) {
  .single-product div.product {
    grid-template-columns: 1fr;
  }

  .single-product div.product div.images,
  .single-product div.product div.summary,
  .single-product div.product > .product-description {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .single-product div.product form.cart {
    align-items: stretch;
  }

  .single-product div.product form.cart .button,
  .single-product div.product form.cart .quantity {
    width: 100%;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    gap: 8px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li,
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .woocommerce-page #inner-content header.page-header .page-title,
  .single-product #inner-content .product_title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    letter-spacing: 0;
  }

  .woocommerce-page #inner-content header.page-header .page-title::before,
  .single-product #inner-content .product_title::before {
    right: 8%;
    transform: none;
  }

  .woocommerce-page #inner-content header.page-header .page-title::after,
  .single-product #inner-content .product_title::after {
    width: min(180px, 70%);
  }
}

/* ========================================
   WooCommerce Cart
   ======================================== */

.woocommerce div.product form.cart .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-checkout #place_order {
  min-width: 200px;
}

.woocommerce-cart table.cart img {
  width: 92px;
  border-radius: 0;
}

.woocommerce-cart table.cart td.product-name a {
  color: var(--yogin-accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.woocommerce-cart table.cart td.product-name a:hover {
  color: var(--yogin-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-cart table.cart td.actions {
  padding-top: 18px;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.woocommerce-cart table.cart td.actions .coupon input.input-text {
  min-width: 220px;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td,
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  font-weight: 600;
}

.woocommerce-cart .page-header {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.woocommerce-cart table.shop_table.cart {
  width: 100%;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent;
}

.woocommerce-cart table.shop_table.cart thead th {
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important;
  background: transparent;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 10px 14px;
  text-align: left;
}

.woocommerce-cart table.shop_table.cart td {
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important;
  background: transparent;
  padding: 16px 10px;
  vertical-align: middle;
  text-align: left;
}

.woocommerce-cart table.shop_table.cart .product-remove {
  width: 38px;
  padding-left: 0;
  padding-right: 6px;
}

.woocommerce-cart table.shop_table.cart .product-thumbnail {
  width: 88px;
  padding-right: 14px;
}

.woocommerce-cart table.shop_table.cart .product-name {
  width: auto;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.55) !important;
  background: transparent;
  border: 0;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover {
  color: #000 !important;
  background: transparent;
}

.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
  display: block;
  height: auto;
  border-radius: 0;
}

.woocommerce-cart table.shop_table.cart td.product-name a {
  color: #0b2f35;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.woocommerce-cart table.shop_table.cart td.product-name a:hover {
  color: #5b414d;
  text-decoration: none;
}

.woocommerce-cart table.shop_table.cart td.product-price,
.woocommerce-cart table.shop_table.cart td.product-subtotal {
  white-space: nowrap;
}

.woocommerce-cart table.shop_table.cart .quantity {
  display: flex;
  align-items: center;
  border-radius: 0;
}

.woocommerce-cart table.shop_table.cart .quantity .qty {
  width: 66px;
  min-height: 33px;
  text-align: center;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.woocommerce-cart table.shop_table.cart td.actions {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.woocommerce-cart table.shop_table.cart td.actions::before,
.woocommerce-cart table.shop_table.cart td.actions::after {
  display: none !important;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon .input-text {
  width: 220px;
  min-height: 44px;
  margin: 0 !important;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  box-shadow: none;
}

.woocommerce-cart table.shop_table.cart td.actions .coupon .input-text:focus {
  outline: none;
  border-bottom-color: #5b414d;
}

.woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"] {
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals {
  width: 100%;
  margin-top: clamp(32px, 5vw, 56px);
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  /* max-width: 690px; */
  padding: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
  margin: 0 0 22px;
  padding: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
  font-weight: 300;
  color: #0b2f35;
  text-transform: none;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
  border: 0 !important;
  background: transparent;
  border-collapse: collapse;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14) !important;
  background: transparent;
  padding: 14px 0;
  text-align: right;
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
    text-align: left;
}

.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-top: 18px;
  padding-bottom: 0;
}

td.product-quantity {
  display: flex;
  justify-content: flex-start;
}

.woocommerce-cart .yogin-cart-actions {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding-top: 20px;
  flex-wrap: nowrap;
}

.woocommerce-cart .yogin-cart-actions__coupon {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.woocommerce-cart .yogin-cart-actions__coupon .input-text {
  width: clamp(140px, 22vw, 220px);
  max-width: 100%;
  min-width: 0;
}

.woocommerce-cart .yogin-cart-actions__update {
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}

.woocommerce-cart .yogin-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: #fff;
  min-width: 150px;
  height: 40px;
}

.woocommerce-cart .yogin-qty__btn {
  width: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3f4d3e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.woocommerce-cart .yogin-qty__btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.woocommerce-cart .yogin-qty__btn--minus {
  border-right: 1px solid rgba(0, 0, 0, 0.22);
}

.woocommerce-cart .yogin-qty__btn--plus {
  border-left: 1px solid rgba(0, 0, 0, 0.22);
}

.woocommerce-cart .yogin-qty .quantity {
  margin: 0;
  display: flex;
}

.woocommerce-cart .yogin-qty .quantity .qty {
  width: 56px;
  min-width: 56px;
  height: 40px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  text-align: center;
  font-size: 1rem;
  padding: 0;
  box-shadow: none;
  -moz-appearance: textfield;
}

.woocommerce-cart .yogin-qty .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart .yogin-qty .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-cart .yogin-qty .quantity .screen-reader-text {
  display: none;
}

.woocommerce-cart .yogin-cart-actions .button {
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  line-height: 1.1;
  padding: clamp(10px, 1.2vw, 14px) clamp(14px, 1.8vw, 22px);
}

@media (max-width: 767.98px) {
  .woocommerce-cart table.cart td.actions .coupon {
    display: block;
  }

  .woocommerce-cart table.cart td.actions .coupon input.input-text,
  .woocommerce-cart table.cart td.actions .coupon .button,
  .woocommerce-cart table.cart td.actions > .button,
  .woocommerce-checkout #place_order,
  .woocommerce .woocommerce-form-login__submit,
  .woocommerce .woocommerce-form-register__submit,
  .woocommerce a.checkout-button {
    width: 100%;
  }

  .woocommerce-cart .page-content > .woocommerce {
    max-width: 100%;
  }

  .woocommerce-cart table.shop_table.cart,
  .woocommerce-cart table.shop_table.cart tbody,
  .woocommerce-cart table.shop_table.cart tr,
  .woocommerce-cart table.shop_table.cart td {
    width: 100%;
  }

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

  .woocommerce-cart table.shop_table.cart tr.cart_item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    display: flex;
  }

  .woocommerce-cart table.shop_table.cart tr.cart_item td {
    border: 0 !important;
    padding: 0 0 10px;
  }

  .woocommerce-cart table.shop_table.cart .quantity {
    justify-content: end;
  }

  td.product-subtotal {
    display: none;
  }

  td.product-name {
    flex: 1;
  }

  td.product-price {
    display: flex;
    justify-content: end;
  }

  td.product-quantity {
    justify-content: end;
    display: flex;
  }

  .woocommerce-cart .yogin-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce-cart .yogin-cart-actions__coupon {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .woocommerce-cart .yogin-cart-actions__coupon .input-text,
  .woocommerce-cart .yogin-cart-actions__coupon .button,
  .woocommerce-cart .yogin-cart-actions__update .button {
    width: 100%;
  }

  .woocommerce-cart .yogin-cart-actions__update {
    margin-left: 0;
  }

  .woocommerce-cart .yogin-qty {
    min-width: 132px;
    height: 48px;
  }

  .woocommerce-cart .yogin-qty__btn {
    width: 42px;
    min-width: 42px;
    font-size: 1.8rem;
  }

  .woocommerce-cart .yogin-qty .quantity .qty {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}

@media (max-width: 512px) {
  .woocommerce-cart .yogin-qty {
    min-width: 10px;
    height: 40px;
  }

  .woocommerce-cart .yogin-qty__btn {
    min-width: 40px;
    height: 40px;
  }
}

@media (max-width: 991.98px) {
  .woocommerce-cart .yogin-cart-actions {
    gap: 10px;
  }

  .woocommerce-cart .yogin-cart-actions__coupon {
    gap: 10px;
  }

  .woocommerce-cart .yogin-cart-actions .button {
    font-size: 0.9rem;
    padding: 10px 14px;
    letter-spacing: 0.02em;
  }

  .woocommerce-cart .yogin-cart-actions__coupon .input-text {
    width: 160px;
  }
}
.woocommerce-cart table.shop_table.cart td.product-subtotal {
    text-align: right;
}
span.in-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 48px;
    margin-top: 8px;
    padding: 12px 22px;
    border: 1px solid #ddd;
    background: #eee;
    color: #bbb !important;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    box-shadow: none;
    transition: all 0.2s ease;
}

/* ========================================
   WooCommerce Checkout
   ======================================== */

.woocommerce-checkout #order_review {
  margin-top: 24px;
  background: transparent;
  border: 0;
  padding: 0;
}

.woocommerce-checkout #payment {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 0 18px;
  padding: 0;
  border-bottom: 1px solid var(--yogin-border);
  border: 0;
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 14px 0;
  list-style: none;
  border-top: 0;
  margin: 0;
  border-bottom: 1px solid var(--yogin-checkout-border-soft);
}

.woocommerce-checkout #payment ul.payment_methods li:first-child {
  border-top: 0;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 10px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--yogin-text);
  border: 0;
  box-shadow: none;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--yogin-soft);
  display: none;
}

.woocommerce-checkout .yogin-checkout {
  --yogin-checkout-border: rgba(0, 0, 0, 0.18);
  --yogin-checkout-border-soft: rgba(0, 0, 0, 0.12);
}

.woocommerce-checkout .yogin-checkout__top {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-checkout .yogin-checkout__top .woocommerce-info,
.woocommerce-checkout .yogin-checkout__top .woocommerce-message,
.woocommerce-checkout .yogin-checkout__top .woocommerce-error, .yogin-tagsag-member-product-message {
  margin: 0 0 18px;
  padding: 22px 24px !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent !important;
  text-align: center;
  box-shadow: none;
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0;
  border: 0;
  padding: 0 !important;
  background: transparent !important;
  text-align: center;
}

.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-error::before {
  display: none;
}

.woocommerce-checkout .showcoupon,
.woocommerce-checkout .showlogin {
  display: inline-block;
  margin-top: 6px;
  text-decoration: none;
}

.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout form.woocommerce-form-login {
  margin: 0 0 24px;
  padding: 22px 24px;
  border: 1px solid var(--yogin-checkout-border-soft);
  background: transparent;
  box-shadow: none;
}

.woocommerce-checkout .yogin-checkout__fields {
  row-gap: 28px;
}

.woocommerce-checkout .yogin-checkout__col {
  margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3,
.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout .yogin-checkout__review-title {
  margin: 0 0 22px;
}

.woocommerce-checkout form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce-checkout form .form-row label {
  display: block;
  margin: 0 0 8px;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-checkout .select2-container--default .select2-selection--multiple {
  width: 100%;
  min-height: 48px;
  padding: 10px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--yogin-checkout-border) !important;
  border-radius: 0 !important;
  background-color: var(--field-bg);
  box-shadow: none !important;
}

.woocommerce-checkout textarea {
  min-height: 110px;
  resize: vertical;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0 !important;
  line-height: 1.5 !important;
  padding-right: 0 !important;
  color: inherit;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 0 !important;
  height: 18px;
  top: 50%;
  width: 18px;
  transform: translateY(-50%);
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: none;
  box-shadow: none !important;
}

.woocommerce-checkout .yogin-checkout__review-wrap {
  margin-top: clamp(28px, 5vw, 54px);
}

.woocommerce-checkout table.shop_table,
.woocommerce-checkout-review-order-table {
  width: 100%;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 14px 0;
  border: 0 !important;
  border-bottom: 1px solid var(--yogin-checkout-border-soft) !important;
  background: transparent !important;
  text-align: left;
  vertical-align: top;
}

.woocommerce-checkout table.shop_table thead th,
.woocommerce-checkout-review-order-table thead th {
  padding-top: 0;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  font-weight: 600;
}

.woocommerce-checkout .place-order {
  padding-top: 10px;
}

.woocommerce-checkout #place_order {
  width: auto;
  min-width: 180px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 28px 10px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #5b414d transparent transparent transparent;
  border-width: 5px 4px 0 4px;
}

.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
  border-bottom-color: #5b414d !important;
}

@media (max-width: 991.98px) {
  .woocommerce-checkout .yogin-checkout__fields {
    row-gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .woocommerce-checkout .woocommerce-form-login-toggle,
  .woocommerce-checkout .woocommerce-form-coupon-toggle,
  .woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info,
  .woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error,
  .woocommerce-checkout .yogin-checkout__top .woocommerce-info,
  .woocommerce-checkout .yogin-checkout__top .woocommerce-message,
  .woocommerce-checkout .yogin-checkout__top .woocommerce-error,
  .woocommerce-checkout form.checkout_coupon,
  .woocommerce-checkout form.woocommerce-form-login {
    padding: 18px 16px !important;
  }

  .woocommerce-checkout #place_order {
    width: 100%;
  }
}

/* ========================================
   WooCommerce Order Received
   ======================================== */

.woocommerce-order-received .woocommerce,
.woocommerce-order-received .woocommerce-order {
  margin-inline: auto;
}

.woocommerce-order-received .woocommerce-notice--success,
.woocommerce-order-received .woocommerce-thankyou-order-received {
  margin: 0 0 28px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.woocommerce-order-received .woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.woocommerce-order-received .woocommerce-order-overview li {
  width: 50%;
  margin: 0;
  padding: 16px 0;
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.7);
}

.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  color: inherit;
  font-weight: 600;
}

.woocommerce-order-received .woocommerce-order > p:not(.woocommerce-notice) {
  margin: 0 0 30px;
  line-height: 1.7;
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
  margin: 0 0 20px;
}

.woocommerce-order-received .woocommerce-order-details {
  margin: 0 0 36px;
}

.woocommerce-order-received .woocommerce-table.order_details,
.woocommerce-order-received .shop_table.order_details {
  width: 100%;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent;
}

.woocommerce-order-received .woocommerce-table.order_details th,
.woocommerce-order-received .woocommerce-table.order_details td,
.woocommerce-order-received .shop_table.order_details th,
.woocommerce-order-received .shop_table.order_details td {
  padding: 14px 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
  background: transparent !important;
  text-align: left;
  vertical-align: top;
}

.woocommerce-order-received .woocommerce-table.order_details thead th,
.woocommerce-order-received .shop_table.order_details thead th {
  padding-top: 0;
}

.woocommerce-order-received .woocommerce-table.order_details tfoot th,
.woocommerce-order-received .woocommerce-table.order_details tfoot td,
.woocommerce-order-received .shop_table.order_details tfoot th,
.woocommerce-order-received .shop_table.order_details tfoot td {
  font-weight: 600;
}

.woocommerce-order-received .woocommerce-table.order_details a,
.woocommerce-order-received .shop_table.order_details a {
  text-decoration: none;
}

.woocommerce-order-received .woocommerce-table.order_details a:hover,
.woocommerce-order-received .shop_table.order_details a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 10px;
}

.woocommerce-order-received .woocommerce-customer-details address {
  margin: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-style: normal;
  line-height: 1.75;
}

.woocommerce-order-received .woocommerce-customer-details address p {
  margin: 10px 0 0;
}

@media (max-width: 767.98px) {
  .woocommerce-order-received .woocommerce-notice--success,
  .woocommerce-order-received .woocommerce-thankyou-order-received {
    padding: 18px 16px;
  }

  .woocommerce-order-received .woocommerce-order-overview li {
    width: 100%;
    padding: 14px 0;
  }

  .woocommerce-order-received .woocommerce-table.order_details th,
  .woocommerce-order-received .woocommerce-table.order_details td,
  .woocommerce-order-received .shop_table.order_details th,
  .woocommerce-order-received .shop_table.order_details td {
    padding: 12px 0;
  }
}

/* ========================================
   WooCommerce My Account
   ======================================== */

.woocommerce-account #customer_login > div > h2,
.woocommerce-checkout #order_review_heading,
.woocommerce-cart .cart_totals > h2,
.woocommerce-cart .cross-sells > h2,
.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2,
.woocommerce .woocommerce-Reviews-title,
.woocommerce div.product .woocommerce-tabs .panel > h2,
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-shipping-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  position: relative;
  display: block;
  margin: 0 0 22px;
  padding: 0 0 0.45rem 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 300;
  color: var(--yogin-accent-dark);
  isolation: isolate;
}

.woocommerce-account #customer_login > div > h2::before,
.woocommerce-checkout #order_review_heading::before,
.woocommerce-cart .cart_totals > h2::before,
.woocommerce-cart .cross-sells > h2::before,
.woocommerce .related.products > h2::before,
.woocommerce .upsells.products > h2::before,
.woocommerce .woocommerce-Reviews-title::before,
.woocommerce div.product .woocommerce-tabs .panel > h2::before,
.woocommerce-checkout .woocommerce-billing-fields > h3::before,
.woocommerce-checkout .woocommerce-shipping-fields > h3::before,
.woocommerce-checkout .woocommerce-additional-fields > h3::before {
  /*content: "";
  position: absolute;
  left: 0;
  right: 40%;
  bottom: 0.38rem;
  height: 0.58em;
  transform: skewX(-10deg);
  z-index: -1;
  background: linear-gradient(90deg, rgba(242, 168, 185, 0.92), rgba(255, 255, 255, 0.06));*/
}

.woocommerce-account #customer_login > div > h2::after,
.woocommerce-checkout #order_review_heading::after,
.woocommerce-cart .cart_totals > h2::after,
.woocommerce-cart .cross-sells > h2::after,
.woocommerce .related.products > h2::after,
.woocommerce .upsells.products > h2::after,
.woocommerce .woocommerce-Reviews-title::after,
.woocommerce div.product .woocommerce-tabs .panel > h2::after,
.woocommerce-checkout .woocommerce-billing-fields > h3::after,
.woocommerce-checkout .woocommerce-shipping-fields > h3::after,
.woocommerce-checkout .woocommerce-additional-fields > h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: min(160px, 58%);
  height: 3px;
  background: var(--yogin-title-line);
}

.woocommerce-account #customer_login,
.woocommerce-checkout #customer_details {
  row-gap: clamp(18px, 3vw, 28px);
}

.woocommerce-account #customer_login > div,
.woocommerce-checkout #customer_details > div,
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce .woocommerce-tabs,
.woocommerce .related.products,
.woocommerce .upsells.products {
    box-shadow: none;
  padding: clamp(18px, 3vw, 30px);
}

.woocommerce-checkout .col2-set,
.woocommerce-account #customer_login {
  margin-inline: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 28px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  border-top: 1px solid var(--yogin-border);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:first-child {
  border-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: var(--yogin-accent-dark, #0b2f35);
  transition: color .18s ease, padding-left .18s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(242, 168, 185, 0.12);
  color: var(--yogin-accent);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
  min-width: 0;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}


.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
  margin: 0;
  flex: 0 1 auto;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-first,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-last {
  grid-column: span 1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-wide,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-child {
  grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .clear {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  box-shadow: none;
  background: transparent;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
  padding: 0;
  margin-left: 8px;
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--yogin-accent-dark);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row-wide {
  grid-column: span 1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row-wide:last-child {
  grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce {
  --yogin-account-border: rgba(0, 0, 0, 0.14);
  --yogin-account-border-strong: rgba(0, 0, 0, 0.2);
  --yogin-account-text: rgba(0, 0, 0, 0.78);
  --yogin-account-muted: rgba(0, 0, 0, 0.58);
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.woocommerce-account .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce > #customer_login {
  grid-column: 1 / -1;
}

.woocommerce-account #customer_login.u-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  margin: 0;
}

Ã³
.woocommerce-account #customer_login > .u-column1,
.woocommerce-account #customer_login > .u-column2,
.woocommerce-account #customer_login > .col-xxl-6,
.woocommerce-account #customer_login > .col-xl-6,
.woocommerce-account #customer_login > .col-lg-6,
.woocommerce-account #customer_login > .col-md-6,
.woocommerce-account #customer_login > .col-sm-12,
.woocommerce-account #customer_login > .col-12 {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--yogin-accent, #5b414d);
  padding-left: 8px;
}

.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
  color: var(--yogin-account-text);
}

.woocommerce-account .woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content a {
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error {
  margin: 0 0 20px;
  padding: 16px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--yogin-account-border) !important;
  background: transparent !important;
  box-shadow: none;
}

.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-order-details__title,
.woocommerce-account .woocommerce-column__title {
  margin: 0 0 18px;
}

.woocommerce-account table.shop_table,
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .my_account_orders,
.woocommerce-account .woocommerce-table--order-downloads,
.woocommerce-account .woocommerce-table--order-details {
  width: 100%;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table span.woocommerce-Price-amount.amount {
    font-size: 1rem;
}

.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td,
.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-orders-table td,
.woocommerce-account .my_account_orders th,
.woocommerce-account .my_account_orders td,
.woocommerce-account .woocommerce-table--order-downloads th,
.woocommerce-account .woocommerce-table--order-downloads td,
.woocommerce-account .woocommerce-table--order-details th,
.woocommerce-account .woocommerce-table--order-details td {
  padding: 14px 0;
  border: 0 !important;
  border-bottom: 1px solid var(--yogin-account-border) !important;
  background: transparent !important;
  text-align: left;
  vertical-align: top;
}

.woocommerce-account table.shop_table thead th,
.woocommerce-account .woocommerce-orders-table thead th,
.woocommerce-account .my_account_orders thead th,
.woocommerce-account .woocommerce-table--order-downloads thead th,
.woocommerce-account .woocommerce-table--order-details thead th {
  padding-top: 0;
  color: var(--yogin-account-muted);
  font-size: 0.82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}

.woocommerce-account table.shop_table tfoot th,
.woocommerce-account table.shop_table tfoot td,
.woocommerce-account .woocommerce-table--order-details tfoot th,
.woocommerce-account .woocommerce-table--order-details tfoot td {
  font-weight: 600;
}

.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce-account .woocommerce-Address {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--yogin-account-border);
}

.woocommerce-account .woocommerce-Address-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.woocommerce-account .woocommerce-Address address {
  margin: 0;
  font-style: normal;
  line-height: 1.75;
}

.woocommerce-account form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce-account form .form-row label {
  display: block;
  margin: 0 0 8px;
}

.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="tel"],
.woocommerce-account input[type="password"],
.woocommerce-account input[type="number"],
.woocommerce-account textarea,
.woocommerce-account select,
.woocommerce-account .select2-container--default .select2-selection--single,
.woocommerce-account .select2-container--default .select2-selection--multiple {
  width: 100%;
  min-height: 48px;
  padding: 10px 10px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--yogin-account-border-strong) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce-account textarea {
  min-height: 110px;
  resize: vertical;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  line-height: 28px;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 0;
  height: 100%;
}

.woocommerce-account input:focus,
.woocommerce-account textarea:focus,
.woocommerce-account select:focus,
.woocommerce-account .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-account .select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: none;
  box-shadow: none !important;
}

.woocommerce-account table.shop_table .button,
.woocommerce-account .woocommerce-orders-table .button,
.woocommerce-account .my_account_orders .button {
  margin: 4px 0;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message {
  position: relative;
  margin: 0 0 28px;
  padding: 22px 22px 22px 72px !important;
  border: 1px solid rgba(91, 65, 77, 0.16) !important;
  border-left: 4px solid #8a5a73 !important;
  background: rgba(138, 90, 115, 0.10) !important;
  color: #5b414d !important;
  box-shadow: none !important;
  list-style: none !important;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error::before,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message::before {
  content: "!";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #8a5a73;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info::before {
  content: "✓";
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error li,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info li,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  line-height: 1.65;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error a,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info a,
.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message a {
  color: #8a5a73 !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-account #customer_login input[type="text"],
.woocommerce-account #customer_login input[type="email"],
.woocommerce-account #customer_login input[type="password"],
.woocommerce-account #customer_login textarea,
.woocommerce-account #customer_login select,
.woocommerce-account #customer_login .input-text,
.woocommerce-account #customer_login .password-input {
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce-account #customer_login input[type="text"]:focus,
.woocommerce-account #customer_login input[type="email"]:focus,
.woocommerce-account #customer_login input[type="password"]:focus,
.woocommerce-account #customer_login textarea:focus,
.woocommerce-account #customer_login select:focus,
.woocommerce-account #customer_login .input-text:focus,
.woocommerce-account #customer_login .password-input:focus-within {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-color: #8a5a73 !important;
}

.woocommerce-account #customer_login .password-input {
  display: flex;
  align-items: center;
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18) !important;
  background: transparent !important;
}

.woocommerce-account #customer_login .password-input input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-right: 42px;
}

.woocommerce-account #customer_login .show-password-input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce-account #customer_login input:-webkit-autofill,
.woocommerce-account #customer_login input:-webkit-autofill:hover,
.woocommerce-account #customer_login input:-webkit-autofill:focus,
.woocommerce-account #customer_login textarea:-webkit-autofill,
.woocommerce-account #customer_login select:-webkit-autofill {
  -webkit-text-fill-color: #5b414d !important;
  -webkit-box-shadow: 0 0 0 1000px #f7f6f2 inset !important;
  box-shadow: 0 0 0 1000px #f7f6f2 inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin-top: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .u-column1,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .col-2 {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  line-height: 1.8;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  .woocommerce-account #customer_login > div,
  .woocommerce-checkout #customer_details > div,
  .woocommerce-cart .cart_totals,
  .woocommerce-checkout #order_review,
  .woocommerce .woocommerce-tabs,
  .woocommerce .related.products,
  .woocommerce .upsells.products {
    padding: 18px;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-first,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-last,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-wide,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row-wide,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row-wide:last-child,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-child {
    grid-column: 1 / -1;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-account #customer_login.u-columns {
    grid-template-columns: 1fr;
  }

  .woocommerce-account table.shop_table,
  .woocommerce-account table.shop_table thead,
  .woocommerce-account table.shop_table tbody,
  .woocommerce-account table.shop_table tr,
  .woocommerce-account table.shop_table th,
  .woocommerce-account table.shop_table td,
  .woocommerce-account .woocommerce-orders-table,
  .woocommerce-account .woocommerce-orders-table thead,
  .woocommerce-account .woocommerce-orders-table tbody,
  .woocommerce-account .woocommerce-orders-table tr,
  .woocommerce-account .woocommerce-orders-table th,
  .woocommerce-account .woocommerce-orders-table td,
  .woocommerce-account .my_account_orders,
  .woocommerce-account .my_account_orders thead,
  .woocommerce-account .my_account_orders tbody,
  .woocommerce-account .my_account_orders tr,
  .woocommerce-account .my_account_orders th,
  .woocommerce-account .my_account_orders td,
  .woocommerce-account .woocommerce-table--order-downloads,
  .woocommerce-account .woocommerce-table--order-downloads thead,
  .woocommerce-account .woocommerce-table--order-downloads tbody,
  .woocommerce-account .woocommerce-table--order-downloads tr,
  .woocommerce-account .woocommerce-table--order-downloads th,
  .woocommerce-account .woocommerce-table--order-downloads td,
  .woocommerce-account .woocommerce-table--order-details,
  .woocommerce-account .woocommerce-table--order-details thead,
  .woocommerce-account .woocommerce-table--order-details tbody,
  .woocommerce-account .woocommerce-table--order-details tr,
  .woocommerce-account .woocommerce-table--order-details th,
  .woocommerce-account .woocommerce-table--order-details td {
    display: block;
    width: 100%;
  }

  .woocommerce-account table.shop_table thead,
  .woocommerce-account .woocommerce-orders-table thead,
  .woocommerce-account .my_account_orders thead,
  .woocommerce-account .woocommerce-table--order-downloads thead,
  .woocommerce-account .woocommerce-table--order-details thead {
    display: none;
  }

  .woocommerce-account table.shop_table tr,
  .woocommerce-account .woocommerce-orders-table tr,
  .woocommerce-account .my_account_orders tr,
  .woocommerce-account .woocommerce-table--order-downloads tr,
  .woocommerce-account .woocommerce-table--order-details tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--yogin-account-border);
  }

  .woocommerce-account table.shop_table td,
  .woocommerce-account .woocommerce-orders-table td,
  .woocommerce-account .my_account_orders td,
  .woocommerce-account .woocommerce-table--order-downloads td,
  .woocommerce-account .woocommerce-table--order-details td {
    padding: 8px 0;
    border: 0 !important;
  }

  .woocommerce-account table.shop_table td::before,
  .woocommerce-account .woocommerce-orders-table td::before,
  .woocommerce-account .my_account_orders td::before,
  .woocommerce-account .woocommerce-table--order-downloads td::before,
  .woocommerce-account .woocommerce-table--order-details td::before {
    content: attr(data-title);
    display: block;
    margin-bottom: 4px;
    color: var(--yogin-account-muted);
    font-size: 0.78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .woocommerce-account .woocommerce-Address-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce-account .woocommerce-notices-wrapper .woocommerce-error,
  .woocommerce-account .woocommerce-notices-wrapper .woocommerce-info,
  .woocommerce-account .woocommerce-notices-wrapper .woocommerce-message {
    padding: 18px 16px 18px 62px !important;
  }

  .woocommerce-account .woocommerce-notices-wrapper .woocommerce-error::before,
  .woocommerce-account .woocommerce-notices-wrapper .woocommerce-info::before,
  .woocommerce-account .woocommerce-notices-wrapper .woocommerce-message::before {
    left: 16px;
    width: 30px;
    height: 30px;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .woocommerce-account #customer_login > div > h2::before,
  .woocommerce-checkout #order_review_heading::before,
  .woocommerce-cart .cart_totals > h2::before,
  .woocommerce-cart .cross-sells > h2::before,
  .woocommerce .related.products > h2::before,
  .woocommerce .upsells.products > h2::before,
  .woocommerce .woocommerce-Reviews-title::before,
  .woocommerce div.product .woocommerce-tabs .panel > h2::before,
  .woocommerce-checkout .woocommerce-billing-fields > h3::before,
  .woocommerce-checkout .woocommerce-shipping-fields > h3::before,
  .woocommerce-checkout .woocommerce-additional-fields > h3::before {
    right: 18%;
    transform: none;
  }

  .woocommerce-account #customer_login > div > h2::after,
  .woocommerce-checkout #order_review_heading::after,
  .woocommerce-cart .cart_totals > h2::after,
  .woocommerce-cart .cross-sells > h2::after,
  .woocommerce .related.products > h2::after,
  .woocommerce .upsells.products > h2::after,
  .woocommerce .woocommerce-Reviews-title::after,
  .woocommerce div.product .woocommerce-tabs .panel > h2::after,
  .woocommerce-checkout .woocommerce-billing-fields > h3::after,
  .woocommerce-checkout .woocommerce-shipping-fields > h3::after,
  .woocommerce-checkout .woocommerce-additional-fields > h3::after {
    width: min(140px, 68%);
  }
}

.scaffolding-page-navi .page-numbers {
	align-items: center;
	justify-content: center;
	background: transparent;
	color: #533745;
	text-decoration: none;
	transition: all 0.2s ease;
}

 .page-numbers.current,
 .page-numbers:hover,
 .page-numbers:focus {

	border-color: #573d4a;
	color: #fff;
}

.scaffolding-page-navi ul li a:hover, .scaffolding-page-navi ul li a:focus {
    text-decoration: none;
    background: #573d4a;
    color: #fff;
}

.scaffolding-page-navi ul li span.current {
    background-color: #533745;
    color: #fff;
}

table.middletable {
    width: unset;
    border: none;
    text-align: center;
    margin: auto;
}
table.middletable td {
    border: none;
    padding: 0;
}


html {
  scroll-behavior: smooth;
}

.kurzus-single .paid_video {
  scroll-margin-top: 180px;
}


.kurzus-single ul li {
  list-style: none;
}
.kurzus-single ul.toc li {
    text-transform: uppercase;
}

.kurzus-single ul li a {
  color: #533745;
  font-weight:500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kurzus-single ul li a:hover,
.kurzus-single ul li a:focus {
  color: #b8dad3;
}


.kurzus-single ul {
  margin: 0;
  padding-left: 0;
}

p:first-child {
    margin-top: 0;
}