
:root{
  --bg:#fffaf5;
  --bg-2:#fff3e8;
  --card:#ffffff;
  --text:#3d302a;
  --muted:#76675f;
  --primary:#f1852d;
  --primary-2:#f5b46f;
  --accent:#ffe5ca;
  --line:#edd8c6;
  --shadow:0 22px 60px rgba(96,57,29,.12);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:18px;
  --radius-sm:14px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"PingFang TC","Noto Sans TC","Microsoft JhengHei",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,214,177,.30), transparent 22%),
    radial-gradient(circle at 90% 18%, rgba(255,232,207,.55), transparent 20%),
    linear-gradient(180deg,#fffaf5 0%,#fff7f1 48%,#fffdfb 100%);
  line-height:1.6;
  min-height:100vh;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto;position:relative;z-index:2}

.gift-rain{
  position:fixed;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.gift-drop{
  position:absolute;
  top:-14vh;
  left:0;
  width:var(--size,18px);
  height:var(--size,18px);
  border-radius:4px;
  background:linear-gradient(180deg,rgba(255,210,170,.30),rgba(241,133,45,.18));
  border:1px solid rgba(241,133,45,.16);
  box-shadow:0 8px 16px rgba(241,133,45,.08);
  transform:rotate(var(--rot,0deg));
  animation:giftFall var(--dur,16s) linear infinite;
  animation-delay:var(--delay,0s);
  opacity:.8;
}
.gift-drop::before,
.gift-drop::after{
  content:"";
  position:absolute;
  background:rgba(255,255,255,.55);
}
.gift-drop::before{
  left:50%;
  top:0;
  width:2px;height:100%;
  transform:translateX(-50%);
}
.gift-drop::after{
  top:50%;
  left:0;
  width:100%;height:2px;
  transform:translateY(-50%);
}
.gift-drop i,
.gift-drop i::before,
.gift-drop i::after{
  position:absolute;
  content:"";
  display:block;
}
.gift-drop i{
  left:50%;
  top:-4px;
  width:6px;height:6px;
  transform:translateX(-50%);
}
.gift-drop i::before,
.gift-drop i::after{
  width:7px;height:7px;
  border:2px solid rgba(255,214,177,.75);
  border-radius:8px 8px 0 8px;
  top:0;
}
.gift-drop i::before{
  left:-6px;
  transform:rotate(-35deg);
}
.gift-drop i::after{
  right:-6px;
  transform:scaleX(-1) rotate(-35deg);
}
@keyframes giftFall{
  0%{transform:translate3d(0,0,0) rotate(var(--rot,0deg));opacity:0}
  8%{opacity:.8}
  100%{transform:translate3d(var(--drift,32px),115vh,0) rotate(calc(var(--rot,0deg) + 220deg));opacity:0}
}

.topbar{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(10px);
  background:rgba(255,250,245,.82);
  border-bottom:1px solid rgba(237,216,198,.9);
}
.topbar-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{
  width:48px;height:48px;flex:0 0 auto;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(241,133,45,.18);
  background:#fff;
  border:1px solid rgba(237,216,198,.95);
}
.brand-logo img{width:100%;height:100%;object-fit:cover}
.brand-copy{min-width:0}
.brand-title{
  font-size:16px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-sub{
  font-size:12px;
  color:var(--muted);
  margin-top:3px;
}
.topbar-link{
  font-size:14px;
  font-weight:800;
  color:#6f5a4f;
}

.hero{
  padding:22px 0 14px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:18px;
  align-items:stretch;
}
.hero-copy,.hero-card,.panel,.footer-card,.legal-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(237,216,198,.95);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}
.hero-copy{
  padding:26px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:#fff3e6;
  border:1px solid #f0d1b6;
  color:#a05f2d;
  font-size:13px;
  font-weight:800;
}
.hero h1{
  margin:14px 0 0;
  font-size:clamp(30px,5vw,54px);
  line-height:1.08;
  letter-spacing:.2px;
}
.hero-sub{
  margin:12px 0 0;
  color:#604e46;
  font-size:17px;
  max-width:700px;
}
.proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.proof-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:14px;
  color:#6b594f;
}
.proof-pill strong{
  font-size:15px;
  color:#573e30;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:14px 22px;
  font-weight:900;
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:none}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 16px 32px rgba(241,133,45,.26);
}
.hero-note{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}
.hero-card{
  overflow:hidden;
  padding:14px;
  display:flex;
  flex-direction:column;
}
.hero-image{
  border-radius:22px;
  overflow:hidden;
  aspect-ratio: 1.08 / 1;
  background:#fff3e8;
}
.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.hero-mini-item{
  background:#fff8f2;
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.hero-mini-item strong{
  display:block;
  font-size:14px;
  line-height:1.3;
}
.hero-mini-item span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
}

.section{
  padding:14px 0;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.section-head h2{
  margin:0;
  font-size:clamp(24px,3.4vw,36px);
  line-height:1.15;
}
.section-head p{
  margin:7px 0 0;
  color:var(--muted);
  max-width:760px;
}

.gift-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.gift-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(237,216,198,.95);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.gift-media{
  aspect-ratio:4/3;
  background:linear-gradient(180deg,#fffaf6 0%,#fff3e8 100%);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}
.gift-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  border-radius:16px;
  background:#fff;
}
.gift-body{
  padding:16px 16px 18px;
}
.pill{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:#fff3e6;
  border:1px solid #f0d1b6;
  color:#8f5628;
  font-size:12px;
  font-weight:800;
}
.gift-body h3{
  margin:10px 0 0;
  font-size:18px;
  line-height:1.35;
}
.gift-body p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.panel{
  padding:22px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(237,216,198,.95);
  box-shadow:var(--shadow);
  border-radius:26px;
}
.strip-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.strip-badge{
  width:34px;height:34px;flex:0 0 auto;
  display:grid;place-items:center;
  border-radius:12px;
  background:#fff3e6;
  color:#a56130;
  font-weight:900;
}
.strip-item strong{
  display:block;
  font-size:15px;
}
.strip-item span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}

.footer{
  padding:14px 0 34px;
}
.footer-card{
  padding:24px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.footer h3,.footer h4{
  margin:0 0 10px;
}
.footer p{
  margin:0;
  color:var(--muted);
}
.meta-list{
  display:grid;
  gap:10px;
}
.meta-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.meta-icon{
  width:32px;height:32px;flex:0 0 auto;
  display:grid;place-items:center;
  border-radius:12px;
  background:#fff3e6;
}
.footer-nav{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.footer-nav a{
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:13px;
  font-weight:800;
  color:#6a574d;
}
.copy{
  margin-top:14px;
  font-size:13px;
  color:var(--muted);
}

.mobile-sticky-cta{
  display:none;
}

.legal-wrap{
  padding:28px 0 38px;
}
.breadcrumb{
  font-size:13px;
  color:var(--muted);
  margin-bottom:14px;
}
.legal-card{
  padding:28px;
}
.legal-card h1{
  margin:0;
  font-size:clamp(28px,4vw,42px);
  line-height:1.12;
}
.updated{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}
.legal-card h2{
  margin:26px 0 10px;
  font-size:22px;
  line-height:1.25;
}
.legal-card p,.legal-card li{
  color:#5e4b42;
}
.legal-card ul{padding-left:20px}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  font-weight:900;
  color:#6b574c;
}
.legal-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.legal-links a{
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:13px;
  font-weight:800;
  color:#6a574d;
}

@media (max-width:1080px){
  .hero-grid,.footer-top{grid-template-columns:1fr}
  .gift-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:760px){
  .container{width:min(calc(100% - 20px), var(--max))}
  .brand-sub{display:none}
  .topbar-link{display:none}
  .hero{padding-top:16px}
  .hero-copy,.hero-card,.panel,.footer-card,.legal-card{border-radius:22px}
  .hero-copy{padding:22px}
  .hero-grid,.info-strip,.footer-top{grid-template-columns:1fr}
  .hero-mini{grid-template-columns:1fr}
  .gift-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  .mobile-sticky-cta{
    display:flex;
    position:fixed;
    left:12px;right:12px;bottom:12px;
    z-index:40;
    padding:14px 18px;
    justify-content:center;
  }
  body.has-sticky-cta{padding-bottom:78px}
}
@media (max-width:460px){
  .brand-logo{width:44px;height:44px;border-radius:14px}
  .brand-title{font-size:15px}
  .hero h1{font-size:31px}
  .hero-sub{font-size:15px}
  .gift-grid{grid-template-columns:1fr}
  .hero-actions{display:grid}
  .btn{width:100%}
}
