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

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

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;
}

.emp-toast-container {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1080;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

.emp-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 420px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.25), 0 4px 10px -4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.emp-toast--in {
  opacity: 1;
  transform: translateX(0);
}
.emp-toast--out {
  opacity: 0;
  transform: translateX(-16px);
}
.emp-toast--error {
  background: #dc3545;
}
.emp-toast--success {
  background: #00914e;
}
.emp-toast--info {
  background: #0dcaf0;
  color: #000;
}
.emp-toast__body {
  flex: 1;
}
.emp-toast__close {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.8;
}
.emp-toast__close:hover {
  opacity: 1;
}
.emp-toast a {
  color: inherit;
  text-decoration: underline;
}

.woocommerce > .woocommerce-notices-wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
@media (min-width: 576px) {
  .woocommerce > .woocommerce-notices-wrapper {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .woocommerce > .woocommerce-notices-wrapper {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .woocommerce > .woocommerce-notices-wrapper {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .woocommerce > .woocommerce-notices-wrapper {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .woocommerce > .woocommerce-notices-wrapper {
    max-width: 1320px;
  }
}

.checkout-section {
  padding: 48px 0 80px;
}

.woocommerce-form-login-toggle {
  margin-bottom: 20px;
}
.woocommerce-form-login-toggle .woocommerce-info {
  background: #fff;
  border-left: 4px solid #652D90;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 14px 20px;
  font-size: 14px;
  color: #555;
}
.woocommerce-form-login-toggle .woocommerce-info a.showlogin {
  color: #652D90;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce-form-login-toggle .woocommerce-info a.showlogin:hover {
  text-decoration: underline;
}

.woocommerce-form-login {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 28px;
  margin-bottom: 24px;
}

form.checkout.woocommerce-checkout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.woocommerce-checkout .woocommerce-NoticeGroup {
  flex-basis: 100%;
  order: -1;
}

#customer_details {
  flex: 1;
  min-width: 0;
}

.checkout-right-col {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 130px;
}

h3#order_review_heading {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #652D90;
  display: inline-block;
}

#order_review {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.woocommerce-additional-fields > h3 {
  display: none;
}

.col2-set {
  display: block;
}

.col2-set .col-2 {
  display: none;
}

.col-1 {
  width: 100%;
}

.woocommerce-billing-fields h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #652D90;
  display: inline-block;
}

.woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row.form-row-wide,
.form-row.form-row-wide.thwcfd-field-wrapper {
  width: 100%;
}

.woocommerce-checkout .form-row {
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 6px;
}
.woocommerce-checkout .form-row label .required {
  color: #652D90;
  margin-left: 2px;
}
.woocommerce-checkout .form-row label .optional {
  color: #bbb;
  font-weight: 400;
  font-size: 10px;
}
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row .woocommerce-input-wrapper input {
  display: block;
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: #272727;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row .woocommerce-input-wrapper input:focus {
  border-color: #652D90;
  box-shadow: 0 0 0 3px rgba(101, 45, 144, 0.08);
}
.woocommerce-checkout .form-row.woocommerce-validated .input-text {
  border-color: #00914e;
}
.woocommerce-checkout .form-row.woocommerce-invalid .input-text {
  border-color: #ff5700;
}
.woocommerce-checkout .create-account {
  margin-top: 16px;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}
.woocommerce-checkout .woocommerce-form__input-checkbox {
  width: 18px !important;
  height: 18px !important;
  accent-color: #652D90;
  cursor: pointer;
  flex-shrink: 0;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-checkout-review-order-table thead th {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.woocommerce-checkout-review-order-table thead th.product-total {
  text-align: right;
}
.woocommerce-checkout-review-order-table tbody tr.cart_item td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
  color: #272727;
}
.woocommerce-checkout-review-order-table tbody td.product-name {
  font-weight: 600;
}
.woocommerce-checkout-review-order-table tbody td.product-total {
  text-align: right;
  font-weight: 700;
}
.woocommerce-checkout-review-order-table tfoot tr th, .woocommerce-checkout-review-order-table tfoot tr td {
  padding: 10px 24px;
  font-size: 14px;
}
.woocommerce-checkout-review-order-table tfoot tr th {
  color: #888;
  font-weight: 600;
}
.woocommerce-checkout-review-order-table tfoot tr td {
  text-align: right;
  font-weight: 600;
  color: #272727;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total th {
  font-size: 15px;
  font-weight: 800;
  color: #272727;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td strong {
  font-size: 1.3rem;
  color: #652D90;
}

#payment {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  padding: 24px;
}
#payment .wc_payment_methods {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#payment .wc_payment_method {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#payment .wc_payment_method:has(input:checked) {
  border-color: #652D90;
}
#payment .wc_payment_method > input[type=radio] {
  accent-color: #652D90;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0 0 0 16px;
}
#payment .wc_payment_method > label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #272727;
  text-transform: none !important;
  letter-spacing: 0;
}
#payment .wc_payment_method > label img {
  height: 24px;
  width: auto;
  display: block;
  margin-left: auto;
}
#payment .wc_payment_method > .payment_box {
  flex: 0 0 100%;
}
#payment .payment_box {
  padding: 12px 16px;
  background: rgba(101, 45, 144, 0.05);
  border-top: 1px solid rgba(101, 45, 144, 0.1);
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.form-row.place-order {
  padding: 0;
  margin: 0;
}

.woocommerce-privacy-policy-text {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 16px;
}
.woocommerce-privacy-policy-text a {
  color: #652D90;
  text-decoration: none;
}

#place_order {
  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 cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease !important;
}
#place_order:hover {
  background: #4e2270 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(101, 45, 144, 0.35) !important;
}

.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info {
  list-style: none;
  margin: 0 0 8px;
  padding: 14px 18px 14px 52px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  border: none;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error::before,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message::before,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info::before,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error::before,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info::before {
  font-family: "Material Icons";
  font-size: 20px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error a,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message a,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info a,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error a,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message a,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info a {
  font-weight: 700;
  text-decoration: underline;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error li,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message li,
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info li,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error li,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message li,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error {
  background: #fff5f5;
  border-left: 4px solid #ff5700;
  color: #7a2020;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error::before,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error::before {
  content: "error_outline";
  color: #ff5700;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error a,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error a {
  color: #ff5700;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message {
  background: #f2fbf5;
  border-left: 4px solid #00914e;
  color: #1a4d30;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message::before,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message::before {
  content: "check_circle_outline";
  color: #00914e;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message a,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message a {
  color: #00914e;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info {
  background: #f5f3ff;
  border-left: 4px solid #652D90;
  color: #3d1f6e;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info::before,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info::before {
  content: "info_outline";
  color: #652D90;
}
.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info a,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info a {
  color: #652D90;
}

@media (max-width: 991px) {
  form.checkout.woocommerce-checkout {
    flex-direction: column;
  }
  #customer_details,
  .woocommerce-billing-fields,
  .woocommerce-billing-fields__field-wrapper {
    width: 100%;
  }
  .checkout-right-col {
    width: 100%;
    position: static;
  }
  h3#order_review_heading {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .checkout-section {
    padding: 28px 0 48px;
  }
}
.checkout-inline-error-message {
  display: none;
}

.checkout-logo-emprende {
  display: none;
}

.mailchimp-newsletter {
  display: none;
}

.woocommerce-NoticeGroup-checkout {
  position: fixed !important;
  left: -9999px !important;
  top: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
