/* ============================================================
   紐軒國際（NEW SHINE）— 手機購物 APP 全域樣式
   風格：Shopee 購物風格（橘色主題）
   ============================================================ */

:root {
  --primary: #ee4d2d;
  --primary-dark: #c73a1e;
  --primary-light: #ff6b4a;
  --secondary: #00bfa5;
  --accent: #ffd34d;
  --bg: #f5f5f5;
  --bg-card: #ffffff;
  --text: #222222;
  --text-light: #888888;
  --border: #e8e8e8;
  --danger: #ee4d2d;
  --success: #00bfa5;
  --warning: #ff9f00;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --header-height: 52px;
  --tabbar-height: 58px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: calc(var(--tabbar-height) + env(safe-area-inset-bottom));
}

/* ===== 通用 ===== */
a {
  color: var(--primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hidden {
  display: none !important;
}

/* ===== 頂部導覽列 ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--primary);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.header-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-btn {
  color: #fff;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
}

.header-btn .badge {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.header-btn-wrapper {
  position: relative;
}

/* ===== 搜尋列 ===== */
.search-bar {
  padding: calc(var(--header-height) + 10px) 12px 8px;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  padding: 0 14px;
  height: 40px;
  box-shadow: var(--shadow-sm);
}

.search-input-wrapper .search-icon {
  color: var(--text-light);
  margin-right: 8px;
  font-size: 1.1rem;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 0.95rem;
  color: var(--text);
}

.search-input-wrapper input::placeholder {
  color: #bbb;
}

/* ===== 分類橫幅 ===== */
.category-strip {
  display: flex;
  gap: 8px;
  padding: 4px 12px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font-size: 0.85rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.category-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== 商品區塊 ===== */
.section-title {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 14px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 8px 8px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.product-card:active {
  transform: scale(0.96);
}

.product-card .product-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ddd;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 8px 10px 10px;
}

.product-name {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
  height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.product-price .currency {
  font-size: 0.7rem;
  margin-right: 2px;
}

.product-sold {
  font-size: 0.7rem;
  color: var(--text-light);
}

.product-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

/* ===== 商品詳情頁 ===== */
.product-detail-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #ddd;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-body {
  background: #fff;
  padding: 14px;
}

.product-detail-name {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-detail-price .currency {
  font-size: 0.9rem;
}

.product-model-select {
  margin-top: 10px;
}

.product-model-select label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 6px;
  display: block;
}

.product-model-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-chip {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fafafa;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.model-chip input {
  display: none;
}

.model-chip.selected {
  border-color: var(--primary);
  background: rgba(238, 77, 45, 0.08);
  color: var(--primary);
  font-weight: 600;
}

.product-detail-desc {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 8px solid var(--bg);
}

.product-detail-desc h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-detail-desc p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
  white-space: pre-line;
}

/* ===== 底部固定操作列 ===== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.btn {
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 16px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-block {
  width: 100%;
  flex: 1;
}

.btn-lg {
  padding: 14px 20px;
  font-size: 1.05rem;
}

/* ===== 蝦皮購買按鈕 ===== */
.btn-shopee {
  background: #ee4d2d;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(238, 77, 45, 0.35);
}

.btn-shopee:hover {
  background: #d73211;
}

.btn-shopee:active {
  background: #d73211;
}

.btn-shopee:disabled {
  background: #f0a08e;
}

/* ===== 語系切換按鈕 ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 38px;
  text-align: center;
}

.lang-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.lang-btn:active {
  transform: scale(0.95);
}

/* ===== 購物車圖示 ===== */
.cart-icon-btn {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ===== 購物車頁 ===== */
.cart-page {
  padding-top: var(--header-height);
}

.cart-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.cart-item .cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ddd;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-model {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-control button {
  width: 30px;
  height: 28px;
  border: none;
  background: #fafafa;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-control button:active {
  background: #eee;
}

.qty-control .qty-value {
  width: 36px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-light);
  background: none;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 4px;
  padding: 2px;
}

/* ===== 購物車結算 ===== */
.cart-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.cart-total-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cart-total-price {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  flex: 1;
}

/* ===== 訂單頁 / 結帳頁 ===== */
.checkout-page,
.orders-page,
.cart-page {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.form-section {
  background: #fff;
  margin: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.form-section-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.form-group input.error,
.form-group select.error {
  border-color: var(--danger);
}

.error-text {
  color: var(--danger);
  font-size: 0.75rem;
  margin-top: 2px;
  display: none;
}

.error-text.show {
  display: block;
}

/* 付款方式選項 */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.payment-option.selected {
  border-color: var(--primary);
  background: rgba(238, 77, 45, 0.05);
}

.payment-option .payment-icon {
  font-size: 1.3rem;
}

.payment-option .payment-label {
  flex: 1;
  font-size: 0.9rem;
}

.payment-option .payment-desc {
  font-size: 0.75rem;
  color: var(--text-light);
}

.payment-option input {
  accent-color: var(--primary);
}

/* 運送方式選項 */
.shipping-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shipping-option {
  flex: 1;
  min-width: 80px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.shipping-option.selected {
  border-color: var(--primary);
  background: rgba(238, 77, 45, 0.05);
  color: var(--primary);
  font-weight: 600;
}

/* 訂單商品明細 */
.order-items-review {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-item-review {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.order-item-review:last-child {
  border-bottom: none;
}

.order-item-review .item-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}

.order-item-review .item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-review .item-detail {
  flex: 1;
  min-width: 0;
}

.order-item-review .item-name {
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-item-review .item-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

.order-item-review .item-subtotal {
  font-size: 0.9rem;
  font-weight: 600;
}

/* 金額總結 */
.price-summary {
  background: #fff;
  margin: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #555;
}

.price-row.total {
  border-top: 1px dashed var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.price-row.total .amount {
  color: var(--primary);
  font-size: 1.3rem;
}

/* ===== 訂單查詢頁 ===== */
.orders-search {
  padding: calc(var(--header-height) + 10px) 12px 8px;
}

.orders-list {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.order-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.order-status {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 12px;
  background: #eee;
  color: #666;
  font-weight: 600;
}

.order-status.pending { background: #fff3e0; color: #e65100; }
.order-status.confirmed { background: #e3f2fd; color: #1565c0; }
.order-status.shipped { background: #e8f5e9; color: #2e7d32; }
.order-status.completed { background: #e0f2f1; color: #00796b; }
.order-status.cancelled { background: #fce4ec; color: #c62828; }

.order-card-items {
  margin-bottom: 8px;
}

.order-card-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #666;
  padding: 2px 0;
}

.order-card-item .item-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 8px;
}

.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.order-card-total {
  font-weight: 700;
  color: var(--primary);
}

.order-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== 狀態列 ===== */
.status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.status-bar.loading {
  color: var(--text-light);
}

.status-bar.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-bar.error {
  background: #fce4ec;
  color: #c62828;
}

/* ===== Toast 通知 ===== */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90%;
  max-width: 400px;
  pointer-events: none;
}

.toast {
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
  animation: toastIn 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.toast.success {
  background: rgba(0, 191, 165, 0.9);
}

.toast.error {
  background: rgba(238, 77, 45, 0.9);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.toast.fade-out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(-10px); }
}

/* ===== 底部標籤列 ===== */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--tabbar-height) + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 6px;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-light);
  font-size: 0.65rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
}

.tab-item .tab-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.tab-item.active {
  color: var(--primary);
}

.tab-item .tab-badge {
  position: absolute;
  top: -2px;
  right: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.tab-item-wrapper {
  position: relative;
  flex: 1;
}

/* ===== 載入中動畫 ===== */
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== 空狀態 ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

.empty-state p {
  font-size: 0.95rem;
}

/* ===== 訂單成功頁 ===== */
.order-success {
  text-align: center;
  padding: 60px 20px;
}

.order-success .success-icon {
  font-size: 5rem;
  margin-bottom: 16px;
  color: var(--success);
}

.order-success h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.order-success p {
  color: var(--text-light);
  margin-bottom: 4px;
}

.order-success .order-number-display {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
  word-break: break-all;
}

/* ===== 桌面版調整 ===== */
@media (min-width: 768px) {
  body {
    max-width: 480px;
    margin: 0 auto;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .header {
    max-width: 480px;
    margin: 0 auto;
  }

  .tab-bar,
  .bottom-bar,
  .cart-summary {
    max-width: 480px;
    margin: 0 auto;
  }

  .bottom-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 480px;
  }

  .lang-switcher {
    border-color: rgba(238, 77, 45, 0.25);
    background: rgba(238, 77, 45, 0.06);
  }

  .lang-btn {
    color: var(--text-light);
  }

  .lang-btn.active {
    background: var(--primary);
    color: #fff;
  }
}
