/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 16 2026 | 12:24:58 */
/* =========================================================
   TBS – SUPPORT BOX (ĐẶT DƯỚI TBS INFO BOX) – DESKTOP ONLY
========================================================= */
@media (min-width: 768px){

  /* CHỈNH KHOẢNG CÁCH ĐẨY XUỐNG DƯỚI BOX HOTLINE Ở ĐÂY */
  :root{
    --tbs-info-box-gap: 22px;     /* khoảng cách giữa 2 box */
    --tbs-info-box-height: 190px; /* ước lượng chiều cao box hotline (em chỉnh lên/xuống) */
  }

  .woocommerce div.product .tbs-desktop-support{
    position:absolute;
    right:0;
    top:0;

    /* box hotline của em: translateY(20px)
       => support box sẽ xuống: 20px + height box hotline + gap
    */
    transform: translateY(calc(20px + var(--tbs-info-box-height) + var(--tbs-info-box-gap)));

    max-width:320px;
    width:320px;

    background:#fff;
    border:1px solid #e6e6e6;      /* viền khác box hotline */
    border-radius:8px;
    padding:14px 16px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
    z-index:9; /* nhỏ hơn info box (info box z-index:10) */
  }

  .woocommerce div.product .tbs-desktop-support__item{
    padding:8px 0;
    border-bottom:1px solid #f0f0f0;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
  }
  .woocommerce div.product .tbs-desktop-support__item:last-child{
    border-bottom:none;
  }
}
@media (min-width:768px){

  /* Box support dưới */
  .woocommerce div.product .tbs-desktop-support{
    background: #fffefc; /* trắng ngà nhẹ, không trùng box trên */
    border: 1px solid #eaeaea;
    border-radius: 10px;

    /* shadow rõ hơn nhưng vẫn sang */
    box-shadow:
      0 8px 20px rgba(0,0,0,0.08),
      0 2px 6px rgba(0,0,0,0.04);

    padding: 16px 18px;
  }

  /* mỗi dòng */
  .woocommerce div.product .tbs-desktop-support .tbs-support-item{
    font-size: 14px;
    line-height: 1.6;
  }

  /* icon rõ hơn */
  .woocommerce div.product .tbs-desktop-support .tbs-support-item i{
    color: #ff8a00;
    opacity: 0.95;
  }
}
.woocommerce div.product .tbs-desktop-support{
  background: linear-gradient(180deg,#ffffff,#fffaf4);
}
