.amora-hotspot-scene {
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    padding: 0 16px;
  }
  
  /* Ảnh */
  .amora-hotspot-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  }
  
  .amora-hotspot-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Dấu "+" */
  .amora-hotspot-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.96);
    color: #111;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    font-size: 18px;
    font-weight: 700;
    z-index: 5;
    pointer-events: auto;
  }
  
  .amora-hotspot-dot span {
    transform: translateY(-1px);
  }
  
  .amora-hotspot-dot:hover,
  .amora-hotspot-dot.is-active {
    transform: scale(1.08);
    background: #111;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  }
  
  /* Layer popup overlay trên ảnh */
  .amora-hotspot-popups {
    position: absolute;
    inset: 0;
    pointer-events: none; /* để click qua, popup mở mới bật lại */
    z-index: 6;
  }
  
  /* Popup */
  .amora-hotspot-popup {
    position: absolute;
    max-width: 280px;
    opacity: 0;
    pointer-events: none;
    transform: translate(16px, -50%);
    transition: opacity .18s ease, transform .18s ease;
  }
  
  /* Nằm bên phải dot */
  .amora-hotspot-popup.is-open.is-right {
    opacity: 1;
    pointer-events: auto;
    transform: translate(16px, -50%);
  }
  
  /* Nằm bên trái dot */
  .amora-hotspot-popup.is-open.is-left {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-100%, -50%);
  }
  
/* CARD */
.amora-hotspot-card {
    background: #fffdf8;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    align-items: center;   
    color: #111 !important;    /* ⬅ canh giữa theo trục dọc */
  }
  .amora-hotspot-title,
.amora-hotspot-price,
.amora-hotspot-desc {
  color: #111 !important;
}
  
  .amora-hotspot-card-product .amora-hotspot-thumb {
    flex: 0 0 96px;                     /* ⬅ cho to hơn xíu */
  }
  
  .amora-hotspot-thumb img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  /* Khối text canh giữa theo chiều dọc */
  .amora-hotspot-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .amora-hotspot-title {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    max-height: 2.7em;
  }

  
  .amora-hotspot-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    max-height: 3em;
  }
  
  
  .amora-hotspot-price {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .amora-hotspot-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px;
  }
  
  .amora-hotspot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.05em;
  }
  
  .amora-hotspot-btn:hover {
    background: #111;
    color: #fff;
  }
  
  /* Mobile: popup xuống dưới ảnh, full width */
  @media (max-width: 768px) {
    .amora-hotspot-scene {
      padding: 0 10px;
    }
  
    /* Card nhỏ hơn chút cho vừa màn hình */
    .amora-hotspot-popup {
      max-width: 240px;
    }
      /* Dấu + nhỏ lại cho đỡ choán */
  .amora-hotspot-dot {
    width: 22px;
    height: 22px;
    margin-left: -11px;
    margin-top: -11px;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.28);
  }
  
    .amora-hotspot-card {
      border-radius: 14px;
      padding: 12px 14px;
    }
    .amora-hotspot-card {
        padding: 10px 12px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.20);
        gap: 10px;
      }
    
      .amora-hotspot-card-product .amora-hotspot-thumb {
        flex: 0 0 72px;
      }
    
      .amora-hotspot-thumb img {
        width: 72px;
        height: 72px;
        border-radius: 10px;
      }
    
      .amora-hotspot-title {
        font-size: 13px;
        line-height: 1.35;
        max-height: 2.7em;       /* ~2 dòng */
        -webkit-line-clamp: 2;
      }
    
      .amora-hotspot-price {
        font-size: 13px;
        margin-bottom: 4px;
      }
    
      .amora-hotspot-desc {
        font-size: 12px;
        line-height: 1.45;
        max-height: 2.9em;       /* ~2 dòng */
        -webkit-line-clamp: 2;
      }
    
      .amora-hotspot-btn {
        font-size: 11px;
        padding: 5px 10px;
      }
  }
  