    :root {
      --primary-color: #65a30d;
      --menu-bg: #ffffff;
      --menu-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      --transition-time: 0.3s;
    }

    li {
      list-style: none;
    }


    body,
    html {
      height: 100dvh;
      margin: 0;
      position: relative;
    }

    body {

      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f8f9fa;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .menu-item button {
      border: 0;
      background-color: transparent;
    }

    .header {
      position: fixed;
      left: 0;
      width: 100%;
      z-index: 500;
      background-color: rgb(53 53 53 / 26%);
      backdrop-filter: blur(6px);
      box-shadow: var(--menu-shadow);
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.5s ease;
    }

    .headerBackground {
      background-color: rgb(0 0 0 / 73%) !important;
    }


    .menu-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 40px;
      transform: scale(2.5);
      padding: 0 50px;
    }

    .logo-text {
      font-size: 1.2rem;
      font-weight: bold;
      margin-left: 10px;
    }

    .menu-list {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .menu-item {
      margin-left: 10px;
      padding: 0.5rem 0;
    }

    .menu-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      /*      color: #495057;*/
      color: #e9e9e9;
      padding: 8px 12px;
      border-radius: 8px;
      transition: all var(--transition-time) ease;
      position: relative;
    }

    .menu-link:hover {
      color: var(--primary-color);
      background-color: rgba(132, 218, 13, 0.1);
    }


    .active-menu-item {
      color: var(--primary-color) !important;
      background-color: rgba(132, 218, 13, 0.1) !important;
    }

    .menu-icon {
      font-size: 1.2rem;
    }

    .menu-text {
      font-size: 0.8rem;
      font-weight: 500;
    }

    .user-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      object-fit: cover;
    }

    .cart-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      font-size: 0.6rem;
      padding: 3px 6px;
    }

    @media (max-width: 991px) {
      .menu-container {
        justify-content: center;
        display: none;
      }

      .logo-text {
        display: none;
      }

      .header {
        bottom: 0;
      }

      .menu-list {
        width: 100%;
        justify-content: space-around;
        box-shadow: var(--menu-shadow);
        z-index: 510;
      }

      .menu-link {
        flex-direction: column;
        padding: 6px;
      }


      .menu-item:nth-child(1) {
        order: 3;
      }

      .menu-item:nth-child(2) {
        order: 2;
      }

      .menu-item:nth-child(3) {
        order: 1;
      }

      .menu-item:nth-child(4) {
        order: 4;
      }

      .menu-item:nth-child(5) {
        order: 5;
      }
    }

    @media (min-width: 992px) {
      .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        top: 0;
      }

      .menu-list {
        position: static;
        justify-content: flex-end;
      }

      .menu-link {
        flex-direction: row;
      }

      .menu-icon {
        font-size: 1.2rem;
      }

      .menu-text {
        display: inline;
      }
    }








    .min-vh-10 {
      min-height: 100vh;
    }















    /* Pequeños ajustes personalizados  footer*/
    .mabex-footer {
      background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .mabex-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #ff8c00, #ffb347, #ff8c00);
    }

    .mabex-footer-brand {
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: 1px;
      background: linear-gradient(to right, #ff8c00, #ffb347);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .mabex-footer-subtitle {
      color: #aaa;
      font-size: 0.9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .mabex-footer-desc {
      color: #ddd !important;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .mabex-social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      transition: all 0.3s ease;
      margin-right: 10px;
    }

    .mabex-social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .mabex-social-whatsapp:hover {
      background: #25D366;
    }

    .mabex-social-tiktok:hover {
      background: #000;
    }

    .mabex-social-facebook:hover {
      background: #1877F2;
    }

    .mabex-social-instagram:hover {
      background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    }

    .mabex-footer-title {
      position: relative;
      padding-bottom: 10px;
      margin-bottom: 20px;
      color: #fff !important;
    }

    .mabex-footer-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background: linear-gradient(to right, #ff8c00, #ffb347);
    }

    .mabex-footer-link {
      color: #ddd !important;
      text-decoration: none;
      transition: all 0.3s ease;
      display: block;
      margin-bottom: 8px;
      position: relative;
      padding-left: 0;
    }

    .mabex-footer-link:hover {
      color: #ffb347 !important;
      padding-left: 8px;
    }

    .mabex-footer-link::before {
      content: '→';
      position: absolute;
      left: -5px;
      opacity: 0;
      transition: all 0.3s ease;
      color: #ff8c00;
    }

    .mabex-footer-link:hover::before {
      left: 0;
      opacity: 1;
    }

    .mabex-newsletter-input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff !important;
      transition: all 0.3s ease;
    }

    .mabex-newsletter-input::placeholder {
      color: #bbb !important;
    }

    .mabex-newsletter-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: #ff8c00;
      box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
    }

    .mabex-newsletter-btn {
      background: linear-gradient(to right, #ff8c00, #ffb347);
      border: none;
      color: #111;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .mabex-newsletter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    }

    .mabex-footer-bottom {
      background: rgba(0, 0, 0, 0.3);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mabex-copyright {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: clamp(12px, 2vw, 16px);
      max-width: 100%;
    }

    .mabex-payment-methods {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .mabex-payment-icon {
      height: 24px;
      filter: grayscale(0%) brightness(1);
      transition: all 0.3s ease;
    }







    /*Contenedores*/
    .ContenedorCentral {
      display: none;
    }

    .ContenedorLateralIzquierdo {
      display: none;
    }













    .modal-header {
      box-shadow: inset 0 -1px 4px rgba(0, 0, 0, 0.1) !important;
    }

    .offcanvas-body {
      margin: 0 !important;
      padding: 0 !important;
      overflow: hidden !important;
    }


    .offcanvas-header {
      box-shadow: inset 0 -1px 4px rgba(0, 0, 0, 0.1) !important;
    }




    #offcanvasRightLabel button.btn-close.text-reset {
      padding: 0 !important;
      margin: 0 !important;
      width: 30px !important;
      height: 30px !important;
    }


    #modalOverlayAction .modal-header {
      box-shadow: inset 0 -1px 4px rgba(0, 0, 0, 0.1) !important;
    }




    /*
    .cont-logo {
      display: none;
    }


    .modal-header {
      border: none !important;
    }

    .modal-header button.btn-close {
      position: absolute;
      top: 15px;
      right: 15px;
    }


    .offcanvas-body {
      padding: 0rem !important;
      min-height: 100dvh;
      max-height: 100dvh;
      overflow: hidden !important;
    }

    /*
    
    .Skeleton div{
      background-color: gold;
    }
    .Skeleton div{
      border: 0;
      background-color: #ededed;
      pointer-events: none;
      color: #ededed;
      background: linear-gradient(100deg,
          rgba(255, 255, 255, 0) 40%,
          rgba(255, 255, 255, 0.5) 50%,
          rgba(255, 255, 255, 0) 60%) #ededed;
      background-size: 200% 100%;
      background-position-x: 180%;
      animation: 1s skeleton ease-in-out infinite;
    }

    @keyframes skeletona {
      to {
        background-position-x: -20%;
      }
    }
    */




    /* >= 480px */
    @media (min-width: 480px) {}

    /* >= 768px */
    @media (min-width: 992px) {

      /*      #modal-body-section-modalOverlayAction {
        max-height: 70vh;
        padding: 3% 9%;
      }*/

      .mabex-payment-icon {
        height: 24px;
        /**filter: grayscale(100%) brightness(0.8);*/
        transition: all 0.3s ease;
      }

      .mabex-payment-icon:hover {
        filter: grayscale(0%) brightness(1);
      }


    }

    /* >= 1024px */
    @media (min-width: 1024px) {}

    /* >= 1440px */
    @media (min-width: 1440px) {}

    /* >= 1600px */
    @media (min-width: 1600px) {}

    /* >= 1920px */
    @media (min-width: 1920px) {}



    div#offcanvasRight {
      z-index: 20060;
    }

    div#modalOverlayAction {
      z-index: 30060;
    }



    .custom-backdrop-1,
    .custom-backdrop-2,
    .custom-backdrop-3 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: none;
      pointer-events: auto;
      transition: opacity 0.3s ease;
      opacity: 0;
    }

    .custom-backdrop-1.show,
    .custom-backdrop-2.show,
    .custom-backdrop-3.show {
      display: block;
      opacity: 1;
    }


    .custom-backdrop-1.show {
      z-index: 20000;
    }

    .custom-backdrop-3.show {
      z-index: 30000;
    }

    @keyframes shake {
      0% {
        transform: translateX(0);
      }

      20% {
        transform: translateX(-10px);
      }

      40% {
        transform: translateX(10px);
      }

      60% {
        transform: translateX(-10px);
      }

      80% {
        transform: translateX(10px);
      }

      100% {
        transform: translateX(0);
      }
    }

    .shake {
      border: 1px solid red;
      animation: shake 0.4s ease;
    }



    .swal2-container.swal2-center {
      z-index: 9999999999999 !important;
    }

    .swal2-popup {
      border-radius: 10px !important;
      background: #fff !important
    }

    .swal2-title {
      color: #f97908 !important;
    }


    .swal2-styled.swal2-confirm {
      background-color: #50cd5e !important;
      color: #fff !important;
    }

    .swal2-close {
      color: #000 !important;

    }