/* Touchtry RoomFit – Product Page Try-On UI */

/* Wrapper spacing (Add to cart ke neeche) */
.furniture-ar-tryon-wrap{
  margin-top: 14px;
  width: 100%;
}

/* Optional label (agar aap label text add karna chaho later) */
.furniture-ar-tryon-label{
  display:block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
}

/* Main Button */
.furniture-ar-tryon-btn{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;

  background: #000;
  color: #fff;

  border-radius: 8px;
  text-decoration: none;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform .08s ease, filter .18s ease, box-shadow .18s ease;
}

/* Hover / Focus */
.furniture-ar-tryon-btn:hover,
.furniture-ar-tryon-btn:focus{
  filter: brightness(1.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
  outline: none;
}

/* Active */
.furniture-ar-tryon-btn:active{
  transform: translateY(1px);
}

/* If theme buttons are very tall (match them) */
.single-product .furniture-ar-tryon-btn{
  line-height: 1;
}

/* Mobile */
@media (max-width: 600px){
  .furniture-ar-tryon-wrap{
    margin-top: 12px;
  }
  .furniture-ar-tryon-btn{
    min-height: 50px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* ✅ Add-to-cart aur Try it On ke beech + Try it On aur Buy Now ke beech gap */
.furniture-ar-tryon-wrap{
  margin-top: 18px;     /* upar ka gap (Add to cart ke neeche) */
  margin-bottom: 18px;  /* neeche ka gap (Buy Now se pehle) */
}