.tnl-cart-btn{
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.tnl-cart-count{

  color: #fff;

}

.tnl-cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9998;
}

.tnl-cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(420px, 92vw);
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,.12);
  z-index: 9999;
  transform: translateX(105%);
  transition: transform .25s ease;
  display:flex;
  flex-direction: column;
}

.tnl-cart-drawer.is-open{
  transform: translateX(0);
}

.tnl-cart-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid #eee;
}

.tnl-cart-title{font-weight: 700; font-size: 16px;}
.tnl-cart-close{
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.tnl-cart-body{
  padding: 10px 14px;
  overflow: auto;
  flex: 1;
}

/* mini cart items (woo default classes) */
.woocommerce-mini-cart{
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-mini-cart-item{
  display:flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
}
.woocommerce-mini-cart-item a{
  text-decoration:none;
}
.woocommerce-mini-cart-item img{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
}

/* footer */
.tnl-cart-footer{
  border-top: 1px solid #eee;
  padding: 12px 14px;
  background: #fff;
}
.tnl-cart-subtotal{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tnl-cart-actions{
  display:flex;
  gap: 10px;
}
.tnl-btn{
  flex: 1;
  text-align:center;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration:none;
}
.tnl-btn-outline{
  border: 1px solid #e5e7eb;
  color: #111827;
  background: #fff;
}
.tnl-btn-solid{
  border: 1px solid #16a34a;
  background: #16a34a;
  color: #fff;
}

@media (max-width: 575px){
  .tnl-cart-drawer{ width: 92vw; }
}

/* Ẩn nút mặc định Woo trong mini cart */
.woocommerce-mini-cart__buttons {
    display: none !important;
}
