:root{
  --green:#07883f;
  --green-dark:#05652d;
  --orange:#ff7900;
  --red:#f10f00;
  --text:#1d1d1d;
  --muted:#5f6b66;
  --bg:#f3f5f4;
  --white:#fff;
  --border:#e7eee9;
  --shadow:0 14px 34px rgba(0,0,0,.10);
  --radius:22px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Be Vietnam Pro",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  padding-bottom:0;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input{font-family:inherit}
.container{width:1620px;max-width:94%;margin:auto}

.site-header{
  background:linear-gradient(135deg,#08a046 0%,#067e39 55%,#056d31 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.10);
}
.site-header::before{
  content:"";
  position:absolute;
  width:520px;height:520px;border-radius:50%;
  top:-260px;right:-120px;
  background:radial-gradient(circle,rgba(255,255,255,.10),transparent 70%);
}
.header-row{
  position:relative;
  z-index:2;
  min-height:100px;
  display:flex;
  align-items:center;
  gap:18px;
  padding:12px 0;
  flex-wrap:nowrap;
}
.header-row .brand        { flex: 0 0 auto; }
.header-row .hotline-box  { flex: 0 0 auto; }
.header-row .cart-trigger { flex: 0 0 auto; }
.header-row .search-box   { flex: 1 1 auto; min-width: 180px; max-width: 440px; }
.header-row .header-trust { flex: 0 0 auto; margin-left: auto; }
.brand{display:flex;align-items:center;gap:18px}
.brand-icon{
  width:76px;height:76px;min-width:76px;
  border-radius:26px;
  background:linear-gradient(145deg,#fff,#effff5);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 34px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.9);
  position:relative;overflow:hidden;
}
.brand-icon::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.45),transparent 42%);
}
.brand-icon i{font-size:40px;color:var(--green);position:relative;z-index:2}
.brand strong{font-size:36px;font-weight:900;line-height:1;letter-spacing:-1.2px;text-shadow:0 3px 10px rgba(0,0,0,.12)}
.brand strong span{color:#ffae00}
.brand p{margin-top:9px;font-size:16px;font-weight:700;color:#f3fff6}

.hotline-box{display:flex;align-items:center;gap:16px;border-left:1px solid rgba(255,255,255,.18);padding-left:26px}
.hotline-box > i{
  width:54px;height:54px;min-width:54px;border-radius:18px;background:#fff;color:var(--green);
  display:flex;align-items:center;justify-content:center;font-size:24px;box-shadow:0 10px 24px rgba(0,0,0,.16)
}
.hotline-box span{font-size:14px;font-weight:700;color:#f6fff7;margin-bottom:4px;display:block}
.hotline-box strong{font-size:18px;line-height:1.15;color:#ffe84a;font-weight:900;animation:phoneGlow 1.9s infinite}
@keyframes phoneGlow{50%{text-shadow:0 0 14px rgba(255,232,74,.6);transform:scale(1.02)}}

.search-box{height:66px;display:flex;background:#fff;border-radius:22px;overflow:hidden;box-shadow:0 14px 34px rgba(0,0,0,.16)}
.search-box input{flex:1;border:0;outline:0;padding:0 26px;font-size:17px;font-weight:600;color:#333;min-width:0}
.search-box button{width:82px;border:0;background:linear-gradient(180deg,#ff9b00,#ff7900);color:#fff;font-size:28px;cursor:pointer;position:relative;overflow:hidden}
.search-box button::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);transform:translateX(-120%);animation:searchLight 2.8s infinite}
@keyframes searchLight{100%{transform:translateX(120%)}}

.header-trust{display:grid;grid-template-columns:repeat(3,1fr)}
.header-trust div{text-align:center;padding:0 18px;border-left:1px solid rgba(255,255,255,.20)}
.header-trust i{display:block;font-size:34px;margin-bottom:8px}
.header-trust span{font-size:14px;font-weight:800;line-height:1.35;color:#f7fff9}

.category-bar{background:#f6f6f6;padding:18px 0 20px}
.category-row{background:#fff;display:grid;grid-template-columns:repeat(7,1fr);border:1px solid #e3e3e3;border-radius:16px;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.08)}
.category-row a{height:76px;display:flex;align-items:center;justify-content:center;gap:12px;border-right:1px solid #e5e5e5;color:#111;transition:.25s}
.category-row a:last-child{border-right:0}
.category-row i{font-size:28px;color:var(--green);flex-shrink:0}
.category-row span{font-size:15px;font-weight:800;line-height:1.3}
.category-row a:hover{background:#f5fff8;color:var(--green)}

.price{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.price del{color:#888;font-size:13px}.price strong{font-size:23px;color:red;font-weight:900}

.bottom-grid{
  display:grid;
  grid-template-columns:1.6fr .8fr;
  gap:26px;
  margin:32px auto;
  align-items:stretch;
}

.card-white{
  background:#fff;
  border:1px solid #e8eee9;
  border-radius:28px;
  padding:26px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.card-white h2{
  font-size:26px;
  color:var(--green);
  margin-bottom:22px;
  font-weight:900;
  letter-spacing:-.5px;
}

.review-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.review{
  display:block;
  border:1px solid #e7eee9;
  border-radius:22px;
  padding:16px;
  background:linear-gradient(180deg,#fff,#f8fffb);
  transition:.25s;
}

.review:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 26px rgba(0,0,0,.1);
}

.review img{
  width:100%;
  height:160px;
  border-radius:18px;
  object-fit:cover;
  margin-bottom:12px;
}

.stars{
  color:#ffb300;
  font-size:19px;
  margin-bottom:6px;
}

.review h4{
  font-size:16px;
  font-weight:900;
  margin-bottom:7px;
  color:#111;
}

.review p{
  font-size:14px;
  line-height:1.55;
  color:#555;
}

.faq details{
  border:1px solid #e4ebe6;
  border-radius:18px;
  margin-bottom:13px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(0,0,0,.04);
}

.faq summary{
  padding:17px 18px;
  font-weight:900;
  cursor:pointer;
  list-style:none;
  display:flex;
  gap:10px;
  align-items:center;
  font-size:16px;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary i{
  color:var(--green);
  font-size:17px;
}

.faq details[open] summary{
  color:var(--green);
}

.faq details p{
  padding:0 18px 18px 45px;
  color:#555;
  line-height:1.65;
  font-size:15px;
}

@media(max-width:1100px){

  .bottom-grid{
    grid-template-columns:1fr;
  }

  .review-list{
    grid-template-columns:1fr;
  }

  .review img{
    height:240px;
  }

}

@media(max-width:768px){

  .bottom-grid{
    gap:18px;
    margin:22px auto;
  }

  .card-white{
    padding:18px;
    border-radius:22px;
  }

  .card-white h2{
    font-size:22px;
    margin-bottom:18px;
  }

  .review{
    padding:14px;
    border-radius:18px;
  }

  .review img{
    height:210px;
    border-radius:14px;
  }

  .review h4{
    font-size:15px;
  }

  .review p{
    font-size:14px;
  }

  .faq summary{
    font-size:15px;
    padding:15px;
    line-height:1.45;
  }

  .faq details p{
    font-size:14px;
    padding:0 15px 15px 40px;
  }

}

.store-info{
  background:#f5f7f6;
  padding:44px 0;
  margin-top:20px;
}

.store-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.store-info h2{
  color:var(--green);
  font-size:28px;
  font-weight:900;
  margin-bottom:22px;
  padding-bottom:14px;
  border-bottom:2px solid #edf2ef;
  letter-spacing:-.6px;
}

.store-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  padding:20px 0;
  border-bottom:1px solid #e8eee9;
}

.store-item i{
  width:54px;
  height:54px;
  border-radius:16px;
  background:#eafff0;
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
}

.store-item h3{
  font-size:18px;
  font-weight:900;
  margin-bottom:7px;
  letter-spacing:-.2px;
}

.store-item p{
  font-size:15px;
  line-height:1.65;
  color:#4b5563;
  font-weight:500;
}

.warranty-box{
  background:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
  border:1px solid #e8eee9;
}

.warranty-box p{
  display:grid;
  grid-template-columns:48px 240px 1fr;
  align-items:center;
  column-gap:18px;
  padding:18px 0;
  border-bottom:1px solid #eef2ef;
  margin:0;
}

.warranty-box p:last-child{
  border-bottom:0;
}

.warranty-box i{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#effff5;
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
}

.warranty-box strong{
  color:#f10f00;
  font-size:28px;
  font-weight:900;
  line-height:1;
  letter-spacing:.3px;
  white-space:nowrap;
}

.warranty-box span{
  font-size:17px;
  font-weight:800;
  color:#222;
  line-height:1.3;
}

@media(max-width:768px){

  .warranty-box{
    padding:18px;
    border-radius:22px;
  }

  .warranty-box p{
    grid-template-columns:40px 1fr;
    row-gap:4px;
    column-gap:12px;
    padding:14px 0;
  }

  .warranty-box i{
    width:36px;
    height:36px;
    font-size:15px;
  }

  .warranty-box strong{
    font-size:24px;
  }

  .warranty-box span{
    grid-column:2;
    font-size:14px;
    margin-top:-2px;
  }
}

.review-section{
  padding:40px 0;
  background:#f4f6f5;
}

.review-section h2{
  font-size:34px;
  font-weight:900;
  color:#111;
  margin-bottom:18px;
  letter-spacing:-.8px;
}

.review-score{
  background:#fff;
  border:1px solid #e8eee9;
  border-radius:22px;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.review-score strong{
  font-size:46px;
  font-weight:900;
  color:#ff8a00;
  display:flex;
  align-items:center;
  gap:10px;
}

.review-score span{
  font-size:18px;
  font-weight:800;
  color:#444;
}

.review-btn{
  height:52px;
  padding:0 24px;
  border:0;
  border-radius:16px;
  background:linear-gradient(135deg,#0b9fe8,#007dd1);
  color:#fff;
  font-size:15px;
  font-weight:900;
  letter-spacing:.5px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,125,209,.25);
  transition:.25s;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
}

.review-btn:hover{
  transform:translateY(-2px);
}

@media(max-width:768px){

  .review-section{
    padding:24px 0;
  }

  .review-section h2{
    font-size:24px;
    line-height:1.3;
    margin-bottom:14px;
  }

  .review-score{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:16px;
    border-radius:18px;
  }

  .review-score strong{
    font-size:34px;
  }

  .review-score span{
    font-size:14px;
  }

  .review-btn{
    width:100%;
    height:48px;
    border-radius:14px;
    font-size:14px;
  }

}

.qa-item{
  background:#fff;
  border:1px solid #e8eee9;
  border-radius:22px;
  padding:18px;
  margin-bottom:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.qa-name{
  font-size:16px;
  font-weight:900;
  color:#111;
  margin-bottom:10px;
}

.qa-item > p{
  font-size:16px;
  line-height:1.55;
  color:#333;
  margin-bottom:14px;
}

.qa-answer{
  background:#f6fff9;
  border:1px solid #d8f2e1;
  border-left:4px solid var(--green);
  border-radius:16px;
  padding:14px 16px;
}

.qa-answer strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}

.qa-answer p{
  font-size:15px;
  line-height:1.6;
  color:#333;
}

@media(max-width:768px){

  .qa-item{
    padding:14px;
    border-radius:18px;
  }

  .qa-name{
    font-size:14px;
  }

  .qa-item > p{
    font-size:14px;
  }

  .qa-answer{
    padding:12px;
    border-radius:14px;
  }

  .qa-answer p{
    font-size:14px;
  }

}

.footer{background:linear-gradient(180deg,#06743a,#005b2d);color:#fff;margin-top:0;overflow:hidden}
.footer-row{display:grid;grid-template-columns:210px 1.2fr 330px .9fr 290px;gap:34px;align-items:center;padding:48px 0 36px}
.footer-logo img{width:190px;height:190px;border-radius:32px;object-fit:cover;box-shadow:0 18px 40px rgba(0,0,0,.22)}
.footer h3{font-size:20px;font-weight:900;margin-bottom:16px;display:flex;align-items:center;gap:9px}.footer h3 i{color:#ffe36a}.footer p{font-size:15px;line-height:1.8;color:#f3fff5}.footer ul{list-style:none}.footer li{margin-bottom:12px;font-size:15px;font-weight:600;color:#f3fff5}
.footer-contact,.footer-social{background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.12);border-radius:24px;padding:22px;box-shadow:0 10px 30px rgba(0,0,0,.16)}
.footer-contact a{height:58px;background:#fff;color:var(--green);border-radius:16px;margin-bottom:10px;font-weight:900;font-size:18px;display:flex;align-items:center;gap:10px;padding:0 14px;transition:.25s}.footer-contact a:hover{transform:translateY(-3px);background:#fff8ef}.footer-contact a i{width:38px;height:38px;border-radius:50%;background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center}
.socials{display:flex;justify-content:center;gap:13px;margin:18px 0 22px}.socials a{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:24px;font-weight:900;box-shadow:0 8px 18px rgba(0,0,0,.16);transition:.25s}.socials a:hover{transform:translateY(-5px) scale(1.05)}.fb{background:#1877f2}.yt{background:#ff0000}.tt{background:#000}.zl{background:#0068ff;font-size:16px!important}.ship{background:linear-gradient(135deg,#ff9100,#ff6a00);box-shadow:0 14px 30px rgba(0,0,0,.22);border-radius:18px;padding:14px;text-align:center;font-size:19px;font-weight:900}.ship small{font-size:13px}.copy{text-align:center;padding:18px 0;background:rgba(0,0,0,.08);border-top:1px solid rgba(255,255,255,.14);font-size:14px;font-weight:800}

.float-buttons{position:fixed;left:18px;bottom:90px;z-index:999;display:flex;flex-direction:column;gap:12px}.float-buttons a{width:54px;height:54px;border-radius:16px;box-shadow:0 8px 22px rgba(0,0,0,.18);display:flex;align-items:center;justify-content:center;font-weight:900;transition:.25s}.float-buttons a:hover{transform:translateX(6px) scale(1.06)}.float-buttons a:first-child{background:#fff;color:var(--green);font-size:22px}.float-buttons .zalo{background:#0068ff;color:#fff;font-size:16px}.float-buttons .mess{background:#0084ff;color:#fff;font-size:22px}
.mobile-cta{display:none}.back-top{position:fixed;right:20px;bottom:22px;width:50px;height:50px;border:0;border-radius:50%;background:var(--green);color:#fff;font-size:24px;cursor:pointer;display:none;z-index:998;box-shadow:0 8px 20px rgba(0,0,0,.18)}.back-top.show{display:block}

.reveal{opacity:0;transform:translateY(22px);transition:.55s ease}.reveal.visible{opacity:1;transform:translateY(0)}

@media(max-width:1400px){
  .header-row{gap:14px;padding:12px 0}.hotline-box{border-left:0;padding-left:0}.header-trust{max-width:auto}.footer-row{grid-template-columns:1fr 1fr}
}
@media(max-width:1100px){
  .bottom-grid{grid-template-columns:1fr}.review-list{grid-template-columns:1fr}.store-grid{grid-template-columns:1fr;gap:34px}
}

.hot-sale-ui{
    position:relative;
    max-width:1680px;
    margin:28px auto;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(0,0,0,.12);
    border:1px solid #ffe1e1;
}

.sale-banner{
    position:relative;
    min-height:260px;
    padding:28px 34px 72px;
    background:
        radial-gradient(circle at 8% 18%, rgba(255,180,0,.55), transparent 10%),
        radial-gradient(circle at 35% 22%, rgba(255,255,255,.28), transparent 7%),
        radial-gradient(circle at 78% 28%, rgba(255,255,255,.18), transparent 5%),
        linear-gradient(135deg,#e70000 0%,#b90000 55%,#8c0000 100%);
    display:grid;
    grid-template-columns:440px 1fr 330px;
    align-items:start;
    gap:24px;
    overflow:hidden;
}

.sale-bg-effect span{
    position:absolute;
    z-index:3;
    width:10px;
    height:10px;
    background:#ffd84d;
    border-radius:50%;
    box-shadow:0 0 16px #ffd84d;
    animation:sparkMove 3s infinite ease-in-out;
}

.sale-bg-effect span:nth-child(1){top:42px;left:34%;animation-delay:.1s;}
.sale-bg-effect span:nth-child(2){top:85px;left:70%;animation-delay:.6s;}
.sale-bg-effect span:nth-child(3){top:145px;left:63%;animation-delay:1s;}
.sale-bg-effect span:nth-child(4){top:58px;left:88%;animation-delay:1.4s;}

.count-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.count-box div{
    background:linear-gradient(180deg,#6b0000,#1f0000);
    border:1px solid #ff3b00;
    border-radius:14px;
    height:76px;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:inset 0 0 12px rgba(255,0,0,.6);
}

.count-box strong{
    font-size:34px;
    line-height:1;
}

.count-box span{
    margin-top:6px;
    font-size:14px;
    font-weight:800;
}

.sale-products{
    position:relative;
    z-index:10;
    margin-top:-44px;
    padding:0 24px 22px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.sale-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    min-height:580px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    border:2px solid #ffd5d5;
    transition:.3s ease;
}

.sale-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.8),transparent);
    transform:translateX(-130%);
    animation:cardLight 3.2s infinite;
    z-index:3;
    pointer-events:none;
}

.sale-card:hover{
    transform:translateY(-10px);
}

.sale-card.pink{border-color:#ff7dbb;box-shadow:0 0 20px rgba(255,75,150,.28);}
.sale-card.blue{border-color:#55b9ff;box-shadow:0 0 20px rgba(0,135,255,.22);}
.sale-card.purple{border-color:#b070ff;box-shadow:0 0 20px rgba(146,62,255,.28);}
.sale-card.orange{border-color:#ff9b31;box-shadow:0 0 20px rgba(255,132,0,.26);}
.sale-card.red{border-color:#ff5a5a;box-shadow:0 0 20px rgba(255,0,0,.24);}

.sale-tag{
    position:absolute;
    top:22px;
    left:24px;
    z-index:5;
    background:linear-gradient(180deg,#ff2f00,#e60000);
    color:#fff;
    padding:10px 17px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    box-shadow:0 10px 18px rgba(255,0,0,.35);
    animation:tagBlink .9s infinite alternate;
}

.sale-img{
    position:relative;
    height:250px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px 18px 8px;
}

.sale-img img{
    max-width:100%;
    height:100%;
    object-fit:contain;
    filter:drop-shadow(0 8px 10px rgba(0,0,0,.13));
    transition:.35s;
}

.sale-card:hover img{
    transform:scale(1.08) rotate(-2deg);
}

.discount-badge{
    position:absolute;
    right:18px;
    bottom:18px;
    width:70px;
    height:82px;
    background:linear-gradient(180deg,#ffb300,#ff0000);
    clip-path:polygon(50% 0%,70% 20%,100% 22%,83% 50%,100% 76%,68% 76%,50% 100%,32% 76%,0 76%,17% 50%,0 22%,30% 20%);
    color:#fff;
    font-size:17px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    text-shadow:0 2px 4px rgba(0,0,0,.35);
    animation:discountFire 1s infinite alternate;
}

.purple-badge{
    background:linear-gradient(180deg,#b965ff,#ff006e);
}

.sale-body{
    padding:16px 22px 18px;
}

.sale-body h3{
    font-size:20px;
    font-weight:900;
    color:#111;
}

.sale-body h4{
    font-size:24px;
    color:#07883f;
    font-weight:900;
    margin-bottom:10px;
}

.age{
    display:inline-flex;
    padding:7px 14px;
    border-radius:999px;
    background:#fff8ec;
    border:1px solid #ffd9aa;
    color:#333;
    font-weight:800;
    font-size:14px;
    margin-bottom:12px;
}

.chips{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:16px;
}

.chips span{
    background:#eafff0;
    color:#07883f;
    border:1px solid #c8f1d4;
    padding:7px 11px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
}

.price{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

.price del{
    color:#888;
    font-size:16px;
}

.price strong{
    color:#f00000;
    font-size:28px;
    font-weight:900;
}

.sale-buy{
    height:52px;
    border-radius:13px;
    background:linear-gradient(180deg,#08a046,#07883f);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:900;
    box-shadow:0 7px 0 #045b28;
    position:relative;
    overflow:hidden;
}

.sale-buy::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.5),transparent);
    transform:translateX(-120%);
    animation:btnLight 2s infinite;
}

.sale-bottom-bar{
    margin:0 24px 26px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    align-items:center;
}

.benefit{
    min-height:86px;
    background:linear-gradient(135deg,#f6003c,#c90022);
    color:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:15px 22px;
    box-shadow:0 10px 24px rgba(220,0,30,.24);
}

.benefit i{
    font-size:34px;
}

.benefit strong{
    font-size:16px;
}

@keyframes sparkMove{
    0%,100%{transform:translateY(0) scale(1);opacity:.4;}
    50%{transform:translateY(-18px) scale(1.8);opacity:1;}
}

@keyframes hotShake{
    0%,100%{transform:rotate(0);}
    25%{transform:rotate(-1.5deg);}
    75%{transform:rotate(1.5deg);}
}

@keyframes ticketPulse{
    0%,100%{transform:scale(1) rotate(-1deg);}
    50%{transform:scale(1.06) rotate(1deg);}
}

@keyframes limitedGlow{
    from{box-shadow:0 0 12px rgba(255,217,0,.45);}
    to{box-shadow:0 0 32px rgba(255,217,0,1);}
}

@keyframes countGlow{
    from{box-shadow:0 0 12px #ff9d00;}
    to{box-shadow:0 0 30px #ffd000;}
}

@keyframes cardLight{
    0%{transform:translateX(-130%);}
    45%,100%{transform:translateX(130%);}
}

@keyframes tagBlink{
    from{filter:brightness(1);}
    to{filter:brightness(1.25);}
}

@keyframes discountFire{
    from{transform:scale(1) rotate(-2deg);}
    to{transform:scale(1.12) rotate(3deg);}
}

@keyframes btnLight{
    0%{transform:translateX(-120%);}
    100%{transform:translateX(120%);}
}

@keyframes giftBounce{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}

.sale-products{
    align-items:stretch !important;
}

.sale-card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
}

.sale-body{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
    padding:18px 26px 20px !important;
}

.sale-body h3{
    min-height:24px;
    margin:0 !important;
}

.sale-body h4{
    min-height:58px;
    display:flex;
    align-items:flex-start;
    margin:2px 0 10px !important;
    line-height:1.15 !important;
}

.age{
    width:max-content;
    min-height:36px;
    display:flex !important;
    align-items:center;
    justify-content:center;
    margin-bottom:12px !important;
}

.chips{
    min-height:78px;
    align-content:flex-start;
    margin-bottom:12px !important;
}

.price{
    min-height:66px;
    display:flex !important;
    align-items:flex-end !important;
    gap:10px;
    margin-top:auto !important;
    margin-bottom:16px !important;
}

.price del{
    line-height:1;
    margin-bottom:6px;
}

.price strong{
    line-height:1;
    white-space:nowrap;
}

.sale-buy{
    height:58px !important;
    min-height:58px !important;
    margin-top:0 !important;
}

.sale-img{
    height:250px !important;
    min-height:250px !important;
}

@media(min-width:901px){
    .sale-body h4{
        font-size:22px !important;
    }

    .sale-card{
        min-height:620px !important;
    }
}

.hero-pro{
    width:100%;
    padding:36px 0 22px;
    background:#f3f5f4;
}

.hero-pro{
    width:100%;
    padding:28px 0 18px;
    background:#f3f5f4;
}

.hero-pro-slider{
    width:94%;
    max-width:1680px;
    margin:0 auto;
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(0,0,0,.15);
    background:#fff;
    /* Chiều cao theo ảnh thật */
    line-height:0;
}

.hero-pro-track{
    display:flex;
    transition: transform 0.72s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.hero-pro-slide{
    flex: 0 0 100%;
    width: 100%;
    position:relative;
    overflow:hidden;
}

.hero-pro-slide img{
    width:100%;
    height:auto;
    display:block;
    border-radius:0;
    vertical-align:bottom;
    /* Ken Burns effect */
    transform-origin:center center;
    animation: none;
}

.hero-pro-slide.active img{
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns{
    from{ transform: scale(1);    }
    to  { transform: scale(1.04); }
}

.hero-pro-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    color:#07883f;
    font-size:44px;
    line-height:1;
    font-weight:900;
    cursor:pointer;
    z-index:1060;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
    transition:.22s;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(6px);
}

.hero-pro-btn:hover{
    background:#07883f;
    color:#fff;
    transform:translateY(-50%) scale(1.1);
}

.hero-pro-prev{ left:24px; }
.hero-pro-next{ right:24px; }

.hero-pro-dots{
    position:absolute;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:12;
}

.hero-pro-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.55);
    cursor:pointer;
    transition:.3s;
    border:2px solid rgba(255,255,255,.8);
    box-shadow:0 2px 6px rgba(0,0,0,.18);
}

.hero-pro-dots span.active{
    width:38px;
    border-radius:999px;
    background:#ff7900;
    border-color:#ff7900;
}

.hero-pro-dots button {
  all: unset;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d9e1df;
  cursor: pointer;
  transition: .25s;
  display: inline-block;
}
.hero-pro-dots button.active {
  width: 42px;
  border-radius: 999px;
  background: #ff7900;
}

.cart-trigger {
  position: relative;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 20px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  flex-shrink: 0;
}
.cart-trigger:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff7900;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  transform: scale(0);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.has-items {
  transform: scale(1);
}

.add-cart-btn {
  width: 100%;
  height: 42px;
  margin-top: 8px;
  border: 2px solid #07883f;
  border-radius: 13px;
  background: transparent;
  color: #07883f;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: .22s;
  font-family: inherit;
}
.add-cart-btn:hover {
  background: #07883f;
  color: #fff;
}
.add-cart-btn.added {
  background: #07883f;
  color: #fff;
  border-color: #07883f;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100dvh;
  background: #fff;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #eee;
  background: linear-gradient(135deg,#07883f,#056d31);
  color: #fff;
}
.cart-header h3 {
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}
.cart-close:hover { background: rgba(255,255,255,.35); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  color: #aaa;
  text-align: center;
  gap: 10px;
}
.cart-empty i { font-size: 52px; color: #ddd; }
.cart-empty p { font-size: 18px; font-weight: 800; color: #bbb; }
.cart-empty small { font-size: 14px; }

.cart-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  background: #f9fbfa;
  border: 1px solid #e8f3ec;
  border-radius: 16px;
  padding: 14px 16px;
}
.cart-item-info strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin-bottom: 4px;
}
.cart-item-info span {
  color: #f00;
  font-size: 18px;
  font-weight: 900;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  color: #333;
}
.qty-btn:hover { background: #07883f; color: #fff; border-color: #07883f; }
.qty-num {
  min-width: 28px;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
}
.remove-item {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: #fff0f0;
  color: #f00;
  font-size: 14px;
  cursor: pointer;
  margin-left: 6px;
  transition: .2s;
}
.remove-item:hover { background: #f00; color: #fff; }

.cart-footer {
  padding: 18px 20px 24px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  background: #fff7ec;
  border: 1px solid #ffe0ba;
  border-radius: 14px;
}
.cart-total span { font-size: 16px; font-weight: 700; color: #555; }
.cart-total strong { font-size: 24px; font-weight: 900; color: #f00; }
.cart-checkout {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg,#0068ff,#0051cc);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  border-radius: 15px;
  margin-bottom: 10px;
  box-shadow: 0 6px 0 #003d99;
  transition: .2s;
}
.cart-checkout:hover { transform: translateY(-2px); }
.cart-call {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg,#08a046,#067f39);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  border-radius: 15px;
  box-shadow: 0 5px 0 #04612b;
  transition: .2s;
}
.cart-call:hover { transform: translateY(-2px); }

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-fab {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg,#07883f,#05652d);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7,136,63,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity .35s ease, transform .35s ease;
}
.chat-fab:hover { transform: scale(1.08); }

.chat-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(7,136,63,.45);
  animation: chatPulse 2s infinite;
}
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.chat-panel {
  width: 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  overflow: hidden;
  transform: scale(.85) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transition: .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.chat-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg,#07883f,#056d31);
  color: #fff;
}
.chat-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.chat-panel-header strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}
.chat-panel-header span {
  font-size: 12px;
  color: #d1fde3;
}
.chat-panel-close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-panel-body {
  padding: 18px 16px 20px;
}
.chat-bubble-in {
  background: #f3f5f4;
  border-radius: 6px 18px 18px 18px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 16px;
  border: 1px solid #e8eee9;
}
.chat-quick-btns {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cq-btn {
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  transition: .2s;
}
.cq-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.zalo-btn { background: linear-gradient(135deg,#0068ff,#0050d6); }
.call-btn { background: linear-gradient(135deg,#07883f,#056d31); }
.mess-btn { background: linear-gradient(135deg,#0084ff,#0063c6); }
.view-btn {
  background: linear-gradient(135deg,#ff7900,#e55f00);
  color: #fff;
}

.toast {
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1d1d1d;
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  z-index: 2000;
  opacity: 0;
  transition: .35s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media(max-width:1100px){

  .bottom-grid{
    grid-template-columns:1fr;
  }

  .review-list{
    grid-template-columns:1fr;
  }

  .store-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  

  .footer-row{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:900px){

  .category-row{
    display:flex;
    overflow-x:auto;
    gap:8px;
    padding-bottom:8px;
  }

  .category-row a{
    min-width:150px;
    flex-shrink:0;
  }

  .hot-sale-ui{
    margin:16px 10px;
    border-radius:20px;
  }

  .sale-banner{
    grid-template-columns:1fr;
    min-height:auto;
    padding:20px 16px 68px;
    text-align:center;
    gap:16px;
  }

  

  

  

  

  

  

  

  

  .sale-products{
    grid-template-columns:repeat(2,1fr);
    margin-top:-40px;
    padding:0 12px 16px;
    gap:12px;
  }

  .sale-img{
    height:200px !important;
    min-height:200px !important;
  }

  .sale-body h4{
    min-height:auto;
    font-size:18px !important;
  }

  .chips{
    min-height:auto;
  }

  .price{
    margin-top:12px !important;
  }

  .sale-bottom-bar{
    grid-template-columns:1fr !important;
    margin:0 12px 18px;
  }

}

@media(max-width:768px){

  *{
    -webkit-tap-highlight-color:transparent;
  }

  html,
  body{
    overflow-x:hidden;
  }

  body{
    background:#f5f7f6;
    padding-bottom:calc(72px + env(safe-area-inset-bottom));
  }

  .container{
    width:100%;
    max-width:100%;
    padding-left:12px;
    padding-right:12px;
  }

  
  .site-header{
    padding:10px 0 12px;
    border-radius:0 0 20px 20px;
  }

  .header-row{
    display:grid !important;
    grid-template-columns:1fr auto auto !important;
    grid-template-rows:auto auto !important;
    grid-template-areas:
      "brand hotline cart"
      "search search search" !important;
    gap:10px !important;
    padding:0 12px !important;
    min-height:auto !important;
    flex-wrap:unset !important;
  }

  .header-row .brand{
    grid-area:brand;
    margin:0 !important;
  }

  .header-row .hotline-box{
    grid-area:hotline;
    margin-left:auto !important;
  }

  .header-row .cart-trigger{
    grid-area:cart;
  }

  .header-row .search-box{
    grid-area:search;
    max-width:100% !important;
    min-width:0 !important;
  }

  .header-row .header-trust{
    display:none !important;
  }

  .brand{
    gap:10px;
  }

  .brand-icon{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:16px;
  }

  .brand-icon i{
    font-size:22px;
  }

  .brand strong{
    font-size:22px;
    letter-spacing:-.6px;
  }

  .brand p{
    font-size:11px;
    margin-top:3px;
  }

  .hotline-box{
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.18) !important;
    border-radius:14px;
    padding:7px 10px !important;
    gap:8px !important;
  }

  .hotline-box > i{
    width:34px;
    height:34px;
    min-width:34px;
    font-size:16px;
    border-radius:12px;
  }

  .hotline-box span{
    font-size:10px;
    margin-bottom:1px;
  }

  .hotline-box strong{
    font-size:12px;
    line-height:1.2;
    animation:none;
  }

  .cart-trigger{
    width:44px;
    height:44px;
    border-radius:14px;
    font-size:18px;
  }

  .search-box{
    height:46px;
    border-radius:14px;
  }

  .search-box input{
    font-size:13px;
    padding:0 12px;
  }

  .search-box button{
    width:50px;
    font-size:18px;
  }

  
  .category-bar{
    padding:10px 0 6px;
    background:#f5f7f6;
  }

  .category-row{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding:2px 12px 8px;
    border:0;
    border-radius:0;
    box-shadow:none;
    background:transparent;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .category-row::-webkit-scrollbar{
    display:none;
  }

  .category-row a{
    min-width:96px;
    height:58px;
    flex:0 0 auto;
    border:1px solid #e1eee6;
    border-radius:16px;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
    flex-direction:column;
    gap:4px;
    scroll-snap-align:start;
  }

  .category-row i{
    font-size:18px;
  }

  .category-row span{
    font-size:11px;
    line-height:1.15;
    text-align:center;
  }

  
  .hero-pro{
    padding:10px 0 6px;
  }

  .hero-pro-slider{
    width:100%;
    border-radius:0;
    box-shadow:none;
  }

  .hero-pro-btn{
    width:32px;
    height:32px;
    font-size:26px;
  }

  .hero-pro-prev{
    left:8px;
  }

  .hero-pro-next{
    right:8px;
  }

  .hero-pro-dots{
    bottom:10px;
    gap:7px;
  }

  .hero-pro-dots span{
    width:8px;
    height:8px;
  }

  .hero-pro-dots span.active{
    width:22px;
  }

  
  .hot-sale-ui{
    margin:12px 0;
    border-radius:16px;
  }

  .sale-banner{
    grid-template-columns:1fr;
    padding:16px 14px 60px;
    text-align:center;
    gap:14px;
  }

  

  

  

  

  

  

  

  

  

  

  

  .count-box{
    gap:8px;
  }

  .count-box div{
    height:64px;
    border-radius:12px;
  }

  .count-box strong{
    font-size:28px;
  }

  .count-box span{
    font-size:12px;
    margin-top:4px;
  }

  
  .sale-products{
    grid-template-columns:1fr;
    margin-top:-36px;
    padding:0 10px 14px;
    gap:14px;
  }

  .sale-card{
    display:grid !important;
    grid-template-columns:40% 1fr !important;
    grid-template-rows:auto !important;
    min-height:0 !important;
    height:auto !important;
    border-radius:18px;
    overflow:hidden;
  }

  .sale-tag{
    top:10px;
    left:10px;
    font-size:10px;
    padding:6px 10px;
  }

  .sale-img{
    height:100% !important;
    min-height:180px !important;
    padding:10px 8px !important;
    grid-row:1;
    grid-column:1;
  }

  .sale-img img{
    height:100%;
    object-fit:contain;
  }

  .discount-badge{
    right:8px;
    bottom:8px;
    width:52px;
    height:62px;
    font-size:13px;
  }

  .sale-body{
    grid-row:1;
    grid-column:2;
    padding:12px 12px 14px !important;
    min-height:180px;
  }

  .sale-body h3{
    font-size:12px;
    min-height:auto;
    margin:0 0 2px !important;
    color:#888;
    font-weight:700;
  }

  .sale-body h4{
    font-size:16px !important;
    min-height:auto;
    margin:0 0 8px !important;
    line-height:1.2 !important;
  }

  .age{
    font-size:11px;
    padding:5px 10px;
    margin-bottom:8px !important;
    min-height:auto;
  }

  .chips{
    gap:4px;
    margin-bottom:8px !important;
    min-height:auto;
  }

  .chips span{
    font-size:10px;
    padding:4px 7px;
  }

  .price{
    min-height:auto;
    margin-top:auto !important;
    margin-bottom:8px !important;
    gap:6px;
    align-items:baseline !important;
  }

  .price del{
    font-size:11px;
    margin-bottom:0;
  }

  .price strong{
    font-size:18px;
    white-space:nowrap;
  }

  .sale-buy{
    height:40px !important;
    min-height:40px !important;
    font-size:14px;
    border-radius:11px;
    box-shadow:0 4px 0 #045b28;
  }

  .add-cart-btn{
    height:36px;
    font-size:12px;
    border-radius:11px;
    margin-top:6px;
  }

  

  
  .sale-bottom-bar{
    grid-template-columns:1fr !important;
    margin:0 10px 16px;
    gap:10px;
  }

  .benefit{
    min-height:68px;
    padding:12px 16px;
    border-radius:14px;
    gap:14px;
  }

  .benefit i{
    font-size:26px;
  }

  .benefit strong{
    font-size:14px;
  }

  
  .bottom-grid{
    margin:12px auto;
    gap:12px;
  }

  .card-white{
    border-radius:18px;
    padding:14px 12px;
  }

  .card-white h2{
    font-size:17px;
    margin-bottom:10px;
  }

  .review-list{
    gap:10px;
  }

  .review{
    display:grid;
    grid-template-columns:68px 1fr;
    gap:10px;
    padding:9px;
    border-radius:14px;
  }

  .review img{
    width:68px;
    height:68px;
    border-radius:12px;
    margin-bottom:0;
  }

  .stars{
    font-size:14px;
  }

  .review h4{
    font-size:13px;
  }

  .review p{
    font-size:12px;
    line-height:1.4;
  }

  .faq details{
    margin-bottom:8px;
  }

  .faq summary{
    padding:12px 14px;
    font-size:13px;
  }

  .faq details p{
    font-size:13px;
    padding:0 14px 12px 38px;
  }

  
  .store-info{
    padding:20px 0;
  }

  .store-grid{
    gap:16px;
  }

  .store-info h2{
    font-size:18px;
    margin-bottom:12px;
  }

  .store-item{
    grid-template-columns:42px 1fr;
    gap:12px;
    padding:14px 0;
  }

  .store-item i{
    width:42px;
    height:42px;
    border-radius:13px;
    font-size:18px;
  }

  .store-item h3{
    font-size:15px;
  }

  .store-item p{
    font-size:13px;
  }

  
  .warranty-box{
    padding:18px;
    border-radius:22px;
  }

  .warranty-box p{
    grid-template-columns:40px 1fr;
    row-gap:4px;
    column-gap:12px;
    padding:14px 0;
  }

  .warranty-box i{
    width:36px;
    height:36px;
    font-size:15px;
  }

  .warranty-box strong{
    font-size:24px;
  }

  .warranty-box span{
    grid-column:2;
    font-size:14px;
    margin-top:-2px;
  }

  
  .review-section{
    padding:24px 0;
  }

  .review-section h2{
    font-size:24px;
    line-height:1.3;
    margin-bottom:14px;
  }

  .review-score{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:16px;
    border-radius:18px;
  }

  .review-score strong{
    font-size:34px;
  }

  .review-score span{
    font-size:14px;
  }

  .review-btn{
    width:100%;
    height:48px;
    border-radius:14px;
    font-size:14px;
    margin-bottom:18px;
  }

  .qa-item{
    padding:14px;
    border-radius:18px;
  }

  .qa-name{
    font-size:14px;
  }

  .qa-item > p{
    font-size:14px;
  }

  .qa-answer{
    padding:12px;
    border-radius:14px;
  }

  .qa-answer p{
    font-size:14px;
  }

  
  .lead-form{
    padding:18px 0;
  }

  .lead-box{
    padding:18px;
    border-radius:20px;
  }

  .lead-box h2{
    font-size:20px;
  }

  .lead-box input{
    height:48px;
    font-size:14px;
  }

  .lead-box button{
    height:50px;
    font-size:14px;
  }

  
  .cart-drawer{
    width:100vw;
  }

  .cart-item{
    grid-template-columns:1fr;
    gap:10px;
  }

  .cart-item-qty{
    justify-content:flex-start;
  }

  
  .chat-widget{
    right:12px;
    bottom:82px;
  }

  .chat-fab{
    width:54px;
    height:54px;
    font-size:22px;
  }

  .chat-panel{
    width:calc(100vw - 24px);
    max-width:340px;
  }

  
  .float-buttons{
    left:8px;
    bottom:78px;
    gap:8px;
  }

  .float-buttons a{
    width:44px;
    height:44px;
    border-radius:13px;
  }

  
  .footer-row{
    grid-template-columns:1fr !important;
    text-align:center;
    gap:20px;
    padding:30px 14px 24px;
  }

  .footer-logo img{
    width:130px;
    height:130px;
    margin:auto;
  }

  .footer h3{
    justify-content:center;
    font-size:19px;
  }

  .footer p,
  .footer li{
    font-size:14px;
    line-height:1.65;
  }

  .footer-contact,
  .footer-social{
    padding:18px;
    border-radius:20px;
  }

  .footer-contact a{
    height:50px;
    justify-content:center;
    font-size:15px;
  }

  .footer-contact a i{
    width:34px;
    height:34px;
    font-size:15px;
  }

  .socials{
    justify-content:center;
    gap:10px;
  }

  .socials a{
    width:46px;
    height:46px;
    font-size:20px;
  }

  .ship{
    font-size:16px;
    padding:12px;
  }

  .copy{
    font-size:12px;
    padding:14px 8px;
  }

  
  .sale-card:hover, .review:hover, .footer-contact a:hover, .socials a:hover, .float-buttons a:hover, .chat-fab:hover{
    transform:none !important;
  }

  .sale-card::before, .sale-buy::after, .chat-pulse{
    animation:none !important;
  }

}

@media(max-width:480px){

  .brand strong{
    font-size:20px;
  }

  .brand p{
    font-size:10px;
  }

  .hotline-box{
    padding:6px 8px !important;
  }

  .hotline-box > i{
    display:none;
  }

  .hotline-box strong{
    font-size:11px;
  }

  .sale-card{
    grid-template-columns:38% 1fr !important;
  }

  .sale-img{
    min-height:170px !important;
  }

  .sale-body{
    min-height:170px;
  }

  .sale-body h4{
    font-size:15px !important;
  }

  .price strong{
    font-size:17px;
  }

}

@media(max-width:390px){

  .header-row{
    grid-template-columns:1fr auto !important;
    grid-template-areas:
      "brand cart"
      "hotline hotline"
      "search search" !important;
  }

  .hotline-box{
    width:100%;
    justify-content:center;
  }

  .sale-card{
    grid-template-columns:1fr !important;
  }

  .sale-img{
    min-height:190px !important;
  }

  .sale-body{
    grid-column:1;
    grid-row:2;
  }

}

@supports (padding:max(0px)) {
  @media(max-width:768px){
    body{
      padding-bottom:max(72px, env(safe-area-inset-bottom));
    }
  }
}
.lead-form{
  padding:30px 0;
  background:#f5f7f6;
}

.lead-box{
  background:linear-gradient(135deg,#ffffff,#f3fff7);
  border:1px solid #dff3e6;
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 34px rgba(0,0,0,.08);
  text-align:center;
}

.lead-box h2{
  font-size:26px;
  color:#07883f;
  font-weight:900;
  margin-bottom:6px;
}

.lead-box p{
  color:#555;
  font-weight:700;
  margin-bottom:20px;
}

.lead-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr) 220px;
  gap:12px;
}

.lead-grid input{
  height:52px;
  border:1px solid #d9e8df;
  border-radius:14px;
  padding:0 14px;
  font-size:14px;
  font-weight:600;
  outline:none;
  background:#fff;
}

.lead-grid input:focus{
  border-color:#07883f;
  box-shadow:0 0 0 3px rgba(7,136,63,.12);
}

.lead-grid button{
  height:52px;
  border:0;
  border-radius:14px;
  background:linear-gradient(180deg,#ff8a00,#ff6a00);
  color:#fff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 6px 0 #d95800;
}

.lead-grid button:hover{
  transform:translateY(-2px);
}

@media(max-width:900px){
  .lead-grid{
    grid-template-columns:1fr 1fr;
  }

  .lead-grid button{
    grid-column:1 / -1;
  }
}

@media(max-width:480px){
  .lead-box{
    padding:20px 14px;
    border-radius:18px;
  }

  .lead-box h2{
    font-size:20px;
  }

  .lead-grid{
    grid-template-columns:1fr;
  }

  .lead-grid button{
    grid-column:auto;
  }
}
.sale-buy,
.lead-grid button{
  position:relative;
  z-index:50;
  pointer-events:auto;
}

.sale-card::before,
.sale-buy::after{
  pointer-events:none;
}

.chat-widget{
  pointer-events:none;
}

.chat-widget .chat-fab,
.chat-widget .chat-panel{
  pointer-events:auto;
}
.lead-grid select{
  height:52px;
  border:1px solid #d9e8df;
  border-radius:14px;
  padding:0 14px;
  font-size:14px;
  font-weight:600;
  background:#fff;
  outline:none;
}

.hot-sale-ui{
  background:#fff;
  border-radius:24px;
  border:1px solid #eee;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  overflow:hidden;
}

.sale-banner{
  min-height:170px !important;
  padding:24px 30px 44px !important;
  grid-template-columns:260px 1fr 260px !important;
  background:linear-gradient(135deg,#e60000,#b90000) !important;
}

.count-box div{
  height:62px !important;
}

.count-box strong{
  font-size:28px !important;
}

.sale-products{
  margin-top:-28px !important;
  padding:0 22px 26px !important;
  gap:16px !important;
}

.sale-card{
  min-height:500px !important;
  border:1px solid #eee !important;
  border-radius:18px !important;
  box-shadow:0 8px 24px rgba(0,0,0,.08) !important;
}

.sale-card::before{
  display:none !important;
}

.sale-card:hover{
  transform:translateY(-4px) !important;
}

.sale-tag{
  font-size:11px !important;
  padding:6px 10px !important;
  top:12px !important;
  left:12px !important;
}

.sale-img{
  height:205px !important;
  min-height:205px !important;
  padding:20px 12px 6px !important;
}

.discount-badge{
  width:54px !important;
  height:54px !important;
  border-radius:14px !important;
  clip-path:none !important;
  font-size:13px !important;
  right:14px !important;
  bottom:14px !important;
}

.sale-body{
  padding:14px 18px 18px !important;
}

.sale-body h3{
  font-size:13px !important;
  color:#111 !important;
  min-height:auto !important;
}

.sale-body h4{
  font-size:20px !important;
  min-height:30px !important;
  color:#07883f !important;
}

.age{
  display:none !important;
}

.chips{
  min-height:76px !important;
  gap:8px !important;
}

.chips span{
  width:100%;
  justify-content:flex-start;
  font-size:13px !important;
  padding:8px 12px !important;
  background:#fff !important;
  border:1px solid #e5e5e5 !important;
  color:#333 !important;
}

.price{
  min-height:auto !important;
  margin-top:auto !important;
  margin-bottom:12px !important;
}

.price del{
  font-size:14px !important;
}

.price strong{
  font-size:28px !important;
  color:#e60000 !important;
}

.sale-buy{
  height:48px !important;
  min-height:48px !important;
  font-size:15px !important;
  border-radius:12px !important;
  box-shadow:0 5px 0 #04612b !important;
}

.add-cart-btn{
  display:flex !important;
  align-items:center;
  justify-content:center;
  height:42px !important;
  margin-top:8px !important;
  border-radius:12px !important;
  font-size:14px !important;
}

.sale-bottom-bar{
  grid-template-columns:repeat(3,1fr) !important;
  margin:0 22px 24px !important;
  background:#fff !important;
  border-radius:18px !important;
  border:1px solid #eee !important;
  box-shadow:0 8px 24px rgba(0,0,0,.06) !important;
  padding:14px !important;
}

.sale-bottom-bar .benefit:first-child{
  display:flex;
}

.benefit{
  background:#fff !important;
  color:#111 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  border-right:1px solid #eee !important;
  min-height:70px !important;
}

.benefit:last-child{
  border-right:0 !important;
}

.benefit i{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#e60000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px !important;
}

.benefit strong{
  font-size:15px !important;
  color:#111 !important;
}

@media(max-width:768px){
  .sale-banner{
    grid-template-columns:1fr !important;
    padding:18px 14px 46px !important;
  }

  .sale-products{
    grid-template-columns:1fr !important;
  }

  .sale-card{
    grid-template-columns:40% 1fr !important;
    min-height:auto !important;
  }

  .sale-img{
    height:100% !important;
    min-height:175px !important;
  }

  .chips{
    min-height:auto !important;
  }

  .chips span{
    font-size:11px !important;
    padding:6px 9px !important;
  }

  .sale-bottom-bar{
    grid-template-columns:1fr !important;
  }

  .benefit{
    border-right:0 !important;
    border-bottom:1px solid #eee !important;
  }

  .benefit:last-child{
    border-bottom:0 !important;
  }
}
.clean-sale-banner{
  min-height:150px !important;
  padding:22px 26px !important;
  display:grid !important;
  grid-template-columns:260px 1fr 300px !important;
  gap:24px !important;
  align-items:center !important;
  background:linear-gradient(135deg,#e60000,#b40000) !important;
}

.clean-sale-badge{
  height:100px;
  background:#fff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#e60000;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.clean-sale-badge i{
  font-size:34px;
}

.clean-sale-badge strong{
  font-size:24px;
  line-height:1.15;
  font-weight:900;
}

.clean-sale-content{
  color:#fff;
}

.clean-sale-content h2{
  font-size:34px;
  font-weight:900;
  margin-bottom:14px;
}

.clean-sale-content p{
  font-size:17px;
  color:#ffe75a;
  font-weight:900;
  margin-bottom:22px;
}

.clean-sale-policy{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

.clean-sale-policy span{
  color:#fff;
  font-size:15px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
}

.clean-countdown{
  background:rgba(120,0,0,.35);
  border-radius:20px;
  padding:16px;
}

.clean-countdown p{
  color:#fff;
  font-weight:900;
  text-align:center;
  margin-bottom:10px;
}

.clean-countdown .count-box{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.clean-countdown .count-box div{
  height:70px;
  border-radius:14px;
  background:rgba(130,0,0,.75);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.clean-countdown .count-box strong{
  font-size:34px;
  line-height:1;
}

.clean-countdown .count-box span{
  font-size:13px;
  font-weight:800;
  margin-top:5px;
}

@media(max-width:768px){
  .clean-sale-banner{
    grid-template-columns:1fr !important;
    text-align:center;
    padding:18px 14px !important;
  }

  .clean-sale-policy{
    justify-content:center;
    gap:14px;
  }

  .clean-sale-content h2{
    font-size:24px;
  }

  .clean-sale-badge{
    height:82px;
  }
}

.sale-banner,
.clean-sale-banner{
  overflow:visible !important;
  margin-bottom:40px !important;
}

.sale-products{
  margin-top:0 !important;
  padding-top:0 !important;
}

.clean-sale-content,
.clean-countdown,
.clean-sale-badge{
  position:relative;
  z-index:5;
}

.sale-card{
  position:relative;
  z-index:2;
}

.clean-sale-banner{
  position:relative;
  overflow:hidden !important;
}

.clean-sale-banner::before,
.clean-sale-banner::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(255,200,0,.18) 0%,
    rgba(255,120,0,.10) 35%,
    transparent 70%
  );
  filter:blur(10px);
  animation:saleFloat 8s ease-in-out infinite;
  pointer-events:none;
}

.clean-sale-banner::before{
  top:-220px;
  left:-120px;
}

.clean-sale-banner::after{
  right:-160px;
  bottom:-280px;
  animation-delay:3s;
}

.sale-fire{
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:radial-gradient(circle,#ffe066,#ff9800,#ff3d00);
  box-shadow:
    0 0 12px rgba(255,180,0,.9),
    0 0 24px rgba(255,80,0,.55);
  animation:fireMove linear infinite;
  pointer-events:none;
  z-index:1;
}

.sale-fire:nth-child(1){
  top:18%;
  left:22%;
  animation-duration:7s;
}

.sale-fire:nth-child(2){
  top:62%;
  left:48%;
  width:10px;
  height:10px;
  animation-duration:9s;
}

.sale-fire:nth-child(3){
  top:34%;
  right:16%;
  width:18px;
  height:18px;
  animation-duration:11s;
}

.sale-fire:nth-child(4){
  bottom:12%;
  left:70%;
  width:12px;
  height:12px;
  animation-duration:8s;
}

.sale-fire:nth-child(5){
  top:72%;
  right:34%;
  width:8px;
  height:8px;
  animation-duration:6s;
}

@keyframes fireMove{
  0%{
    transform:translateY(0) scale(1);
    opacity:.2;
  }

  50%{
    transform:translateY(-18px) scale(1.25);
    opacity:1;
  }

  100%{
    transform:translateY(0) scale(1);
    opacity:.2;
  }
}

@keyframes saleFloat{
  0%{
    transform:translateY(0) translateX(0);
  }

  50%{
    transform:translateY(-18px) translateX(12px);
  }

  100%{
    transform:translateY(0) translateX(0);
  }
}

.sale-bottom-bar{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:0 !important;

  background:#fff;
  border-radius:22px;
  border:1px solid #ececec;
  overflow:hidden;

  margin:28px 22px 30px;
  padding:0 !important;

  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.benefit{
  min-height:132px;

  display:flex !important;
  align-items:center;
  gap:18px;

  padding:26px 30px !important;

  background:#fff !important;
  border-right:1px solid #efefef;

  position:relative;
}

.benefit:last-child{
  border-right:0;
}

.benefit i{
  width:64px;
  height:64px;

  min-width:64px;

  border-radius:50%;
  background:#f10000;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:28px;

  box-shadow:0 8px 18px rgba(241,0,0,.22);
}

.benefit-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.benefit strong{
  font-size:18px !important;
  line-height:1.2;
  margin-bottom:6px;
  color:#111;
}

.benefit span,
.benefit p{
  font-size:15px;
  color:#666;
  line-height:1.45;
}

@media(max-width:768px){

  .sale-bottom-bar{
    grid-template-columns:1fr !important;
    margin:18px 14px 24px !important;
  }

  .benefit{
    min-height:auto;
    padding:18px !important;
    border-right:0;
    border-bottom:1px solid #efefef;
  }

  .benefit:last-child{
    border-bottom:0;
  }

  .benefit i{
    width:52px;
    height:52px;
    min-width:52px;
    font-size:22px;
  }

  .benefit strong{
    font-size:16px !important;
  }

  .benefit span,
  .benefit p{
    font-size:14px;
  }
}

/* =====================================================
   MOBILE UI OPTIMIZE — GIỮ NGUYÊN NỘI DUNG, CHỈ TỐI ƯU GIAO DIỆN
   ===================================================== */
@media(max-width:768px){
  body{
    background:#f5f7f6;
    padding-bottom:calc(76px + env(safe-area-inset-bottom));
  }

  .container{
    max-width:100%;
    padding-left:10px;
    padding-right:10px;
  }

  /* Header gọn hơn, không bị bí trên màn nhỏ */
  .site-header{
    padding:8px 0 10px !important;
    border-radius:0 0 18px 18px;
  }

  .header-row{
    grid-template-columns:1fr auto auto !important;
    gap:8px !important;
    padding:0 10px !important;
  }

  .brand{gap:8px !important; min-width:0;}
  .brand-icon{
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    border-radius:14px !important;
  }
  .brand-icon i{font-size:21px !important;}
  .brand strong{font-size:20px !important; line-height:.95 !important;}
  .brand p{font-size:10px !important; margin-top:3px !important; white-space:nowrap;}

  .hotline-box{
    padding:6px 8px !important;
    gap:6px !important;
    border-radius:13px !important;
  }
  .hotline-box > i{
    width:30px !important;
    height:30px !important;
    min-width:30px !important;
    font-size:14px !important;
  }
  .hotline-box span{font-size:9px !important;}
  .hotline-box strong{font-size:11px !important; line-height:1.18 !important;}

  .cart-trigger{
    width:42px !important;
    height:42px !important;
    border-radius:13px !important;
    font-size:17px !important;
  }

  .search-box{
    height:44px !important;
    border-radius:13px !important;
  }
  .search-box input{
    font-size:13px !important;
    padding:0 12px !important;
  }
  .search-box button{
    width:48px !important;
    font-size:17px !important;
  }

  /* Danh mục ngang mượt, tiết kiệm chiều cao */
  .category-bar{padding:8px 0 4px !important;}
  .category-row{
    gap:7px !important;
    padding:2px 10px 8px !important;
  }
  .category-row a{
    min-width:88px !important;
    height:54px !important;
    border-radius:14px !important;
  }
  .category-row i{font-size:17px !important;}
  .category-row span{font-size:10.5px !important;}

  /* Hero banner gọn hơn */
  .hero-pro{padding:8px 0 4px !important;}
  .hero-pro-slider{
    width:calc(100% - 20px) !important;
    border-radius:18px !important;
    box-shadow:0 10px 26px rgba(0,0,0,.12) !important;
  }
  .hero-pro-btn{
    width:34px !important;
    height:34px !important;
    font-size:28px !important;
  }
  .hero-pro-prev{left:8px !important;}
  .hero-pro-next{right:8px !important;}
  .hero-pro-dots{bottom:8px !important; gap:6px !important;}
  .hero-pro-dots span{
    width:8px !important;
    height:8px !important;
  }
  .hero-pro-dots span.active{width:26px !important;}

  /* Khối sale gọn, ít khoảng trống */
  .hot-sale-ui{
    margin:12px 10px 16px !important;
    border-radius:20px !important;
    box-shadow:0 12px 30px rgba(0,0,0,.10) !important;
  }
  .sale-banner,
  .clean-sale-banner{
    margin-bottom:16px !important;
    padding:16px 12px !important;
    border-radius:0 !important;
    gap:12px !important;
  }
  .clean-sale-badge{
    height:auto !important;
    min-height:66px !important;
    border-radius:16px !important;
    padding:10px 12px !important;
    gap:10px !important;
  }
  .clean-sale-badge i{font-size:26px !important;}
  .clean-sale-badge strong{font-size:19px !important;}
  .clean-sale-content h2{
    font-size:22px !important;
    margin-bottom:8px !important;
  }
  .clean-sale-content p{
    font-size:14px !important;
    margin-bottom:12px !important;
  }
  .clean-sale-policy{
    gap:8px !important;
  }
  .clean-sale-policy span{
    font-size:12px !important;
    background:rgba(255,255,255,.12);
    border-radius:999px;
    padding:7px 10px;
  }
  .clean-countdown{
    padding:12px !important;
    border-radius:16px !important;
  }
  .count-box div,
  .clean-countdown .count-box div{
    height:58px !important;
    border-radius:12px !important;
  }
  .count-box strong,
  .clean-countdown .count-box strong{font-size:25px !important;}
  .count-box span,
  .clean-countdown .count-box span{font-size:11px !important;}

  /* Card sản phẩm mobile: ảnh + nội dung cân đối */
  .sale-products{
    grid-template-columns:1fr !important;
    gap:12px !important;
    padding:0 10px 14px !important;
    margin-top:0 !important;
  }
  .sale-card{
    grid-template-columns:38% 1fr !important;
    border-radius:17px !important;
    min-height:0 !important;
    box-shadow:0 8px 22px rgba(0,0,0,.10) !important;
  }
  .sale-img{
    min-height:168px !important;
    height:100% !important;
    padding:12px 6px !important;
  }
  .discount-badge{
    width:52px !important;
    height:62px !important;
    right:8px !important;
    bottom:10px !important;
    font-size:12px !important;
  }
  .sale-tag{
    top:8px !important;
    left:8px !important;
    font-size:10px !important;
    padding:5px 9px !important;
  }
  .sale-body{
    padding:13px 12px 13px !important;
    min-height:auto !important;
  }
  .sale-body h3{font-size:14px !important; min-height:0 !important;}
  .sale-body h4{
    font-size:17px !important;
    min-height:0 !important;
    margin:2px 0 7px !important;
  }
  .age{
    font-size:11.5px !important;
    min-height:30px !important;
    padding:5px 9px !important;
    margin-bottom:8px !important;
  }
  .chips{
    gap:5px !important;
    min-height:0 !important;
    margin-bottom:8px !important;
  }
  .chips span{
    font-size:11px !important;
    padding:5px 7px !important;
  }
  .price{
    min-height:0 !important;
    margin-top:auto !important;
    margin-bottom:9px !important;
    gap:6px !important;
  }
  .price del{font-size:12px !important; margin-bottom:3px !important;}
  .price strong{font-size:20px !important;}
  .sale-buy{
    height:42px !important;
    min-height:42px !important;
    border-radius:12px !important;
    font-size:13.5px !important;
    box-shadow:0 4px 0 #045b28 !important;
  }
  .add-cart-btn{
    height:38px !important;
    margin-top:7px !important;
    border-radius:12px !important;
    font-size:12.5px !important;
  }

  /* Thanh lợi ích gọn như thẻ thông tin */
  .sale-bottom-bar{
    margin:14px 10px 18px !important;
    border-radius:18px !important;
  }
  .benefit{
    padding:14px !important;
    gap:12px !important;
  }
  .benefit i{
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    font-size:19px !important;
  }
  .benefit strong{font-size:14px !important; margin-bottom:3px !important;}
  .benefit span{font-size:12.5px !important;}

  /* Form tư vấn rõ ràng hơn */
  .lead-form{padding:14px 0 18px !important;}
  .lead-box{
    padding:17px 13px !important;
    border-radius:18px !important;
  }
  .lead-box h2{font-size:18px !important; line-height:1.3 !important;}
  .lead-box p{font-size:13px !important; margin-bottom:14px !important;}
  .lead-grid{grid-template-columns:1fr !important; gap:9px !important;}
  .lead-grid input,
  .lead-grid select{
    height:46px !important;
    border-radius:12px !important;
    font-size:13.5px !important;
  }
  .lead-grid button{
    height:48px !important;
    border-radius:12px !important;
    font-size:13.5px !important;
  }

  /* Review, FAQ, cửa hàng bớt dài và thoáng */
  .bottom-grid{margin:16px auto !important; gap:14px !important;}
  .card-white{padding:16px !important; border-radius:18px !important;}
  .card-white h2{font-size:19px !important; margin-bottom:14px !important;}
  .review-list{gap:12px !important;}
  .review{padding:12px !important; border-radius:16px !important;}
  .review img{height:170px !important; border-radius:13px !important;}
  .faq summary{font-size:14px !important; padding:13px !important;}
  .faq details p{font-size:13px !important; padding:0 13px 13px 36px !important;}

  .store-info{padding:24px 0 !important; margin-top:8px !important;}
  .store-info h2{font-size:21px !important; margin-bottom:14px !important;}
  .store-item{
    grid-template-columns:42px 1fr !important;
    gap:12px !important;
    padding:14px 0 !important;
  }
  .store-item i{
    width:42px !important;
    height:42px !important;
    border-radius:13px !important;
    font-size:18px !important;
  }
  .store-item h3{font-size:15px !important;}
  .store-item p{font-size:13px !important;}
  .warranty-box{padding:16px !important; border-radius:18px !important;}
  .warranty-box strong{font-size:21px !important;}

  /* Nút nổi: tránh che nội dung và không chồng nhau */
  .float-buttons{
    left:8px !important;
    bottom:82px !important;
    gap:7px !important;
  }
  .float-buttons a{
    width:42px !important;
    height:42px !important;
    border-radius:13px !important;
    font-size:17px !important;
  }
  .chat-widget{
    right:10px !important;
    bottom:82px !important;
  }
  .chat-fab{
    width:52px !important;
    height:52px !important;
    font-size:21px !important;
  }
  .back-top{
    width:40px !important;
    height:40px !important;
    right:10px !important;
    bottom:148px !important;
    font-size:18px !important;
  }
  .mobile-cta{
    height:62px !important;
    padding:7px 8px calc(7px + env(safe-area-inset-bottom)) !important;
    gap:8px !important;
  }
  .mobile-cta a{
    height:46px !important;
    border-radius:13px !important;
    font-size:13px !important;
  }

  .cart-drawer{width:100vw !important;}
  .cart-header{padding:16px !important;}
  .cart-header h3{font-size:18px !important;}
}

@media(max-width:390px){
  .brand strong{font-size:19px !important;}
  .brand p{font-size:9.5px !important;}
  .hotline-box{justify-content:center !important;}

  .sale-card{
    grid-template-columns:1fr !important;
  }
  .sale-img{
    min-height:185px !important;
  }
  .sale-body{
    grid-column:1 !important;
    grid-row:2 !important;
  }
  .price strong{font-size:22px !important;}
}


/* ORDER FORM MODAL */
.order-modal{
  position:fixed;
  inset:0;
  z-index:1200;
  background:rgba(0,0,0,.52);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  backdrop-filter:blur(3px);
}
.order-modal.open{
  opacity:1;
  visibility:visible;
}
.order-modal-box{
  width:100%;
  max-width:460px;
  background:#fff;
  border-radius:24px;
  padding:24px;
  position:relative;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
  transform:translateY(18px) scale(.98);
  transition:.25s ease;
}
.order-modal.open .order-modal-box{
  transform:translateY(0) scale(1);
}
.order-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:12px;
  background:#f1f3f2;
  color:#333;
  cursor:pointer;
  font-size:18px;
}
.order-modal-box h3{
  padding-right:40px;
  font-size:24px;
  font-weight:900;
  color:var(--green);
  margin-bottom:8px;
  display:flex;
  align-items:center;
  gap:10px;
}
.order-modal-box p{
  color:#5f6b66;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
  line-height:1.5;
}
.order-form{
  display:grid;
  gap:12px;
}
.order-form input,
.order-form select,
.order-form textarea{
  width:100%;
  border:1px solid #dfe8e2;
  background:#f8faf9;
  border-radius:14px;
  padding:14px 15px;
  font-size:15px;
  font-weight:600;
  outline:none;
  resize:none;
  font-family:inherit;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus{
  border-color:var(--green);
  background:#fff;
  box-shadow:0 0 0 4px rgba(7,136,63,.09);
}

.order-form select{
  appearance:none;
  cursor:pointer;
  background-image:linear-gradient(45deg, transparent 50%, #07883f 50%),linear-gradient(135deg, #07883f 50%, transparent 50%);
  background-position:calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.order-form-hint{
  background:#edf8f0;
  border:1px solid #d7efdf;
  border-radius:16px;
  padding:14px 16px;
  color:#07883f;
  font-size:16px;
  font-weight:800;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
  width:100%;
}
.order-submit:disabled{
  opacity:.75;
  cursor:not-allowed;
  box-shadow:none;
}

.order-submit{
  height:54px;
  border:0;
  border-radius:15px;
  background:linear-gradient(180deg,#0068ff,#0051cc);
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 6px 0 #003d99;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

@media(max-width:768px){
  .order-modal{
    align-items:flex-end;
    padding:10px;
  }
  .order-modal-box{
    max-width:100%;
    border-radius:22px 22px 16px 16px;
    padding:20px 16px 16px;
  }
  .order-modal-box h3{
    font-size:21px;
  }
  .order-form input,
  .order-form select,
  .order-form textarea{
    font-size:14px;
    padding:13px 14px;
  }
  
.order-form select{
  appearance:none;
  cursor:pointer;
  background-image:linear-gradient(45deg, transparent 50%, #07883f 50%),linear-gradient(135deg, #07883f 50%, transparent 50%);
  background-position:calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.order-form-hint{
  display:block;
  color:#07883f;
  background:#f0fff5;
  border:1px solid #d8f2e1;
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  font-weight:800;
  line-height:1.45;
}
.order-submit:disabled{
  opacity:.75;
  cursor:not-allowed;
  box-shadow:none;
}

.order-submit{
    height:52px;
    font-size:15px;
  }
}
.success-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.success-card{
  width:100%;
  max-width:360px;
  background:#fff;
  border-radius:26px;
  padding:34px 24px;
  text-align:center;
  animation:popIn .28s ease;
  box-shadow:0 20px 60px rgba(0,0,0,.22);
}

.success-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  margin:auto;
  background:#eafff0;
  color:#07883f;
  font-size:42px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.success-card h3{
  font-size:28px;
  margin-bottom:10px;
  color:#111;
}

.success-card p{
  font-size:16px;
  line-height:1.6;
  color:#555;
  margin-bottom:22px;
}

.success-card button{
  height:50px;
  width:100%;
  border:0;
  border-radius:14px;
  background:#07883f;
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}

@keyframes popIn{
  from{
    opacity:0;
    transform:scale(.85);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}