.page-title {
  margin: 20px 20px 10px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 15px 10px 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.toolbar-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.select-wrap select.select {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.btn-clear {
  background: #ff4d4d;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-clear:hover {
  background: #cc0000;
}

.toolbar-right {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

@media (min-width: 768px) {
  .toolbar-right {
    margin-top: 0;
  }
}

/* ========== GRID ACC ========== */
.acc-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  padding: 0 8px;
}

@media (max-width: 479px) {
  .acc-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 0; 
  }
  /* .toolbar-right {
    display: none;
  } */
  .acc-item {
    width: 100vw; 
    max-width: 100%;
  }

}




@media (min-width: 768px) {
  .acc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .acc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.acc-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.acc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.acc-item .thumb {
  overflow: hidden; 
  border-radius: 6px; 
}
.acc-item .thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.acc-item:hover .thumb img {
  transform: scale(1.2); 
}
.acc-item p {
  margin: 4px 0;
  font-size: 15px;
  color: #333;
}

.acc-item .gia-goc {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.acc-item .gia-ban {
  color: #e40000;
  font-weight: bold;
  font-size: 18px;
  margin: 4px 0;
}

.btn-xem {
  display: block;
  text-align: center;
  background: #a30000;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 8px;
  transition: background 0.3s;
}

.btn-xem:hover {
  background: #ff0000;
}

.lien-he-zalo {
  margin-top: 8px;
  background: #ffc107;
  color: #000;
  text-align: center;
  font-size: 13px;
  padding: 8px 4px;
  font-weight: bold;
  border-radius: 4px;
  line-height: 1.4;
}
.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.custom-pagination a,
.custom-pagination span {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  min-width: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.custom-pagination a:hover {
  background: #a30000;
  color: #fff;
  border-color: #a30000;
}

.custom-pagination .current {
  background: #a30000;
  color: #fff;
  font-weight: bold;
  border-color: #a30000;
}

.custom-pagination .disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.acc-detail-wrapper {
  display: flex;
  gap: 24px;
  padding: 40px;
  background-size: cover;
  color: #fff;
}
.acc-detail-left {
  flex: 1.2;
}
.acc-detail-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.image-popup .close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.acc-detail-mid {
  flex: 1.5;
}
.acc-title {
  font-size: 26px;
  font-weight: bold;
  color: #ff3c3c;
  margin-bottom: 10px;
}
.acc-meta {
  font-size: 15px;
  margin-bottom: 6px;
  color: #000;
}
.text-red { color: red; }
.text-green { color: #f30505; }
.text-gray { color: #311b1b; }
.text-blue { color: #0056ff; font-weight: bold; }

.price-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}
.price { color: #ff3c3c; }
.discount {
  background: #ff3c3c;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
}

.btn-group {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}
.btn-buy {
  padding: 14px 24px;
  background: #e40000;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
}
.btn-zalo {
  padding: 13px 20px;
  background: rgb(8, 174, 224);
  color: #f5e9e9;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.btn-zalo span {
  font-size: 16px;
}
/* .btn-zalo span img {
  width: 20px;
} */
.btn-zalo:hover {
  background: #00ffcc;
}
.guarantee h3 {
  margin-top: 20px;
  font-size: 16px;
  color: #141313;
  margin-bottom: 10px;
}
.guarantee ul {
  list-style: none;
  padding-left: 0;
}
.guarantee ul li {
  color: #111;
}
.guarantee li::before {
  content: '\2714';
  color: #00ffcc;
  margin-right: 6px;
}

.acc-detail-right {
  flex: 1;
  color: #000;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.luu-y-khi-mua {
    background: #fff;
    border-radius: 10px;
}
.acc-detail-right h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fdfdfd;
  background: #d80000;
  padding: 10px;
  border-radius: 8px;
}
.bank-info p {
  margin-bottom: 4px;
}
.note-list {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}
.note-list li {
  margin-bottom: 8px;
}
.breadcrumb {
    margin-bottom: 40px
}
@media (max-width: 768px) {
  .acc-detail-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .acc-detail-left,
  .acc-detail-mid,
  .acc-detail-right {
    width: 100%;
    flex: unset;
  }

  .btn-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn-buy,
  .btn-zalo {
    width: 100%;
    text-align: center;
  }

  .price-section {
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
  }

  .breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .acc-title {
    font-size: 20px;
  }

  .acc-meta {
    font-size: 14px;
  }

  .guarantee h3,
  .acc-detail-right h3 {
    font-size: 16px;
    text-align: center;
  }

  .guarantee ul,
  .note-list {
    font-size: 13px;
  }

  .acc-detail-right {
    margin-top: 24px;
    padding: 16px;
  }
}

.support-policy {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}

.policy-header {
    background: #111;
    color: #fff;
    font-weight: bold;
    padding: 12px 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list i {
    font-size: 20px;
    color: #555;
    min-width: 24px;
    text-align: center;
    margin-top: 2px;
}

.policy-list strong {
    color: #111;
}

.policy-list small {
    color: #555;
    font-size: 13px;
}

.zalo-contact strong .text-yellow {
    color: #fbbd08;
}


/* ----------------------------------------------------deposit ------------------------------------------------------------*/

.deposit-atm-wrapper {
  max-width: 1300px;
  margin: 24px auto 64px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}
.deposit-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 6px;
}
.deposit-desc {
  font-size: 14px;
  margin-bottom: 36px;
  color: #666;
}
.deposit-content {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}
.deposit-method {
  background: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
  border-radius: 8px;
  padding: 28px 32px;
  flex: 1;
}
.deposit-method-left h2,
.deposit-method-right h2 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.deposit-subdesc {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
}
.tag-new, .tag-hot {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 12px;
  vertical-align: middle;
  user-select: none;
}
.tag-new {
  background-color: #12b886;
  color: #fff;
}
.tag-hot {
  background-color: #0d6efd;
  color: #fff;
}
.deposit-qr {
  text-align: center;
}
.deposit-qr img {
  width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.15);
}
.deposit-qr-footer {
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.deposit-method-right .bank-logo {
  display: block;
  margin: 0 auto 22px;
  max-width: 140px;
}
.deposit-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 22px;
}
.deposit-info-table tbody tr {
  border-bottom: 1px solid #eee;
}
.deposit-info-table tbody tr:last-child {
  border-bottom: none;
}
.deposit-info-table td {
  padding: 10px 8px;
}
.deposit-info-table td:first-child {
  color: #666;
  font-weight: 600;
  width: 140px;
}
.deposit-info-table td a.deposit-info-link {
  color: #198754;
  text-decoration: none;
}
.deposit-info-highlight {
  color: #d62f2f;
  font-weight: 700;
}
.deposit-waiting {
  font-weight: 600;
  text-align: center;
  color: #d62f2f;
  font-size: 13px;
}
.deposit-waiting-note {
  font-weight: 400;
  font-size: 12px;
  color: #888;
  margin: 10px 0 24px;
}
/* Loading spinner */
.loading-spinner {
  margin: 0 auto;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #d62f2f;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.deposit-history {
  max-width: 1080px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #222;
}

.deposit-history h3 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
  color: #1a1a1a;
  text-align: center;
  /* Giữ tiêu đề cố định */
  position: sticky;
  top: 0;
  background-color: #fff; /* màu nền để không bị trong suốt */
  z-index: 10; /* ưu tiên hiển thị */
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* mượt trên iOS */
}

.deposit-history table {
  width: 100%;
  min-width: 700px; /* Giữ bảng đủ rộng */
  border-collapse: collapse;
  text-align: center;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.07);
}

.deposit-history th,
.deposit-history td {
  border: 1px solid #ddd;
  padding: 14px 16px;
}

.deposit-history th {
  background-color: #f5f5f5;
  font-weight: 700;
  color: #444;
}

.deposit-history td.status-success {
  color: #198754;
  font-weight: 700;
}

.deposit-history td.amount {
  color: #20c997;
  font-weight: 700;
}

@media (max-width: 768px) {
  .deposit-content {
    flex-direction: column;
  }
  .deposit-method {
    margin-bottom: 28px;
  }
}
.profile-container {
        max-width: 700px;
        margin: 40px auto;
        padding: 25px;
        background: rgba(15, 4, 4, 0.15);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .profile-container h3 {
        margin-top: 20px
    }
    .profile-info p {
        font-size: 16px;
        margin-bottom: 8px;
        font-size: 18px;
        color: #f34d4d;

    }
    .profile-info strong {
        color: #0f0808;
        font-size: 16px;
    }
    h2, h3 {
        text-align: center;
        margin-bottom: 20px;
        color: #161111;
    }
    hr {
        margin-top: 10px;
    }
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #111411;
    }

    .form-control {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
    }

    .btn-save-password {
        display: block;
        width: 100%;
        background: #3498db;
        color: rgb(24, 3, 3);
        padding: 12px;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        margin-top: 10px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .btn-save-password:hover {
        background: #2980b9;
    }

    .balance-log-table {
        margin-top: 20px;
        overflow-x: auto;
    }

    .balance-log-table table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }

    .balance-log-table th,
    .balance-log-table td {
        padding: 10px 12px;
        border: 1px solid #e0e0e0;
        text-align: center;
        color: #0c0909
    }

    .balance-log-table th {
        background-color: #f9f9f9;
        font-weight: bold;
        color: #555;
    }

    .balance-log-table tbody tr:nth-child(even) {
        background-color: #fcfcfc;
    }

    .alert {
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 20px;
        text-align: center;
    }

    .alert-success {
        background-color: #e8f5e9;
        color: #2e7d32;
        border: 1px solid #c8e6c9;
    }

    .alert-danger {
        background-color: #ffebee;
        color: #c62828;
        border: 1px solid #ef9a9a;
    }

    .no-logs {
        text-align: center;
        font-style: italic;
        color: #888;
    }

    @media (max-width: 768px) {
        .profile-container {
            padding: 15px;
        }

        .btn-save-password {
            font-size: 15px;
        }

        .balance-log-table table {
            font-size: 13px;
        }
    }
    .purchase-history {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.purchase-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #cffc07;
}

.no-data {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-left: 5px solid #007bff;
    padding: 15px;
    font-size: 16px;
    border-radius: 6px;
    margin-top: 20px;
}

.table-wrapper {
    overflow-x: auto;
}

.purchase-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.purchase-table thead {
    background: #343a40;
    color: #fff;
}

.purchase-table th,
.purchase-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.purchase-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.85);
}

.copy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 8px;
}

.copy-btn {
    border: none;
    background: none;
    cursor: pointer;
    color: #222;
    font-size: 16px;
    padding: 2px;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: #f5d56d;
}



.tin-tuc-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    animation: fadeIn 0.3s ease-in-out;
    margin: 20px auto;
    min-height: 60vh;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.breadcrumb {
    font-size: 14px;
    margin: 10px auto 20px; 
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #777;
    background-color: blanchedalmond;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1d6fa5;
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.tin-tuc-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.3;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .tin-tuc-container {
        padding: 20px;
    }
    .tin-tuc-title {
        font-size: 26px;
    }
}
.select-wrap input.select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.select-wrap input.select:focus {
    border-color: #e53935;
    box-shadow: 0 0 4px rgba(229, 57, 53, 0.4);
}
.btn-search {
    background: #e53935;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-search:hover {
    background: #c62828;
}



.tm-card {
    width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin: 20px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.tm-card-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tm-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
}

.tm-feature {
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.tm-green { background: #28a745; }
.tm-orange { background: #ffc107; color: #000; }
.tm-purple { background: #6f42c1; }
.tm-blue { background: #17a2b8; }

.tm-acc-code {
    margin: 8px 0;
}

.tm-price {
    font-size: 22px;
    font-weight: bold;
    color: #c00;
    margin: 10px 0;
}

.tm-btn-detail {
    display: inline-block;
    background: #a00;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.tm-remain {
    color: #c00;
    font-weight: bold;
    border: 1px dashed #c00;
    padding: 6px;
    border-radius: 5px;
    margin: 10px 0;
}

.tm-btn-zalo {
    display: block;
    background: #ffc107;
    color: #000;
    padding: 10px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}
.tmdetail-card {
    display: flex;
    gap: 20px;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    flex-wrap: wrap; /* giúp tự xuống dòng khi thiếu chỗ */
}

.tmdetail-left {
    flex: 0 0 300px;
}

.tmdetail-left img {
    max-width: 100%;
    border-radius: 10px;
}

.tmdetail-right {
    flex: 1;
    min-width: 250px;
}

.tmdetail-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.tmdetail-price {
    font-size: 22px;
    font-weight: bold;
    color: #e74c3c;
}

.tmdetail-discount {
    background: #c0392b;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
}

.tmdetail-buybox {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap; /* cho phép các nút xuống dòng */
    gap: 10px;
    align-items: center;
}

.tmdetail-buybox input {
    width: 50px;
    text-align: center;
}

.tmdetail-qty {
    background: #333;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.tmdetail-btn-buy {
    background: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    flex: 1; /* nút buy sẽ co giãn */
    min-width: 180px;
}

.tmdetail-btn-zalo,
.tmdetail-btn-zalo-full {
    background: #f1c40f;
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    min-width: 180px;
}

.tmdetail-remain {
    margin: 10px 0;
    font-weight: bold;
    color: #fff;
}

.tmdetail-rates {
    margin: 10px 0;
}

.tmdetail-feature {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 3px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Màu nhãn tỉ lệ */
.tm-green { background-color: #00b894; }
.tm-orange { background-color: #fdcb6e; color: #333; }
.tm-purple { background-color: #6c5ce7; }
.tm-blue { background-color: #0984e3; }

.tmdetail-subtitle {
    margin-top: 20px;
    font-size: 18px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.tmdetail-list {
    margin-top: 10px;
    padding-left: 20px;
    color: #0984e3;
}

.tmdetail-list li {
    margin: 5px 0;
}

/* 🔹 Responsive */
@media (max-width: 992px) {
    .tmdetail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tmdetail-left {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .tmdetail-right {
        width: 100%;
    }

    .tmdetail-buybox {
        justify-content: center;
    }

    .tmdetail-btn-buy,
    .tmdetail-btn-zalo,
    .tmdetail-btn-zalo-full {
        width: 100%; /* full width trên mobile */
    }
}
.security-guide {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.sg-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.sg-intro {
    font-size: 16px;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
}

.sg-box {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #3498db;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sg-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.sg-box p {
    margin: 0;
    color: #444;
}

.sg-box.warning {
    border-left-color: #e67e22;
    background: #fff5e6;
}

.sg-box.success {
    border-left-color: #2ecc71;
    background: #eafaf1;
}

.highlight {
    color: #3498db;
    font-weight: bold;
}

.highlight-red {
    color: #e74c3c;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .sg-title {
        font-size: 22px;
    }
    .sg-box {
        padding: 15px;
    }
    .sg-box h2 {
        font-size: 18px;
    }
}
.installment-guide {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.ig-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.ig-intro {
    font-size: 16px;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
}

.ig-box {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #3498db;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.ig-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.ig-box p {
    margin: 0;
    color: #444;
}

.ig-box.success {
    border-left-color: #2ecc71;
    background: #eafaf1;
}

.ig-box.warning {
    border-left-color: #e67e22;
    background: #fff5e6;
}

.ig-box.highlight-box {
    border-left-color: #9b59b6;
    background: #f8f1fc;
}

/* Responsive */
@media (max-width: 768px) {
    .ig-title {
        font-size: 22px;
    }
    .ig-box {
        padding: 15px;
    }
    .ig-box h2 {
        font-size: 18px;
    }
}
.policy-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.policy-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.policy-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-box {
    background: #f9f9f9;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-left: 6px solid #3498db;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.policy-box h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #34495e;
}

.policy-box p {
    margin: 0;
    color: #444;
}

.policy-box.success {
    border-left-color: #2ecc71;
    background: #eafaf1;
}

.policy-box.warning {
    border-left-color: #e67e22;
    background: #fff5e6;
}

.policy-conclusion {
    margin: 25px 0;
    font-weight: bold;
    color: #2c3e50;
    text-align: justify;
}

.policy-subtitle {
    margin-top: 30px;
    font-size: 22px;
    color: #2c3e50;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.policy-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.policy-list li i {
    color: #3498db;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-title {
        font-size: 22px;
    }
    .policy-box h2 {
        font-size: 18px;
    }
    .policy-subtitle {
        font-size: 20px;
    }
}
