/* ===== Nice product cards - for TwentyX style ===== */

/* card base */
.tt-single-product {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 14px !important;
  padding: 36px 28px !important;
  transition: transform .26s ease, box-shadow .26s ease;
  box-shadow: 0 6px 22px rgba(25,40,50,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px; /* adjust if needed */
}

/* hover lift */
.tt-single-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(20,40,80,0.08);
}

/* product title */
.tt-product-name h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #333;
}

/* price block */
.product-pricing .price {
  display: block;
  font-size: 22px;
  color: #d64545; /* red accent */
  font-weight: 700;
  letter-spacing: .4px;
  margin: 6px 0 6px;
}

/* starting from small text */
.product-pricing .tt-cycle {
  color: #9aa3ae;
  font-size: 13px;
}

/* monthly small text under price */
.product-pricing .tt-cycle + .text-muted {
  display: block;
  color: #777;
  font-size: 13px;
}

/* features list */
.tt-product-desc ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
}
.tt-product-desc li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
  margin: 10px 0;
}

/* small icon container (if icons are fontawesome) */
.tt-product-desc li i,
.tt-product-desc li .fa,
.tt-product-desc li .fas,
.tt-product-desc li .fad {
  color: #0b2f5a;
  font-size: 14px;
  min-width: 22px;
}

/* order button */
.btn-order-now {
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(180deg,#0b66bf,#0a56a6);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(11,102,191,0.16);
}

/* featured badge */
.tt-featured-badge .badge {
  background: linear-gradient(90deg,#ffd35a,#ff6b6b);
  color: #111;
  font-weight:700;
  padding: 8px 12px;
  border-radius: 20px;
  position: absolute;
  top: 18px;
  right: 20px;
  box-shadow: 0 6px 14px rgba(255,105,105,0.08);
}

/* debug/source line (small grey) - visually lighter */
.product-pricing > div[style] { /* targets our inline debug div */
  font-size: 11px;
  color: #a7a7a7;
  margin-top: 6px;
}

/* responsive tweaks */
@media (max-width: 991px) {
  .tt-single-product { min-height: auto; padding: 28px; }
  .tt-product-name h5 { font-size: 18px; }
  .product-pricing .price { font-size: 18px; }
}

/* small niceties: equalize row spacing */
.row-eq-height { display:flex; flex-wrap:wrap; gap:28px; }
.row-eq-height > .col-md-6, .row-eq-height > .col-lg-4 { display:flex; }
.row-eq-height .tt-single-product { flex:1 1 auto; }
