/* GOBEAR 全站壳（页头/页脚）—— 1:1 复刻 printcase.lv/en 版式，主色映射为品牌橙。
   由主题 header.php/footer.php 输出，全站共用。本文件只允许 pc-* 组件选择器和
   :root 变量 + @font-face，禁止 * / body / a 级全局规则（会打乱内容页排版）。 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-var.woff2') format('woff2');
}

:root{
  --ink:#0f172a; --ink-2:#475569; --line:#e2e8f0;
  --brand:#d5521f; --brand-dark:#aa4219; --brand-soft:#fbe9e0;
  --brand-100:#f6d9cb; --brand-200:#f0bfab;
  --page-bg:#f8f9fa;
  --font:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* ---------- 页头：悬浮胶囊（复刻 printcase 深蓝胶囊 → 橙） ---------- */
.pc-header{
  position:sticky; top:0; z-index:50;
  width:100%; margin:0 auto;
  background:rgba(213,82,31,.88);
  -webkit-backdrop-filter:blur(24px); backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(255,255,255,.12);
  box-shadow:0 3px 8px rgba(126,44,10,.45), 0 2px 4px rgba(255,255,255,.1) inset;
  font-family:var(--font);
}
.pc-header-bar{
  display:flex; align-items:center; gap:12px;
  height:64px; padding:0 16px;
}
.pc-header a{color:inherit;text-decoration:none}
.pc-logo{display:flex;align-items:center;gap:9px;color:#fff;font-weight:800;font-size:17px;letter-spacing:.01em;flex-shrink:0}
.pc-logo img{height:30px;width:auto;border-radius:7px}

.pc-nav{display:none;align-items:center;gap:10px}
.pc-nav a{
  color:#fff;font-size:12px;font-weight:500;letter-spacing:.04em;white-space:nowrap;
  padding:2px 4px 4px;border-bottom:2px solid transparent;transition:color .2s,border-color .2s;
}
.pc-nav a:hover{color:#ffd9c4;border-color:rgba(255,255,255,.55)}

.pc-header-right{display:flex;align-items:center;gap:10px;margin-left:auto}
.pc-signin{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:44px;min-height:44px;border-radius:999px;color:#fff;transition:background .2s;
}
.pc-signin svg{width:22px;height:22px}
.pc-signin:hover{background:rgba(255,255,255,.12)}
.pc-order-btn{
  display:inline-flex;align-items:center;gap:5px;min-height:40px;
  padding:8px 14px;border-radius:999px;
  background:linear-gradient(to bottom,#ffffff,#f3f4f6);
  color:var(--brand-dark);font-size:13px;font-weight:800;white-space:nowrap;
  box-shadow:0 4px 10px rgba(126,44,10,.28);transition:all .2s;
}
.pc-order-btn svg{width:12px;height:12px}
.pc-order-btn:hover{background:linear-gradient(to bottom,#fff7f2,#fff);box-shadow:0 6px 14px rgba(126,44,10,.34)}
.pc-lang{
  display:inline-flex;align-items:center;justify-content:center;gap:4px;
  min-width:50px;padding:8px 10px;border-radius:8px;
  background:#fff;color:#7c2d12;font-size:13px;font-weight:600;
}
.pc-lang svg{width:15px;height:15px}

.pc-burger{
  display:flex;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;margin-left:2px;padding:10px;
  border:0;background:none;cursor:pointer;flex-shrink:0;
}
.pc-burger span{display:block;width:100%;height:2px;border-radius:2px;background:#fff;transition:.2s}
.pc-header.menu-open .pc-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.pc-header.menu-open .pc-burger span:nth-child(2){opacity:0}
.pc-header.menu-open .pc-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* 移动端行只留 logo + Order + 汉堡（与原站一致），登录/语言放不下会撑出横向滚动 */
@media (max-width:767.98px){
  .pc-signin,.pc-lang{display:none}
}

/* 移动端下拉菜单 */
.pc-header.menu-open .pc-nav{
  display:flex;flex-direction:column;align-items:stretch;gap:0;
  position:absolute;top:100%;left:0;right:0;
  background:#b23f13;border-bottom:1px solid rgba(255,255,255,.15);
  padding:8px 20px 16px;box-shadow:0 24px 48px rgba(15,23,42,.28);
}
.pc-header.menu-open .pc-nav a{padding:13px 2px;font-size:15px;border-top:1px solid rgba(255,255,255,.12);border-bottom:0}
.pc-header.menu-open .pc-nav a:first-child{border-top:0}

@media (min-width:768px){
  .pc-header{
    top:24px;width:min(72rem,calc(100vw - 1.5rem));margin:24px auto 0;
    border:1px solid rgba(255,255,255,.12);border-radius:999px;
  }
  .pc-header.menu-open .pc-nav{border-radius:24px}
  .pc-header-bar{padding:0 20px;gap:16px}
  .pc-logo{min-width:120px}
  .pc-order-btn{padding:9px 15px}
}
@media (min-width:1024px){
  .pc-nav{display:flex}
  .pc-nav a{font-size:13px}
  .pc-burger{display:none}
  .pc-header-bar{padding:0 22px}
}
@media (min-width:1280px){
  .pc-header-bar{padding:0 24px}
  .pc-nav{gap:12px}
  .pc-nav a{font-size:14px}
  .pc-logo{min-width:140px}
  .pc-logo img{height:34px}
}

/* ---------- 页脚：深色 slate-950（复刻 printcase 页脚结构） ---------- */
.pc-footer{background:#020617;color:#94a3b8;font-family:var(--font);font-size:14px}
.pc-footer a{color:inherit;text-decoration:none}
.pc-footer-in{max-width:80rem;margin:0 auto;padding:24px 16px 40px}
@media (min-width:640px){.pc-footer-in{padding:32px 24px 40px}}
@media (min-width:1024px){.pc-footer-in{padding:32px 32px 40px}}

.pc-footer-top{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:20px}
.pc-footer .pc-logo{color:#fff}
.pc-footer .pc-logo img{height:32px}
.pc-footer-social{display:flex;align-items:center}
.pc-footer-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:999px;color:#94a3b8;transition:color .2s;
}
.pc-footer-social a:hover{color:#fff}

.pc-footer-contact{
  display:flex;flex-direction:column;gap:12px;
  border-bottom:1px solid #1e293b;padding-bottom:16px;margin-bottom:20px;
}
.pc-footer-contacts{display:flex;flex-wrap:wrap;align-items:center;gap:8px 20px}
.pc-f-tel{display:inline-flex;align-items:center;gap:8px;min-height:44px;color:#fff;font-weight:500;transition:color .2s}
.pc-f-tel svg{width:16px;height:16px;color:var(--brand-200)}
.pc-f-tel:hover{color:#ffb996}
.pc-f-mail{display:inline-flex;align-items:center;gap:8px;min-height:44px;color:#cbd5e1;transition:color .2s}
.pc-f-mail svg{width:16px;height:16px;color:#64748b}
.pc-f-mail:hover{color:#fff}
.pc-pay{display:flex;flex-wrap:wrap;align-items:center;gap:8px}
.pc-pay-chip{display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 10px;border-radius:8px;background:#fff}
.pc-pay-chip img{height:20px;width:auto;display:block}

.pc-footer-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px 24px}
@media (min-width:1024px){.pc-footer-grid{grid-template-columns:repeat(4,1fr)}}
.pc-footer-col h2{
  margin:0 0 4px;color:#e2e8f0;font-size:12px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
}
.pc-footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;column-gap:12px}
.pc-footer-col li{width:auto}
.pc-footer-col a{display:inline-flex;align-items:center;min-height:44px;transition:color .2s}
.pc-footer-col a:hover{color:#fff}

.pc-footer-bottom{
  display:flex;flex-direction:column;gap:8px;
  border-top:1px solid #1e293b;padding-top:20px;margin-top:32px;
}
.pc-footer-legal{display:flex;flex-wrap:wrap;align-items:center;gap:0}
.pc-footer-legal a{display:inline-flex;align-items:center;min-height:44px;transition:color .2s}
.pc-footer-legal a:hover{color:#fff}
.pc-footer-legal span{padding:0 8px;color:#334155}
.pc-footer-bottom p{margin:0;font-size:12px;line-height:1.6;color:#64748b}
@media (min-width:640px){
  .pc-footer-bottom{flex-direction:row;align-items:center;justify-content:space-between;gap:16px}
  .pc-footer-bottom p{text-align:right}
}
