/* ============================================================================
   Pomgarden · Elementor / Atomic overrides
   ============================================================================ */

/* -------------------------------------------------------------------------
   Elementor base fixes
   ------------------------------------------------------------------------- */

.elementor-kit-9 {
  background-color: var(--pg-cream);
}

.elementor-widget-heading .elementor-heading-title {
  line-height: inherit;
}

.elementor-widget-text-editor p:last-child,
.elementor-widget-text-editor p:only-child {
  margin-bottom: 0;
}

.elementor-button-text {
  line-height: 1;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */

.pg-header {
  position: relative;
  z-index: 50;
  display: block;
  width: 100%;
  padding-block: 18px 20px;
  background: var(--pg-cream);
  overflow: visible;
}

.pg-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: min(100% - var(--pg-page-gutter), var(--pg-container-wide));
  max-width: var(--pg-container-wide);
  margin-inline: auto;
  overflow: visible;
}

.pg-header-inner > .e-con-inner,
.pg-nav-bar > .e-con-inner {
  width: 100%;
  max-width: none;
}

.pg-nav-bar {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: var(--pg-nav-height);
  border-radius: 10px;
  background: var(--pg-green-900);
  box-sizing: border-box;
}

.pg-nav-menu {
  position: relative;
  z-index: 7;
  width: auto;
  max-width: 100%;
  margin-right: auto;
}

.pg-nav-menu .elementor-nav-menu--main {
  display: block;
}

.pg-nav-menu .elementor-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--pg-nav-gap);
  margin: 0;
  padding-block: 0;
  padding-left: var(--pg-nav-x);
  padding-right: var(--pg-nav-x);
}

.pg-nav-menu .elementor-nav-menu > li {
  margin: 0;
}

.pg-nav-menu .elementor-nav-menu--main .elementor-item,
.pg-nav-menu .elementor-nav-menu--main .elementor-item:visited,
.pg-nav-menu .elementor-nav-menu--main .elementor-item:focus,
.pg-nav-menu .elementor-nav-menu--main .elementor-item:active {
  position: relative;
  padding: 0 !important;
  color: var(--pg-cream-light) !important;
  font-family: var(--pg-font-menu) !important;
  font-size: clamp(14px, 1.05vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: .035em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition:
    color .22s ease,
    transform .22s ease,
    opacity .22s ease,
    text-shadow .22s ease;
}

.pg-nav-menu .elementor-item::before {
  display: none;
}

.pg-nav-menu .elementor-nav-menu--main .elementor-item::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -11px;
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 999px 60% 999px 45%;
  background: var(--pg-sand);
  opacity: 0;
  transform: scaleX(.25) rotate(-1deg);
  transform-origin: left center;
  transition:
    opacity .24s ease,
    transform .24s ease;
}

.pg-nav-menu .elementor-nav-menu--main .elementor-item:hover,
.pg-nav-menu .elementor-nav-menu--main .elementor-item.elementor-item-active,
.pg-nav-menu .elementor-nav-menu--main .current-menu-item > .elementor-item {
  color: var(--pg-sand) !important;
  transform: translateY(-2px);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.pg-nav-menu .elementor-nav-menu--main .elementor-item:hover::after,
.pg-nav-menu .elementor-nav-menu--main .elementor-item.elementor-item-active::after,
.pg-nav-menu .elementor-nav-menu--main .current-menu-item > .elementor-item::after {
  opacity: .85;
  transform: scaleX(.92) rotate(-1deg);
}



.pg-header-logo,
img.pg-header-logo {
  position: relative;
  z-index: 8;
  display: block;
  width: var(--pg-logo-width);
  max-width: 100%;
  height: auto;
  margin-top: var(--pg-logo-top);
}

.pg-header-fruit,
img.pg-header-fruit {
  position: absolute;
  z-index: 20;
  top: -90px;
  right: -20px;
  display: block;
  width: var(--pg-fruit-width);
  max-width: none;
  height: auto;
  pointer-events: none;
  transform-origin: 70% 20%;
  animation: pgFruitFloat 7s ease-in-out infinite;
}

@keyframes pgFruitFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, 8px, 0) rotate(.8deg);
  }
}

/* -------------------------------------------------------------------------
   Header responsive
   ------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .pg-nav-bar {
    min-height: 56px;
  }

  .pg-nav-menu .elementor-nav-menu {
    gap: 26px;
    padding-left: 34px;
    padding-right: 24px;
  }

  .pg-nav-menu .elementor-nav-menu--main .elementor-item,
  .pg-nav-menu .elementor-nav-menu--main .elementor-item:visited,
  .pg-nav-menu .elementor-nav-menu--main .elementor-item:focus,
  .pg-nav-menu .elementor-nav-menu--main .elementor-item:active {
    font-size: 13px !important;
  }

  .pg-header-logo,
  img.pg-header-logo {
    width: clamp(300px, 34vw, 420px);
    margin-top: 25px;
  }

  .pg-header-fruit,
  img.pg-header-fruit {
    top: -62px;
    right: -130px;
    width: clamp(440px, 48vw, 540px);
    opacity: .95;
  }
}

@media (max-width: 767px) {
  .pg-header {
    padding-block: 12px 16px;
  }

  .pg-nav-bar {
    min-height: 92px;
    padding: 18px 22px;
    border-radius: 10px;
    align-items: center;
  }

  .pg-nav-menu {
    width: 100%;
  }

  .pg-nav-menu .elementor-nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    column-gap: 28px;
    row-gap: 12px;
    margin: 0;
    padding: 10px;
  }

  .pg-nav-menu .elementor-nav-menu--main .elementor-item,
  .pg-nav-menu .elementor-nav-menu--main .elementor-item:visited,
  .pg-nav-menu .elementor-nav-menu--main .elementor-item:focus,
  .pg-nav-menu .elementor-nav-menu--main .elementor-item:active {
    font-size: 14px !important;
    line-height: 1 !important;
    letter-spacing: .035em !important;
  }

  .pg-nav-menu .elementor-nav-menu--main .elementor-item::after {
    bottom: -6px;
    height: 3px;
  }

  .pg-header-logo,
  img.pg-header-logo {
    width: clamp(300px, 66vw, 420px);
    margin-top: 26px;
  }

  .pg-header-fruit,
  img.pg-header-fruit {
    z-index: 0;
    top: -70px;
    right: -190px;
    width: 430px;
    opacity: 1;
  }
}

/* ==========================================================================
   Pomgarden Hero
   Required Elementor classes:
   pg-hero
   pg-hero-inner
   pg-hero-card
   pg-hero-content
   pg-hero-left
   pg-hero-title-wrap
   pg-hero-title
   pg-hero-lead
   pg-hero-right
   ========================================================================== */

.pg-hero {
  position: relative;
  z-index: 1;
  margin-top: var(--pg-hero-gap-top);
  padding-bottom: var(--pg-hero-bottom);
  background: var(--pg-cream);
  overflow: visible;
}

.pg-hero-inner {
  width: min(100% - var(--pg-page-gutter), var(--pg-container-wide));
  max-width: var(--pg-container-wide);
  margin-inline: auto;
  box-sizing: border-box;
}

.pg-hero-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: var(--pg-hero-card-height);
  padding: var(--pg-hero-card-padding);
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--pg-green-900);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.pg-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 28, 21, .38) 0%,
      rgba(10, 28, 21, .20) 38%,
      rgba(10, 28, 21, .10) 68%,
      rgba(10, 28, 21, .5) 100%
    );
  pointer-events: none;
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(220px, 32%);
  column-gap: clamp(36px, 5vw, 92px);
  align-items: end;
  width: 100%;
  min-height: inherit;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pg-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pg-hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(4px, .4vw, 8px);
  width: 100%;
  max-width: 100%;
  margin: 0 ;
  padding: 0 !important;
  box-sizing: border-box;
}

.pg-hero-title,
.pg-hero-title .elementor-heading-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: var(--pg-hero-title-color);
  font-family: var(--pg-font-heading);
  font-size: var(--pg-hero-title-size);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.pg-hero-lead,
.pg-hero-lead p {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding: 0;
  color: var(--pg-hero-lead-color);
  font-family: var(--pg-font-body);
  font-size: var(--pg-hero-lead-size);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .01em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .36);
}

.pg-hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  min-height: 180px;
  margin: 0;
  padding: 0 0 clamp(10px, 1.4vw, 22px);
  box-sizing: border-box;
}

.pg-hero-right svg,
.pg-hero-right img {
  display: block;
  width: min(100%, 430px);
  max-width: 430px;
  height: auto;
}

/* -------------------------------------------------------------------------
   Hero tablet
   ------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .pg-hero {
    margin-top: 18px;
  }

  .pg-hero-card {
    min-height: clamp(500px, 58vw, 620px);
    padding: clamp(34px, 4vw, 42px);
    background-position: 54% center;
  }

  .pg-hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .pg-hero-left {
    max-width: 640px;
  }

  .pg-hero-right {
    display: none;
  }

  .pg-hero-title,
  .pg-hero-title .elementor-heading-title {
    font-size: clamp(58px, 9vw, 92px);
    line-height: .94;
  }

  .pg-hero-lead,
  .pg-hero-lead p {
    max-width: 480px;
    font-size: 17px;
    line-height: 1.3;
  }
}

/* -------------------------------------------------------------------------
   Hero mobile
   ------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .pg-hero-card {
    min-height: 720px;
    padding: 34px 28px 38px;
    border-radius: 18px;
    background-position: 57% center;
  }

  .pg-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    min-height: inherit;
    gap: 22px;
  }

  .pg-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: none;
  }

  .pg-hero-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    gap: 8px;
    margin-bottom: 28px;
  }

  .pg-hero-title,
  .pg-hero-title .elementor-heading-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: clamp(56px, 16vw, 84px);
    line-height: .94;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .pg-hero-lead,
  .pg-hero-lead p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 20px;
    line-height: 1.34;
  }

  .pg-hero-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: 0;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .pg-hero-right svg,
  .pg-hero-right img {
    display: block;
    width: min(52vw, 220px);
    max-width: 220px;
    height: auto;
  }
}

/* -------------------------------------------------------------------------
   Benefits strip
   ------------------------------------------------------------------------- */

.pg-benefits {
  position: relative;
  z-index: 1;
  background: var(--pg-cream);
  padding-block: var(--pg-benefits-y);
  overflow: hidden;
}

.pg-benefits-inner {
  width: min(100% - var(--pg-page-gutter), 1160px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(36px, 4vw, 72px);
  align-items: center;
  border-top: 0;
  border-bottom: 0;
}

.pg-benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 26px);
  min-height: clamp(150px, 12vw, 210px);
  padding-block: clamp(26px, 3vw, 46px);
  padding-inline: clamp(12px, 1.4vw, 28px);
  box-sizing: border-box;
  min-width: 0;
}

.pg-benefit-item:not(:last-child) {
  padding-right: clamp(22px, 2vw, 38px);
}

.pg-benefit-item:not(:first-child) {
  padding-left: clamp(22px, 2vw, 38px);
}

.pg-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: clamp(96px, 7vw, 140px);
  background: rgba(16, 52, 38, .48);
  transform: translateY(-50%);
}

.pg-benefit-icon {
  flex: 0 0 auto;
  width: var(--pg-benefit-icon-size);
  aspect-ratio: 1;
  border: 3px solid var(--pg-green-900);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pg-green-900);
}

.pg-benefit-icon svg,
.pg-benefit-icon img {
  width: 35px;
  height: auto;
  display: block;
}

.pg-benefit-copy {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  max-width: 430px;
}

.pg-benefit-copy h2,
.pg-benefit-copy h3,
.pg-benefit-title {
  margin: 0;
  color: var(--pg-green-900);
  font-family: var(--pg-font-display);
  font-size: var(--pg-benefit-title-size);
  font-weight: 900;
  line-height: .95;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.pg-benefit-copy p,
.pg-benefit-text {
  margin: 0;
  color: var(--pg-green-900);
  font-family: var(--pg-font-body);
  font-size: var(--pg-benefit-text-size);
  font-weight: 500;
  line-height: 1.24;
}

/* Tablet */
@media (max-width: 1024px) {
  .pg-benefits-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .pg-benefit-item {
    justify-content: flex-start;
    min-height: auto;
    padding: 28px 0;
    border-left: 0 !important;
  }

  .pg-benefit-item:not(:first-child) {
    padding-left: 0;
  }

  .pg-benefit-item:not(:last-child) {
    border-bottom: 0 !important;
  }

  .pg-benefit-copy {
    max-width: 620px;
  }

  .pg-benefit-copy h2,
  .pg-benefit-copy h3,
  .pg-benefit-title {
    font-size: clamp(24px, 2.6vw, 34px);
  }

  .pg-benefit-copy p,
  .pg-benefit-text {
    font-size: clamp(15px, 1.8vw, 19px);
  }
}



@media (min-width: 1440px) {
  .pg-benefits-inner {
    width: min(100% - var(--pg-page-gutter), 1100px);
  }

  .pg-benefit-item {
    gap: 18px;
    padding-inline: 14px;
  }

  .pg-benefit-item:not(:last-child) {
    padding-right: 24px;
  }

  .pg-benefit-item:not(:first-child) {
    padding-left: 24px;
  }

  .pg-benefit-title,
  .pg-benefit-copy h2,
  .pg-benefit-copy h3 {
    font-size: clamp(21px, 1.45vw, 30px);
    line-height: .96;
  }

  .pg-benefit-text,
  .pg-benefit-copy p {
    font-size: clamp(14px, .95vw, 17px);
    line-height: 1.22;
  }

  .pg-benefit-icon {
    width: 86px;
  }
}





/* Mobile */
@media (max-width: 767px) {
  .pg-benefits {
    padding-block: 34px 54px;
  }

  .pg-benefit-item {
    gap: 20px;
    padding: 24px 0;
  }

  .pg-benefit-icon {
    width: 76px;
    border-width: 2px;
  }

  .pg-benefit-copy {
    gap: 7px;
    max-width: none;
  }

  .pg-benefit-copy h2,
  .pg-benefit-copy h3,
  .pg-benefit-title {
    font-size: clamp(14px, 2.4vw, 20px);
    line-height: .98;
  }

  .pg-benefit-copy p,
  .pg-benefit-text {
    font-size: 13px;
    line-height: 1.2;
  }
}

/* -------------------------------------------------------------------------
   Home helpers
   ------------------------------------------------------------------------- */

.pg-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.pg-overlap-up {
  position: relative;
  z-index: 2;
  margin-top: clamp(-80px, -6vw, -40px);
}


/* -------------------------------------------------------------------------
   Season CTA section
   ------------------------------------------------------------------------- */

.pg-season {
  position: relative;
  z-index: 1;
  background: var(--pg-cream);
  padding-block: clamp(54px, 6vw, 110px);
  overflow: hidden;
}

.pg-season-inner {
  position: relative;
  width: min(100% - var(--pg-page-gutter), var(--pg-container-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(320px, 38%);
  align-items: center;
  column-gap: 0;
}

.pg-season-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.pg-season-visual img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
}

.pg-season-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 620px;
}

.pg-season-title,
.pg-season-title .elementor-heading-title {
  margin: 0 0 clamp(20px, 2vw, 32px);
  color: var(--pg-red);
  font-family: var(--pg-font-heading);
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: .012em;
  text-transform: uppercase;
}

.pg-season-lead,
.pg-season-lead p {
  margin: 0;
  color: var(--pg-green-900);
  font-family: var(--pg-font-body);
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.pg-season-lead {
  margin-bottom: clamp(24px, 2.4vw, 38px);
}

.pg-season-button .elementor-button,
.pg-season-button a.elementor-button,
.pg-season-button .elementor-button-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: clamp(46px, 3.3vw, 58px);
  padding: 0 clamp(30px, 3vw, 52px) !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--pg-red) !important;
  color: var(--pg-cream-light) !important;
  font-family: var(--pg-font-heading) !important;
  font-size: clamp(20px, 1.55vw, 28px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition:
    transform .22s ease,
    background-color .22s ease,
    box-shadow .22s ease;
}

.pg-season-button .elementor-button:hover,
.pg-season-button a.elementor-button:hover,
.pg-season-button .elementor-button-link:hover {
  transform: translateY(-2px);
  background: #c70016 !important;
  color: var(--pg-cream-light) !important;
  box-shadow: 0 12px 28px rgba(20, 45, 34, .18) !important;
}

.pg-season-button .elementor-button-text {
  color: var(--pg-cream-light) !important;
  font-family: var(--pg-font-heading) !important;
  line-height: 1 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .pg-season-inner {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .pg-season-visual {
    justify-content: center;
  }

  .pg-season-visual img {
    max-width: 680px;
  }

  .pg-season-content {
    max-width: 720px;
  }

  .pg-season-title,
  .pg-season-title .elementor-heading-title {
    font-size: clamp(44px, 7vw, 72px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pg-season {
    padding-block: 38px 64px;
  }

  .pg-season-inner {
    row-gap: 28px;
  }

  .pg-season-visual img {
    width: 112%;
    max-width: none;
    margin-left: -8%;
  }

  .pg-season-title,
  .pg-season-title .elementor-heading-title {
    margin-bottom: 20px;
    font-size: clamp(38px, 11vw, 56px);
    line-height: .94;
  }

  .pg-season-lead,
  .pg-season-lead p {
    font-size: 17px;
    line-height: 1.36;
  }

  .pg-season-lead {
    margin-bottom: 28px;
  }

  .pg-season-button .elementor-button,
  .pg-season-button {
    width: 100%;
    min-height: 56px;
    font-size: 24px;
  }
}

/* Header gránátalma csak főoldalon */
body:not(.home) .pg-header-fruit,
body:not(.front-page) .pg-header-fruit {
  display: none !important;
}

@media (min-width: 768px) {
  .pg-nav-menu .elementor-menu-toggle,
  .pg-nav-menu .elementor-nav-menu--dropdown {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pg-nav-menu .elementor-nav-menu--main {
    display: none !important;
  }

  .pg-nav-menu .elementor-menu-toggle {
    display: flex !important;
  }
}

/* -------------------------------------------------------------------------
   Mobile navigation fix
   ------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .pg-nav-menu .elementor-nav-menu--dropdown .elementor-nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .pg-nav-menu .elementor-nav-menu--dropdown .menu-item {
    width: 100% !important;
    display: block !important;
  }

  .pg-nav-menu .elementor-nav-menu--dropdown .menu-item > a {
    display: block !important;
    width: 100% !important;
    padding: 16px 24px !important;
    text-align: left !important;
  }

  .pg-nav-menu .elementor-nav-menu--dropdown ul,
  .pg-nav-menu .elementor-nav-menu--dropdown li,
  .pg-nav-menu .elementor-nav-menu--dropdown a {
    float: none !important;
    flex: none !important;
  }
}

/* -------------------------------------------------------------------------
   WooCommerce notices
   ------------------------------------------------------------------------- */

.woocommerce-notices-wrapper {
  width: min(100% - 48px, 760px);
  margin: 32px auto 40px;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
  padding: 22px 28px;
  border: 0 !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.32);
  color: #183f2f;
  font-family: inherit;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: none;
  outline: 0 !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: static;
  display: inline-block;
  margin-right: 8px;
  color: inherit;
}

.woocommerce-message {
  background: rgba(255, 255, 255, 0.28);
}

.woocommerce-info {
  background: rgba(255, 255, 255, 0.28);
}

.woocommerce-error {
  background: rgba(255, 255, 255, 0.28);
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

@media (max-width: 767px) {
  .woocommerce-notices-wrapper {
    width: calc(100% - 40px);
    margin: 24px auto 32px;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 1.35;
  }
}
/* -------------------------------------------------------------------------
   WooCommerce floating notices / toast
   ------------------------------------------------------------------------- */

.woocommerce-notices-wrapper {
  
  top: 104px;
  right: 40px;
  z-index: 99999;
  width: min(460px, calc(100vw - 80px));
  margin: 0 !important;
  pointer-events: none;
}

body.admin-bar .woocommerce-notices-wrapper {
  top: 136px;
}

.woocommerce-notices-wrapper:empty {
  display: none !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  pointer-events: auto;
  position: relative;
  width: 100%;
  margin: 0 0 12px !important;
  padding: 18px 22px 18px 52px !important;

  border: 0 !important;
  border-radius: 18px;
  outline: 0 !important;
  box-shadow: 0 18px 55px rgba(29, 59, 43, 0.13);

  background: rgba(225, 207, 176, 0.96);
  color: #183f2f;

  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;

  list-style: none !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: absolute !important;
  top: 50% !important;
  left: 22px !important;
  transform: translateY(-50%);
  margin: 0 !important;
  color: #d92732 !important;
}

.woocommerce-error li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.woocommerce-message:focus,
.woocommerce-info:focus,
.woocommerce-error:focus,
.woocommerce-message:focus-visible,
.woocommerce-info:focus-visible,
.woocommerce-error:focus-visible {
  outline: 0 !important;
  box-shadow: 0 18px 55px rgba(29, 59, 43, 0.13) !important;
}

@media (max-width: 767px) {
  .woocommerce-notices-wrapper {
    top: 82px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  body.admin-bar .woocommerce-notices-wrapper {
    top: 98px;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding: 15px 16px 15px 46px !important;
    border-radius: 15px;
    font-size: 15px;
    line-height: 1.35;
  }

  .woocommerce-message::before,
  .woocommerce-info::before,
  .woocommerce-error::before {
    left: 18px !important;
  }
}

/* -------------------------------------------------------------------------
   WooCommerce notices - stable inline version
   ------------------------------------------------------------------------- */

.woocommerce-notices-wrapper {
  position: static !important;
  width: 100%;
  max-width: 680px;
  margin: 0 0 28px 0 !important;
  pointer-events: auto;
}

.woocommerce-notices-wrapper:empty {
  display: none !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  width: 100%;
  margin: 0 !important;
  padding: 18px 24px 18px 56px !important;

  border: 0 !important;
  border-radius: 18px;
  outline: 0 !important;
  box-shadow: none !important;

  background: rgba(225, 207, 176, 0.95);
  color: #183f2f;

  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;

  list-style: none !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: absolute !important;
  top: 50% !important;
  left: 24px !important;
  transform: translateY(-50%);
  margin: 0 !important;
  color: var(--pg-green-900) !important;
}

.woocommerce-error li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 767px) {
  .woocommerce-notices-wrapper {
    max-width: none;
    margin-bottom: 22px !important;
  }

  .woocommerce-message,
  .woocommerce-info,
  .woocommerce-error {
    padding: 15px 18px 15px 48px !important;
    border-radius: 15px;
    font-size: 15px;
  }

  .woocommerce-message::before,
  .woocommerce-info::before,
  .woocommerce-error::before {
    left: 18px !important;
  }
}

/* -------------------------------------------------------------------------
   WooCommerce lost password layout fix
   ------------------------------------------------------------------------- */

.woocommerce-lost-password .woocommerce {
  display: block !important;
  width: min(100% - 64px, 760px);
  margin: 0 auto;
}

.woocommerce-lost-password .woocommerce-notices-wrapper {
  width: 100%;
  max-width: none;
  margin: 0 0 28px 0 !important;
}

.woocommerce-lost-password .woocommerce-ResetPassword {
  width: 100%;
  max-width: none;
}

@media (max-width: 767px) {
  .woocommerce-lost-password .woocommerce {
    width: calc(100% - 40px);
  }
}