body {
  font-family: "Roboto", sans-serif;
}

:root {
  --negro: #272727;
  --morado: #652D90;
  --morado-dark: #4e2270;
  --amarillo: #FFC600;
  --amarillo-dark: #e6b200;
  --naranja: #ff5700;
  --verde: #00914e;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
.row > * {
  box-sizing: border-box;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.row.g-3 {
  margin: 0 -0.5rem;
  row-gap: 1rem;
}
.row.g-3 > * {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.row.g-4 {
  margin: 0 -0.75rem;
  row-gap: 1.5rem;
}
.row.g-4 > * {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.row.g-5 {
  margin: 0 -1.5rem;
  row-gap: 3rem;
}
.row.g-5 > * {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col {
  flex: 1 0 0;
  max-width: 100%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
    max-width: 100%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
    max-width: 100%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
    max-width: 100%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-75 {
  height: 75% !important;
}

.h-50 {
  height: 50% !important;
}

.h-25 {
  height: 25% !important;
}

.h-auto {
  height: auto !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-first {
  order: -1 !important;
}

.order-last {
  order: 6 !important;
}

@media (min-width: 992px) {
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
}
.bg-light {
  background-color: #f8f9fa !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
body {
  padding-top: 114px;
}
@media (max-width: 1399px) {
  body {
    padding-top: 70px;
  }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #652D90;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  top: 0;
  left: 0;
  display: none;
  transition: 0.3s;
  mix-blend-mode: difference;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
  padding: 0;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
#navbar {
  /* @media (max-width: $bp-xs) {
    padding: 10px 20px;

    &.scrolled {
      padding: 8px 20px;
    }
  } */
}

.header-logo {
  margin-left: 10px;
}

img.custom-logo,
.header-logo img {
  width: 95px;
  height: auto;
  display: block;
}

.header-emprende {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  height: 70px;
  width: 100%;
}

.menu-emprende {
  display: flex;
  align-items: center;
  width: fit-content;
}

.menu-emprende-lista {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-emprende-lista > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.menu-emprende-lista > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 0;
}
.menu-emprende-lista > li > a:hover {
  opacity: 0.8;
}
.menu-emprende-lista > li.menu-item-has-children > a::after {
  font-family: "Material Icons";
  content: "\e5cf";
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  transition: 0.3s;
}
.menu-emprende-lista > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.menu-emprende-lista > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-emprende-lista .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 999;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.menu-emprende-lista .sub-menu li {
  margin: 0;
  padding: 0;
}
.menu-emprende-lista .sub-menu li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.menu-emprende-lista .sub-menu li a:hover {
  background-color: #f8f9fa;
}

.header-emprende-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.header-emprende-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #272727;
  position: relative;
}
.header-emprende-toggle span::before, .header-emprende-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #272727;
}
.header-emprende-toggle span::before {
  top: -6px;
}
.header-emprende-toggle span::after {
  top: 6px;
}

.menu-emprende-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s;
  z-index: 9998;
}
.menu-emprende-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-emprende-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 380px);
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
.menu-emprende-offcanvas.is-open {
  transform: translateX(0);
}

.menu-emprende-offcanvas-close {
  display: flex;
  justify-content: flex-end;
}
.menu-emprende-offcanvas-close button {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #272727;
}

.menu-emprende-mobile-top {
  margin-bottom: 20px;
}
.menu-emprende-mobile-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-emprende-mobile-top li {
  border-bottom: 1px solid #eee;
}
.menu-emprende-mobile-top a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
}

.menu-emprende-mobile-top-list > li:last-child .sub-menu li:last-child {
  border-bottom: none;
}

.menu-emprende-mobile-group {
  border-top: 1px solid #eaeaea;
  padding-top: 14px;
  margin-top: 14px;
}

.menu-emprende-mobile-group-title {
  font-size: 15px;
  font-weight: 600;
  color: #272727;
  margin-bottom: 12px;
}

.menu-emprende-mobile-section {
  margin-bottom: 16px;
}

.menu-emprende-mobile-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.menu-emprende-mobile-products {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-emprende-mobile-products li {
  border-bottom: 1px solid #f2f2f2;
}
.menu-emprende-mobile-products a {
  display: block;
  text-decoration: none;
  padding: 14px 8px;
  min-height: 48px;
  color: #272727 !important;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1399px) {
  .menu-emprende {
    display: none;
  }
  .header-emprende-toggle {
    display: inline-flex;
  }
}
.contSubmenu {
  background-color: #FFC600;
  width: 100%;
}

._submenu-contDropdowns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

._submenu-btnEmpresa {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
._submenu-btnEmpresa ._submenu-dropdown-btn::after {
  display: none;
}

._submenu-btnEmpresa360 {
  display: none;
}

@media (max-width: 1399px) {
  ._submenu-btnEmpresa360 {
    display: flex;
  }
  ._submenu-btnEmpresa {
    display: none;
  }
}
._submenu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
@media (max-width: 1399px) {
  ._submenu-dropdown {
    display: none;
  }
}
._submenu-dropdown:hover ._submenu-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
._submenu-dropdown:hover ._submenu-dropdown-btn::after {
  transform: rotate(180deg);
}

._submenu-dropdown-btn,
._submenu-btnEmpresa a {
  background-color: #FFC600;
  color: #333 !important;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}
._submenu-dropdown-btn:hover,
._submenu-btnEmpresa a:hover {
  background-color: #e6b200;
}

._submenu-dropdown-btn::after {
  font-family: "Material Icons";
  content: "\e5cf";
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  transition: 0.3s;
}

._submenu-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 650px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 14px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  pointer-events: none;
}
@media (max-width: 1300px) {
  ._submenu-dropdown-menu {
    min-width: 450px;
  }
}

._submenu-tituloDropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  margin-top: 12px;
}
._submenu-tituloDropdown:first-child {
  margin-top: 0;
}
._submenu-tituloDropdown span {
  font-size: 14px;
  color: #666;
}
._submenu-tituloDropdown hr {
  margin: 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}

._submenu-contItemsSubMenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1300px) {
  ._submenu-contItemsSubMenu {
    grid-template-columns: 1fr 1fr;
  }
}

._submenu-itemSubMenu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
  min-height: 48px;
  border: 0.5px solid rgba(51, 51, 51, 0.06);
  border-radius: 5px;
  text-decoration: none;
}
._submenu-itemSubMenu:hover {
  background-color: #f2f2f2;
  transition: 0.3s;
}
._submenu-itemSubMenu span {
  display: block;
  color: #212529;
  font-size: 14px;
  line-height: 1.35;
  flex: 1;
}
._submenu-itemSubMenu:hover span {
  color: #000;
}

._submenu-contDropdowns ._submenu-dropdown:last-of-type ._submenu-dropdown-menu {
  left: auto;
  right: 0;
}

@media (max-width: 1670px) {
  ._submenu-contDropdowns ._submenu-dropdown:nth-last-of-type(2) ._submenu-dropdown-menu {
    left: auto;
    right: 0;
  }
}
.site-footer {
  font-family: "Roboto", sans-serif;
}

.footer-main {
  background: #272727;
  padding: 3rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  margin-bottom: 3rem;
}
.footer-col--1 {
  flex: 0 0 100%;
}
.footer-col--2 {
  flex: 0 0 50%;
}
.footer-col--3 {
  flex: 0 0 50%;
}
.footer-col--4 {
  flex: 0 0 100%;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .footer-col {
    margin-bottom: 0;
  }
  .footer-col--1 {
    flex: 0 0 25%;
    padding-right: 1.5rem;
  }
  .footer-col--2 {
    flex: 0 0 16.66667%;
    padding-right: 1rem;
  }
  .footer-col--3 {
    flex: 0 0 25%;
    padding-right: 1.5rem;
  }
  .footer-col--4 {
    flex: 0 0 33.33333%;
  }
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-heading {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFC600;
  margin: 0;
}

* + .footer-heading {
  margin-top: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  background: #652D90;
  border-color: #652D90;
  color: #fff;
  transform: translateY(-2px);
}

.footer-newsletter {
  margin-top: 1rem;
}
.footer-newsletter__group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-newsletter__group input[type=email] {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.footer-newsletter__group input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter__group input[type=email]:focus {
  background: rgba(255, 255, 255, 0.11);
}
.footer-newsletter__group button {
  background: #652D90;
  border: none;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.footer-newsletter__group button:hover {
  background: #4e2270;
}
.footer-newsletter__group button svg {
  flex-shrink: 0;
}

.footer-premio {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-premio__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer-premio__link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-premio__link span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-premio__link:hover img {
  opacity: 1;
}
.footer-premio__link:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-addresses {
  background: #1f1f1f;
  padding: 14px 0;
}
.footer-addresses__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
  line-height: 1.7;
}

.footer-bottom {
  background: #161616;
  padding: 14px 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.product-wrap {
  position: relative;
}

.product-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%, rgba(250, 250, 250, 0.85) 85%, #fafafa 100%);
}
.product-hero--no-image {
  background-color: #652D90;
}

.product-body {
  padding: 40px 0 72px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}
.product-back:hover {
  color: #652D90;
}

.product-layout {
  display: grid;
  grid-template-columns: 260px 1fr 384px;
  gap: 10px;
  align-items: start;
}
.product-layout--no-related {
  grid-template-columns: 1fr 384px;
}
.product-layout--no-form {
  grid-template-columns: 260px 1fr;
}
.product-layout--no-related.product-layout--no-form {
  grid-template-columns: 1fr;
}

.woocommerce div.product,
.woocommerce #content div.product {
  float: none !important;
  width: auto !important;
}

.single-product .summary.entry-summary {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 32px 32px 5px !important;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: -4px -4px 24px rgba(0, 0, 0, 0.06), 4px -4px 24px rgba(0, 0, 0, 0.06);
}

.product-main {
  min-width: 0;
}

.single-product .product_title.entry-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #272727;
  line-height: 1.2;
  margin: 0 0 16px;
}

.single-product .summary .price {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.single-product .summary .price .woocommerce-Price-amount {
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #272727;
  line-height: 1;
}
.single-product .summary .price ins {
  text-decoration: none;
}
.single-product .summary .price del {
  font-size: 1.1rem;
  font-weight: 400;
  color: #bbb;
  margin-right: 8px;
}

.single-product .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}
.single-product .woocommerce-product-details__short-description p {
  margin-bottom: 12px;
}
.single-product .woocommerce-product-details__short-description ul, .single-product .woocommerce-product-details__short-description ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.single-product .woocommerce-product-details__short-description li {
  margin-bottom: 6px;
}

.single-product .summary form.variations_form.cart table.variations {
  width: 100%;
  margin: 0 0 20px;
  border: none;
  background: transparent;
}
.single-product .summary form.variations_form.cart table.variations tbody {
  background: transparent;
  display: block;
  width: 100%;
}
.single-product .summary form.variations_form.cart table.variations tr {
  border: none;
  background: transparent;
  display: block;
  width: 100%;
  margin-bottom: 14px;
}
.single-product .summary form.variations_form.cart table.variations th,
.single-product .summary form.variations_form.cart table.variations td {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}
.single-product .summary form.variations_form.cart table.variations th.label,
.single-product .summary form.variations_form.cart table.variations td.label {
  margin-bottom: 8px;
}
.single-product .summary form.variations_form.cart table.variations th.label label,
.single-product .summary form.variations_form.cart table.variations td.label label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
}
.single-product .summary form.variations_form.cart table.variations td.value {
  position: relative;
}
.single-product .summary form.variations_form.cart table.variations select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 11px 38px 11px 14px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #272727;
  background: #f7f7f9;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
}
.single-product .summary form.variations_form.cart table.variations select:hover {
  background-color: #f1f1f4;
}
.single-product .summary form.variations_form.cart table.variations select:focus {
  background-color: #fff;
  border-color: #652D90;
}
.single-product .summary form.variations_form.cart table.variations select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.single-product .summary form.variations_form.cart .reset_variations {
  display: inline-block;
  margin: 4px 0 16px;
  font-size: 12px;
  font-weight: 600;
  color: #652D90;
  text-decoration: none;
  visibility: hidden;
}
.single-product .summary form.variations_form.cart .reset_variations:hover {
  text-decoration: underline;
}
.single-product .summary form.variations_form.cart .single_variation_wrap .woocommerce-variation-price {
  margin-bottom: 14px;
}
.single-product .summary form.variations_form.cart .single_variation_wrap .woocommerce-variation-price .price .woocommerce-Price-amount {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #272727;
  line-height: 1;
}
.single-product .summary form.variations_form.cart .single_variation_wrap .woocommerce-variation-description {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}
.single-product .summary form.variations_form.cart .single_variation_wrap .woocommerce-variation-availability {
  font-size: 12px;
  font-weight: 600;
  color: #00914e;
  margin-bottom: 12px;
}
.single-product .summary form.variations_form.cart .single_variation_wrap .woocommerce-variation-availability .out-of-stock {
  color: #c44;
}

.single-product .summary form.cart {
  margin: 0 0 20px;
}
.single-product .summary form.cart .quantity {
  display: none !important;
}
.single-product .summary form.cart .single_add_to_cart_button {
  display: block !important;
  width: 100%;
  background: #652D90 !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 24px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
.single-product .summary form.cart .single_add_to_cart_button:hover {
  background: #4e2270 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(101, 45, 144, 0.3) !important;
}

.single-product .product_meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: #aaa;
  line-height: 1.8;
}
.single-product .product_meta a {
  color: #652D90;
  text-decoration: none;
}
.single-product .product_meta a:hover {
  text-decoration: underline;
}

.product-payment {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}

.product-payment__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 10px;
}

.product-payment__methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-payment__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-payment__webpay,
.product-payment__paypal {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 4px 8px;
}
.product-payment__webpay img,
.product-payment__paypal img {
  display: block;
  height: 18px;
  width: auto;
}

.product-payment__secure {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #aaa;
}
.product-payment__secure svg {
  color: #00914e;
  flex-shrink: 0;
}

.product-info-tabs {
  margin-top: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 5px 32px 28px;
}
.product-info-tabs .woocommerce-tabs ul.tabs {
  display: none;
}
.product-info-tabs .woocommerce-tabs .panel h2 {
  display: none;
}
.product-info-tabs .woocommerce-tabs .panel p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.product-info-tabs .woocommerce-tabs .panel h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #272727;
  margin: 22px 0 10px;
}
.product-info-tabs .woocommerce-tabs .panel ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.product-info-tabs .woocommerce-tabs .panel li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}

.product-aside {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 24px;
  position: sticky;
  top: 130px;
}

.product-aside__title {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #652D90;
  display: inline-block;
}

.product-aside__desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 16px;
}

.product-related-slider .related-mini:not(:first-child) {
  display: none;
}

.product-related-slider.slick-initialized .related-mini {
  display: block;
}

.related-mini {
  background: transparent;
  margin-bottom: 0;
  padding: 0 4px;
}
.related-mini__img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #f5f5f5;
  padding: 12px;
}
.related-mini__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.related-mini__img:hover img {
  transform: scale(1.04);
}
.related-mini__body {
  padding: 0 2px;
}
.related-mini__title {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #272727;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-mini__title:hover {
  color: #652D90;
}
.related-mini__price {
  font-size: 13px;
  font-weight: 800;
  color: #652D90;
  line-height: 1;
}
.related-mini__price del {
  color: #bbb;
  font-weight: 400;
  font-size: 11px;
  margin-right: 6px;
}
.related-mini__price ins {
  text-decoration: none;
}

.product-related-slider .slick-prev,
.product-related-slider .slick-next {
  width: 28px;
  height: 28px;
  top: auto;
  bottom: -34px;
  transform: none;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.product-related-slider .slick-prev::before,
.product-related-slider .slick-next::before {
  color: #652D90;
  font-size: 14px;
  opacity: 1;
}
.product-related-slider .slick-prev:hover,
.product-related-slider .slick-next:hover {
  background: #652D90;
}
.product-related-slider .slick-prev:hover::before,
.product-related-slider .slick-next:hover::before {
  color: #fff;
}
.product-related-slider .slick-prev {
  left: calc(50% - 34px);
}
.product-related-slider .slick-next {
  right: calc(50% - 34px);
}

.product-aside--form .wpcf7 {
  margin: 0;
}
.product-aside--form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-aside--form .wpcf7-form p {
  margin: 0;
}
.product-aside--form .wpcf7-form label {
  display: block;
  font-size: 0;
}
.product-aside--form .wpcf7-form br {
  display: none;
}
.product-aside--form .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.product-aside--form .wpcf7-form input[type=text],
.product-aside--form .wpcf7-form input[type=email],
.product-aside--form .wpcf7-form input[type=tel],
.product-aside--form .wpcf7-form input[type=url],
.product-aside--form .wpcf7-form input[type=number],
.product-aside--form .wpcf7-form textarea,
.product-aside--form .wpcf7-form select {
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  color: #272727;
  background: #f7f7f9;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.product-aside--form .wpcf7-form input[type=text]::placeholder,
.product-aside--form .wpcf7-form input[type=email]::placeholder,
.product-aside--form .wpcf7-form input[type=tel]::placeholder,
.product-aside--form .wpcf7-form input[type=url]::placeholder,
.product-aside--form .wpcf7-form input[type=number]::placeholder,
.product-aside--form .wpcf7-form textarea::placeholder,
.product-aside--form .wpcf7-form select::placeholder {
  color: #999;
}
.product-aside--form .wpcf7-form input[type=text]:focus,
.product-aside--form .wpcf7-form input[type=email]:focus,
.product-aside--form .wpcf7-form input[type=tel]:focus,
.product-aside--form .wpcf7-form input[type=url]:focus,
.product-aside--form .wpcf7-form input[type=number]:focus,
.product-aside--form .wpcf7-form textarea:focus,
.product-aside--form .wpcf7-form select:focus {
  background: #fff;
  border-color: #652D90;
}
.product-aside--form .wpcf7-form textarea {
  min-height: 96px;
  resize: vertical;
}
.product-aside--form .wpcf7-form .wpcf7-submit {
  display: block;
  width: 100%;
  background: #652D90;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.product-aside--form .wpcf7-form .wpcf7-submit:hover {
  background: #4e2270;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(101, 45, 144, 0.3);
}
.product-aside--form .wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 10px 14px !important;
  font-size: 12px !important;
  border-radius: 10px !important;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-aside--related {
    display: none;
  }
  .product-layout {
    grid-template-columns: 1fr 384px;
    grid-template-areas: "main form";
    gap: 24px;
  }
  .product-layout--no-form {
    grid-template-columns: 1fr;
    grid-template-areas: "main";
  }
  .product-main {
    grid-area: main;
  }
  .product-aside--form {
    grid-area: form;
  }
  .product-aside {
    position: static;
  }
}
@media (max-width: 991.98px) {
  .product-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "related" "form";
    gap: 20px;
  }
  .product-aside--related {
    grid-area: related;
    display: block;
  }
  .product-main {
    grid-area: main;
  }
  .product-aside--form {
    grid-area: form;
  }
  .product-aside {
    position: static;
    padding: 20px;
  }
  .product-aside--related {
    padding: 20px 24px;
  }
  .product-aside--related .product-aside__title {
    display: block;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 14px;
  }
  .product-related-slider {
    max-width: 260px;
    margin: 0 auto;
  }
  .product-related-slider .slick-prev {
    left: -36px;
  }
  .product-related-slider .slick-next {
    right: -36px;
  }
  .product-related-slider .slick-prev,
  .product-related-slider .slick-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .related-mini__img {
    aspect-ratio: 1/1;
  }
  .single-product .summary.entry-summary {
    padding: 24px 24px 5px !important;
    border-radius: 20px 20px 0 0;
    box-shadow: -4px -4px 24px rgba(0, 0, 0, 0.06), 4px -4px 24px rgba(0, 0, 0, 0.06);
  }
  .product-info-tabs {
    padding: 5px 24px 22px;
    margin-top: 0;
    border-radius: 0 0 20px 20px;
  }
  .single-product .product_title.entry-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }
  .single-product .summary .price .woocommerce-Price-amount {
    font-size: 1.8rem;
  }
}
@media (max-width: 575.98px) {
  .product-hero {
    height: 300px;
  }
  .product-body {
    padding: 24px 0 48px;
  }
  .product-back {
    margin-bottom: 18px;
  }
  .single-product .summary.entry-summary {
    padding: 20px 20px 5px !important;
    border-radius: 20px 20px 0 0;
    box-shadow: -4px -4px 24px rgba(0, 0, 0, 0.06), 4px -4px 24px rgba(0, 0, 0, 0.06);
  }
  .product-info-tabs {
    padding: 5px 16px 18px;
    margin-top: 0;
    border-radius: 0 0 20px 20px;
  }
  .product-aside {
    padding: 18px;
  }
  .product-related-slider {
    max-width: 220px;
  }
  .product-payment__methods {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
