/* ==========================================================================
   FOOTER｜頁尾
   手機版：紅底，置中顯示 版權 / 客服電話 / 服務時間
   桌機版：紅底單列，左側 Logo + 合作品牌 + 版權，右側 客服電話 + 服務時間
   ========================================================================== */

.footer {
  background: var(--brand-red);
  padding: 7px 20px;
  text-align: center;
  color: #fff;
}

.foot-left{
  display: flex;
  flex-direction: column;
}

.foot-left .top {
  display: none;
}

.foot-left p,
.foot-right p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.6;
}

.foot-right p:last-child {
  margin-bottom: 0;
}

/* 空間不夠（<1024px）一律用手機版樣式；夠寬才切成桌機單列，不再用 orientation 硬湊 */
@media (min-width: 1024px) {
  .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    text-align: left;
  }

  .foot-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .foot-left .top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .foot-left .top img {
    height: 20px;
  }

  .foot-left p,
  .foot-right p {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
  }

  .foot-right p {
    margin-bottom: 6px;
  }

  .foot-right {
    text-align: right;
  }
}
