footer.tb-footer{
  background: #f8f8f8;
  color: #d63333;
  border-top: 1px solid #eaeaea;
  padding: 28px 20px;
  margin-top: 40px;
}
footer.tb-footer a{
  color:#333;
  text-decoration:none;
}
footer.tb-footer a:hover{
  text-decoration:underline;
}

.tb-footer .tbf-title{
  font-size:14px;
  letter-spacing:.06em;
  color:#222;
  margin:0 0 12px;
  font-weight:700;
}
.tb-footer .tbf-text{
  margin:0;
  color:#333;
  line-height:1.6;
}

.tb-footer .tbf-list{
  list-style:none;
  margin:0;
  padding:0;
}
.tb-footer .tbf-list li{
  list-style:none;
  margin:6px 0;
  color:#333;
  line-height:1.6;
}
.tb-footer .tbf-list li::marker{
  content:'';
}

/* 社群按鈕 */
.tb-footer .tbf-social{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}
.tb-footer .tbf-s{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.tb-footer .tbf-s-fb{
  background:#1877f2
}
.tb-footer .tbf-s-line{
  background:#06c755
}
.tb-footer .tbf-s-yt{
  background:#ff0000
}

/* 公司資訊 */
.tb-footer .tbf-company{
  color:#333;
  font-size:14px;
  line-height:1.6;
  margin-top:6px;
;}

/* 付款 Logo 列（置左、上方加細線） */
.tb-footer .tbf-payments{
  display:flex;
  gap:20px;
  align-items:center;
  margin-top:20px;
  padding-top:12px;
  border-top:1px solid #eaeaea;
  flex-wrap:wrap;
}
.tb-footer .tbf-payments img{
  height:30px;
  display:block;
  opacity:.98;
}

/* 4欄網格 */
.tb-footer .tbf-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

@media (max-width:992px) {
  .tb-footer .tbf-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:576px) {
  .tb-footer .tbf-grid {
    grid-template-columns:1fr;
  }
}