* {
    font-family: "Montserrat", sans-serif !important;
}
html {
  scroll-behavior: smooth;
}
.breadcrumb-shop{
  display: none;
}
/* t26-tet2026.css */
.t26-root {
    background-color: #fff9f0;
    color: #333;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

.t26-header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.t26-lantern {
    position: absolute;
    width: 50px;
    height: auto;
    z-index: 10;
}

.t26-lantern.top-left {
    top: 20px;
    left: 20px;
}

.t26-lantern.top-right {
    top: 20px;
    right: 20px;
}

.t26-header h1 {
    font-size: 92px;
    font-weight: 900;
    color: #e60000;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.t26-header h2 {
    font-size: 72px;
    color: #ffc107;
    margin-bottom: 20px;
}

.t26-header p {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.t26-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.t26-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.t26-btn-primary {
    background-color: #e60000;
    color: white;
    border: 2px solid #e60000;
}

.t26-btn-primary:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.t26-btn-secondary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.t26-btn-secondary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.t26-coin-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.t26-coin-icons span {
    font-size: 1.5rem;
    color: #ffcc00;
}

/* Deals Section */
.t26-deals-section {
    padding: 60px 20px;
    text-align: center;
}

.t26-deals-section h2 {
    font-size: 2.2rem;
    color: #e60000;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.t26-deals-section h2 span {
    font-size: 1.5rem;
}

.t26-deals-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.t26-deal-card {
    background-color: #fff9e6;
    border: 2px solid #e60000;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.t26-deal-card:hover {
    transform: translateY(-5px);
}

.t26-deal-card::before,
.t26-deal-card::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ffc107;
    border-radius: 50%;
}

.t26-deal-card::before {
    top: 10px;
    right: 10px;
}

.t26-deal-card::after {
    bottom: 10px;
    left: 10px;
}

.t26-deal-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #e60000;
}

.t26-deal-card h3 {
    color: #e60000;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.t26-deal-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Countdown Section */
.t26-countdown-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff9f0;
}

.t26-countdown-section h2 {
    font-size: 2.5rem;
    color: #e60000;
    margin-bottom: 10px;
}

.t26-countdown-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

.t26-countdown-container {
    background-color: white;
    border: 3px solid #ffc107;
    border-radius: 20px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.t26-countdown-row {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.t26-countdown-item {
    background-color: #fff9f0;
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
}

.t26-countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e60000;
    margin-bottom: 5px;
}

.t26-countdown-label {
    font-size: 0.9rem;
    color: #666;
}

.t26-countdown-btn {
    margin-top: 30px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    background-color: #e60000;
    color: white;
    border: 2px solid #e60000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.t26-countdown-btn:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

/* Footer */
.t26-footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff9f0;
    margin-top: 40px;
    border-top: 1px solid #ffc107;
}

.t26-footer h3 {
    font-size: 1.8rem;
    color: #e60000;
    margin-bottom: 10px;
}

.t26-footer p {
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: #666;
}

.t26-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.t26-contact-item {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    color: #333;
    font-size: 0.9rem;
}

.t26-contact-item .icon {
    width: 25px;
    height: 25px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60000;
    font-size: 1rem;
}

.t26-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.t26-social-icons span {
    font-size: 1.5rem;
}

.t26-copyright {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #ffc107;
    padding-top: 15px;
    margin-top: 20px;
}

/* Floating Red Envelope */
.t26-red-envelope {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: auto;
    cursor: pointer;
    z-index: 1000;
    animation: t26-bounce 2s infinite;
}

@keyframes t26-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Decorative dots */
.t26-decorative-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ffc107;
    border-radius: 50%;
    opacity: 0.3;
}

.t26-dot-1 { top: 10%; left: 15%; }
.t26-dot-2 { top: 25%; right: 20%; }
.t26-dot-3 { bottom: 15%; left: 25%; }
.t26-dot-4 { bottom: 25%; right: 15%; }

/* ====== LAYOUT CHUNG CHO CÁC SECTION SẢN PHẨM ====== */
.section-ldp{
  position: relative;
  padding: 28px 0;
  color: #fff;
  --bg:#0a0b10; --panel:#16161d; --muted:#a6aec2;
  --grad1:#ff7a00; --grad2:#ff2b9d; --ring: rgba(255,255,255,.08);
}

/* Nền và overlay ánh sáng */
.section-ldp .ldp-bg{
  position:absolute; inset:0;
  background: #fff9f0;
  z-index:0;
}
.section-ldp .ldp-overlay{
  position:absolute; inset:0; z-index:1;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.section-ldp .ldp-wrapper{ position:relative; z-index:2; }
.section-ldp .section-content{ width:100%; }

/* ====== TIÊU ĐỀ / BANNER ====== */
.section-ldp .title-banner{
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px;
}
.section-ldp .title-banner .tablinks{
  border:0; cursor:default;
  padding:10px 16px; border-radius:999px; font-weight:800;
  color:#120900;
  background: #ffc107;
  box-shadow: 0 10px 24px rgba(255,122,0,.28);
}

/* ====== LƯỚI SẢN PHẨM ====== */
.section-ldp .products-wrapper{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:10px;
  border-radius:12px;
}
.section-ldp .product-item{ width:100% }

/* CTA xem thêm */
.section-ldp .tab-cta{ margin-top:12px }
.section-ldp .btn-more{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:260px;
  padding:10px 16px; border-radius:10px; text-decoration:none;
  background:#e60000; color:#fff; font-weight:700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.section-ldp .btn-more:hover{ opacity:.92 }

/* Viền nhẹ cho khu sản phẩm để giống mock */
.section-ldp .products-wrapper{
  box-shadow: 0 0 0 1px var(--ring) inset;
  background: rgba(255,255,255,.02);
  padding: 8px;
}

/* Căn giữa & giới hạn bề rộng cho tất cả section 2/3/4/5 */
.section-ldp .ldp-wrapper > .container-fluid,
.section-ldp .section-content,
.section-ldp .products-listing,
.section-ldp .products-wrapper{
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

/* Padding nhẹ 2 bên để không dính mép */
.section-ldp .ldp-wrapper > .container-fluid{
  padding-left: 12px;
  padding-right: 12px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px){
  .section-ldp .products-wrapper{ grid-template-columns: repeat(4,1fr) }
}
@media (max-width: 991px){
  .section-ldp{ padding:22px 0 }
  .section-ldp .products-wrapper{ grid-template-columns: repeat(3,1fr); gap:8px }
  .section-ldp .btn-more{ min-width:200px }
}
@media (max-width: 767px){
  .section-ldp .products-wrapper{ grid-template-columns: repeat(2,1fr); gap:8px }
  .section-ldp .btn-more{ width:100%; min-width:0 }
}

/* ====== ẨN BỚT SẢN PHẨM (nếu cần)
   Laptop hiển thị tối đa 15, các nhóm còn lại 10 ====== */
#section-scroll-2 .product-item:nth-child(n+16){ display:none }
#section-scroll-3 .product-item:nth-child(n+11),
#section-scroll-4 .product-item:nth-child(n+11),
#section-scroll-5 .product-item:nth-child(n+11){ display:none }

/* ====== ACCENT RIÊNG TỪNG SECTION ====== */
.section-collection-1{ --grad1:#ff7a00; --grad2:#ff2b9d }  /* Laptop */
.section-collection-2{ --grad1:#ff6a00; --grad2:#ff3ca6 }  /* PC */
.section-collection-3{ --grad1:#ff9b3d; --grad2:#c858ff }  /* Màn hình */
.section-collection-4{ --grad1:#ff7a00; --grad2:#8a6bff }  /* Gear */

/* Ẩn nút roll ở tablet/mobile (nếu section có dùng) */
@media (max-width: 1200px){ .button-roll{display:none;} }
@media (max-width: 991px){ .button-roll{display:none;} }
@media (max-width: 767px){ .button-roll{display:none;} }

.config-tags .field-1,
.config-tags .field-2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}