.cryptoimg {
    border: 3px solid #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.crypto-description {
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.crypto-description strong {
    font-size: 16px;
    color: #ffcc00;
}

body {
  background: #f5f5f5!important;
}

.ty-container {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.ty-container h4 {
  color: green;
  font-size: 20px;
  margin-bottom: 15px;
}

.ty-notice {
  background: #f8d7da;
  color: #b71c1c;
  padding: 15px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 25px;
}

.ty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;   /* ✅ Makes both columns same height */
}

.ty-col {
  flex: 1;
  min-width: 300px;
  display: flex;
}

/* Order Details */
.ty-order-box {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Make inner box fill height */
.ty-order-box,
.ty-payment-box {
  flex: 1;               /* ✅ Stretches each box equally */
  display: flex;
  flex-direction: column;
  position: relative;
}

.ty-order-logo {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding: 15px;
}

.ty-order-amount {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  color: #000;
}

.ty-order-table {
    padding: 15px;
    margin-bottom: 45px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.ty-order-table table {
  width: 100%;
  border-collapse: collapse;
}

.ty-order-table td {
    padding: 8px 5px;
    font-size: 14px;
    color: #000;
}

.ty-order-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  position: absolute;
    bottom: 0;
    width: 100%;
}

/* Payment Details */
.ty-payment-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.ty-payment-box p {
  font-size: 15px;
  color: #333;
}

.ty-payment-img {
  margin-top: 15px;
  max-width: 400px;
  width: 100%;
  height: auto;
}

/* Bottom Note */
.ty-note {
    margin-top: 20px;
    padding: 15px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #ffffff;
    font-size: 14px;
    color: #000000;
    font-weight: 700;
}

/* Contact Section */
.ty-contact {
  margin-top: 20px!important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.ty-payment-box img {
    margin: auto;
}

.ty-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 8px;
    flex: 1;
    min-width: 250px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 16px;
    color: #000;
}

.ty-contact i {
  background: #ebe0e0;
  color: #fff;
  font-size: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.ty-contact a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.ty-contact a:hover {
  color: #28a745;
  text-decoration: underline;
}

i.fa-fa-whatsapp img, i.fa-fa-gmail img, i.fa-fa-help-png img {
    width: 19px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .ty-row {
    flex-direction: column;
  }
  .ty-contact {
    flex-direction: column;
  }
  .ty-contact li {
    border: none;
    padding: 10px 0;
  }
}