/* ===== Product Actions (Buy Now + PayPal) ===== */
.idl-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.idl-primary-actions {
  display: flex;
  gap: 1rem;
}

.idl-primary-actions button {
  flex: 1;
}

.idl-btn-add-to-cart:hover {
  background: #222;
}

.idl-btn-add-to-cart img.cart-icon {
  height: 16px;
  width: auto;
  display: inline-block;
  margin-right: 10px
}

.idl-actions button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: "Geist", sans-serif;
  font-size: 0.875rem;   /* 14px */
  font-weight: 500;      /* medium */
  line-height: 1.25rem;  /* 20px */
}

/* Add to Cart button styles (Buy Now removed) */
.idl-btn-add-to-cart {
  background: #000;
  color: #fff;
  border: none;
}

.idl-btn-add-to-cart:hover {
  background: #222;
}

/* Add to Cart icon */
.idl-btn-add-to-cart img.cart-icon {
  height: 16px;
  width: auto;
}

/* PayPal button */
.idl-btn-paypal {
  background: #fff;
  border: 2px solid #000;
  color: #000; /* chữ đen */
  gap: 8px;
}

.idl-btn-paypal img.paypal-icon {
  height: 18px;
  width: auto;
  display: inline-block;
}


.idl-error-msg {
  margin-top: 10px;
  font-family: "Geist", sans-serif;
  font-size: 0.875rem;   /* 14px */
  line-height: 1.25rem;  /* 20px */
  font-weight: 400;
  color: #e11d48;        /* đỏ */
  display: none;         /* ẩn mặc định */
}


.idl-guarantees {
  padding-left: 20px;   /* giữ khoảng cách để dấu chấm không đè vào chữ */
  margin: 10px 0 0;
}

.idl-guarantees li {
  margin-bottom: 6px;
  font-family: "Geist", sans-serif;
  font-size: 0.875rem;   /* 14px */
  font-weight: 400;      /* regular */
  line-height: 1.25rem;  /* 20px */
  color: #484848;
}