

    .custom-text {
        font-family: Roboto Regular, Helvetica Neue, sans-serif;
        font-size: 12px;
        color: #888;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0px; /* Ajusta la posición para estar debajo del botón */
      }
  
      #ar-button:active {
        background-color: #e8eaed;
      }
  
      #ar-button:focus {
        outline: none;
      }
  
      #ar-button:focus-visible {
        outline: 1px solid #4285f4;
      }
  
      model-viewer > #ar-prompt {
        position: absolute;
        left: 50%;
        bottom: 60px;
        animation: elongate 2s infinite ease-in-out alternate;
        display: none;
      }
  
      model-viewer[ar-status="session-started"] > #ar-prompt {
        display: block;
      }
  
      model-viewer > #ar-prompt > img {
        animation: circle 4s linear infinite;
      }
  
      @keyframes circle {
        from {
          transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
        }
        to {
          transform: translateX(-50%) rotate(360deg) translateX(50px)
            rotate(-360deg);
        }
      }
  
      @keyframes elongate {
        from {
          transform: translateX(100px);
        }
        to {
          transform: translateX(-100px);
        }
      }
      :not(:defined) > * {
    display: none;
  }
  
  html {
    height: 100%;
  }
  
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  
  model-viewer {
    width: 300px;
    height: 280px;
    max-width: 100%;
    max-height: 100%;
    background: none;
  }
  
  
  .progress-bar {
    display: block;
    width: 33%;
    height: 10%;
    max-height: 2%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 25px;
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .progress-bar.hide {
    visibility: hidden;
    transition: visibility 0.3s;
  }


  .progress-barAR {
    display: block;
    width: 33%;
    height: 10%;
    max-height: 2%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 25px;
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .progress-barAR.hide {
    visibility: hidden;
    transition: visibility 0.3s;
  }
  
  .update-barAR {
    background-color: rgba(255, 255, 255, 0.9);
    width: 0%;
    height: 100%;
    border-radius: 25px;
    float: left;
    transition: width 0.3s;
  }
  
  #ar-button {
    background-image: url(../images/villaAR.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 12px 50%;
    position: absolute;
    left: 90%;
    transform: translateX(-50%);
    white-space: nowrap;
    bottom: 0px;
    padding: 0px 16px 0px 40px;
    font-family: Roboto Regular, Helvetica Neue, sans-serif;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    border: 0px solid #DADCE0;
    z-index: 9999999;
  }
  
  #ar-button:active {
    background-color: #E8EAED;
  }
  
  #ar-button:focus {
    outline: none;
  }
  
  #ar-button:focus-visible {
    outline: 1px solid #4285f4;
  }
  
  @keyframes circle {
    from { transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg); }
  }
  
  @keyframes elongate {
    from { transform: translateX(100px); }
    to   { transform: translateX(-100px); }
  }
  
  model-viewer > #ar-prompt {
    position: absolute;
    left: 50%;
    bottom: 60px;
    animation: elongate 2s infinite ease-in-out alternate;
    display: none;
  }
  
  model-viewer[ar-status="session-started"] > #ar-prompt {
    display: block;
  }
  
  model-viewer > #ar-prompt > img {
    animation: circle 4s linear infinite;
  }


  .single-menu-items model-viewer {
    width: 100px;
    height: 100px;
    background: none;
  }

  .single-food-items .item-thumb model-viewer {
    width: 160px;
    height: 160px;
    background: none;
    position: relative;
    margin: 0 auto;
    
  }

  .single-food-items .item-thumb model-viewer #ar-button {
    left: 50% !important;
  }

  .banner-thumb-area #ar-button {
    left: 15% !important;
    bottom: 10% !important;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: 12px 50%;
    height: 40px;
  }

  .banner-thumb-area model-viewer {
    width: 500px;
    height: 500px;
    background: none;
  }

  .slider-area { pointer-events: auto; }

/* Pero los botones/enlaces SÍ reciben clic */
.slider-area button,
.slider-area .btn,
.slider-area a { pointer-events: auto; }

/* Asegura que estén por encima */
.slider-area button,
.slider-area .button { position: relative; z-index: 9999; }