
:root{
  --blue:#185fa6;
  --green:#188c78;
  --text:#202b38;
  --muted:#657181;
  --border:#e2e8ef;
  --bg:#fbfcfe;
  --card:#f6f9fc;
  --soft-blue:#eef5fb;
  --soft-green:#eff8f5;
  --shadow:0 10px 25px rgba(21,53,79,.07);
  --radius:16px;
  --max:1100px;
  --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"Noto Sans",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--text);background:linear-gradient(180deg,#f8fbfd 0,#fff 38%,#f8fbfd 100%);line-height:1.65}
a{color:var(--blue);text-decoration:none}a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.skip-link{position:absolute;left:-999px;width:1px;height:1px;overflow:hidden}.skip-link:focus{left:18px;top:18px;width:auto;height:auto;background:#fff;border:2px solid var(--blue);padding:10px 12px;border-radius:12px;z-index:1000}
header{position:sticky;top:0;background:rgba(255,255,255,.96);border-bottom:1px solid var(--border);backdrop-filter:saturate(180%) blur(10px);z-index:50}
.navbar{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:12px 0}
.brand{display:flex;align-items:center;gap:12px;min-width:240px;color:var(--text)}.brand:hover{text-decoration:none}.brand img{width:46px;height:46px;object-fit:contain;border:1px solid var(--border);border-radius:12px;background:#fff;padding:4px}.brand .name{display:flex;flex-direction:column;line-height:1.08}.brand .name strong{color:var(--blue);font-size:1.05rem}.brand .name span{color:var(--green);font-size:.92rem}
nav ul{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:10px}nav a{display:inline-flex;align-items:center;padding:8px 10px;border-radius:12px;color:var(--text)}nav a[aria-current="page"]{background:linear-gradient(90deg,rgba(24,95,166,.10),rgba(24,140,120,.10));border:1px solid rgba(24,95,166,.17)}nav a:hover{background:rgba(17,24,39,.04);text-decoration:none}
.menu-toggle{display:none;width:46px;height:46px;padding:0;border:1px solid var(--border);border-radius:12px;background:#fff;color:var(--text);align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,.04)}.menu-toggle span{width:22px;height:2px;border-radius:999px;background:currentColor;transition:.2s}.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.content{padding:32px 0 44px}.hero{padding:10px 0 24px}.hero-card{border:1px solid var(--border);border-radius:var(--radius);background:linear-gradient(135deg,var(--soft-blue),#fff 48%,var(--soft-green));padding:26px;box-shadow:var(--shadow)}.hero h1{margin:0;color:var(--blue);font-size:clamp(2rem,4vw,3rem);line-height:1.1}.hero-logo{width:min(380px,75vw);margin:20px auto 0}.content-card{border:1px solid var(--border);border-radius:var(--radius);background:#fff;padding:24px;box-shadow:var(--shadow)}.content-card h2,.content-card h3{color:var(--blue)}.content-card h2{margin-top:30px}.content-card p{margin:0 0 1.15em}.content-card ul{padding-left:24px}.content-card li{margin:.35em 0}
.shop-intro{margin-bottom:18px}.shop-intro h1{margin:0;color:var(--blue);font-size:2rem}.shop-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.shop-name-card{min-height:112px;border:1px solid var(--border);border-radius:var(--radius);background:#fff;box-shadow:var(--shadow);display:flex;align-items:center;justify-content:center;text-align:center;padding:20px;color:var(--text);font-size:1.05rem;font-weight:700;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.shop-name-card:hover{transform:translateY(-2px);border-color:rgba(24,95,166,.28);box-shadow:0 14px 28px rgba(21,53,79,.10);text-decoration:none;color:var(--blue)}
.product-only{min-height:62vh;display:flex;align-items:center;justify-content:center}.product-name-box{width:min(720px,100%);min-height:270px;display:flex;align-items:center;justify-content:center;text-align:center;border:1px solid var(--border);border-radius:var(--radius);background:linear-gradient(135deg,#fff,var(--soft-blue));box-shadow:var(--shadow);padding:34px}.product-name-box h1{margin:0;color:var(--blue);font-size:clamp(2rem,6vw,4rem);line-height:1.1}
.weather-list{columns:2;column-gap:32px}.legacy-footer{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.legacy-footer h2{font-size:1rem;color:var(--blue);margin:0 0 8px}.legacy-footer ul{list-style:none;padding:0;margin:0}.legacy-footer li{margin:5px 0}.legacy-footer a{color:var(--muted)}
footer{border-top:1px solid var(--border);padding:22px 0 28px;background:#fff}.footer-copy{margin-top:20px;padding-top:16px;border-top:1px solid var(--border);font-size:.9rem;color:var(--muted)}
@media(max-width:900px){.shop-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.legacy-footer{grid-template-columns:1fr}.weather-list{columns:1}}
@media(max-width:820px){header .navbar{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px 12px;padding:10px 16px}.menu-toggle{display:flex}.navbar nav{grid-column:1/-1;display:none;border-top:1px solid var(--border);padding-top:10px}.navbar.nav-open nav{display:block}.navbar nav ul{display:flex;flex-direction:column;gap:4px}.navbar nav a{display:flex;width:100%}.brand{min-width:0}.brand .name{min-width:0}}
@media(max-width:620px){.container{padding:0 14px}.content{padding-top:22px}.hero-card,.content-card{padding:18px}.shop-grid{grid-template-columns:1fr}.shop-name-card{min-height:94px}.product-name-box{min-height:220px}.brand .name span{display:none}}


/* Lulutox product page */
.product-breadcrumb{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:0 0 14px;font-size:.92rem;color:var(--muted)}
.lulutox-card{border:1px solid var(--border);border-radius:22px;background:#fff;padding:clamp(18px,3vw,30px);box-shadow:var(--shadow)}
.lulutox-card h1{font-size:clamp(2.25rem,6vw,4.2rem);line-height:1.02;margin:.2rem 0 .8rem;color:#16644d;letter-spacing:-.04em}
.lulutox-card h2{color:var(--blue);margin:34px 0 12px;font-size:clamp(1.45rem,3vw,2rem)}
.lulutox-card p{margin:0 0 1.05em}
.lulutox-hero{display:grid;grid-template-columns:minmax(260px,.82fr) minmax(0,1.2fr);gap:34px;align-items:center;background:linear-gradient(135deg,#f6fff9,#fff7fb 56%,#fff4df);border:1px solid #e1eee6;border-radius:20px;padding:clamp(20px,4vw,38px)}
.lulutox-visual{display:flex;align-items:center;justify-content:center;min-height:340px}.lulutox-visual img{width:min(100%,360px);filter:drop-shadow(0 22px 24px rgba(30,50,38,.16))}
.product-kicker{display:inline-flex;padding:7px 11px;border-radius:999px;background:#eaf8ef;color:#16644d;font-size:.82rem;font-weight:800;letter-spacing:.02em}
.product-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px 13px;margin:12px 0 18px}.product-price{font-size:1.55rem;color:#a11654}.product-stock{font-weight:800;color:#178356}.product-stars{letter-spacing:2px;color:#d78c00;font-size:1.1rem}.product-lead{font-size:1.06rem;color:#354454}.product-fine{font-size:.86rem;color:var(--muted);margin-top:10px!important}
.product-button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:12px 19px;border-radius:13px;background:linear-gradient(135deg,#185fa6,#188c78);color:#fff!important;font-weight:800;box-shadow:0 9px 18px rgba(24,95,166,.18);text-decoration:none!important;transition:transform .18s ease,box-shadow .18s ease}.product-button:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(24,95,166,.24)}.product-button.small{min-height:40px;padding:8px 14px}
.product-tabs{display:flex;gap:8px;flex-wrap:wrap;padding:20px 0 4px}.product-tabs a{border:1px solid var(--border);padding:8px 11px;border-radius:999px;background:#fbfdff;font-size:.9rem;font-weight:700;color:#435164}.product-tabs a:hover{text-decoration:none;border-color:#b8cfdf;background:#f1f7fb}
.product-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px;margin:20px 0}.product-facts div{border:1px solid var(--border);background:#fbfcfe;border-radius:14px;padding:14px}.product-facts b,.product-facts span{display:block}.product-facts b{font-size:.77rem;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);margin-bottom:4px}.product-facts span{font-weight:800}.product-facts.compact{grid-template-columns:repeat(4,minmax(0,1fr))}
.product-highlight,.product-bottom{display:flex;justify-content:space-between;align-items:center;gap:22px;border-radius:18px;padding:18px 20px;margin:24px 0;background:linear-gradient(90deg,#eef7fb,#eff9f4);border:1px solid #dbe9e5}.product-highlight p{margin:5px 0 0}.product-bottom span{display:block;color:var(--muted);margin-top:3px}
.product-table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:16px}.product-table{border-collapse:collapse;width:100%;min-width:600px}.product-table th,.product-table td{padding:13px 15px;text-align:left;border-bottom:1px solid var(--border);vertical-align:top}.product-table th{background:#f2f7fb;color:#294c6d;font-size:.9rem}.product-table tr:last-child td{border-bottom:0}
.product-note{border-left:4px solid #d78c00;background:#fff9ea;padding:14px 16px;border-radius:12px;margin:18px 0}
.product-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.product-steps>div{display:flex;align-items:flex-start;gap:10px;border:1px solid var(--border);border-radius:14px;padding:14px;background:#fbfcfe}.product-steps span{width:30px;height:30px;display:grid;place-items:center;flex:0 0 30px;border-radius:50%;background:#188c78;color:#fff;font-weight:800}.product-steps p{margin:2px 0 0}
.product-review{border:1px solid #e6d9a9;background:#fffdf5;border-radius:17px;padding:19px}.review-score{display:flex;align-items:center;gap:14px;margin-bottom:8px}.review-score strong{font-size:1.65rem;color:#a16f00}
.product-faq details{border:1px solid var(--border);border-radius:13px;background:#fff;margin:9px 0;padding:0 14px}.product-faq summary{cursor:pointer;font-weight:800;padding:14px 0}.product-faq details p{padding-bottom:14px;margin:0;color:#44515f}
.product-sticky{display:none}
@media(max-width:820px){.lulutox-hero{grid-template-columns:1fr;gap:10px}.lulutox-visual{min-height:230px}.lulutox-visual img{width:min(72vw,310px)}.product-facts{grid-template-columns:repeat(2,minmax(0,1fr))}.product-facts.compact{grid-template-columns:repeat(2,minmax(0,1fr))}.product-steps{grid-template-columns:1fr}.product-highlight,.product-bottom{align-items:flex-start;flex-direction:column}.product-sticky{position:fixed;z-index:80;display:flex;align-items:center;justify-content:space-between;gap:10px;left:10px;right:10px;bottom:10px;border:1px solid rgba(24,95,166,.2);border-radius:15px;background:rgba(255,255,255,.96);backdrop-filter:blur(10px);box-shadow:0 15px 40px rgba(25,45,65,.22);padding:9px 10px 9px 14px}.product-sticky strong{font-size:.92rem}body{padding-bottom:72px}}
@media(max-width:520px){.lulutox-card{padding:13px}.lulutox-hero{padding:18px}.product-facts{grid-template-columns:1fr}.product-facts.compact{grid-template-columns:1fr}.product-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px}.product-tabs a{white-space:nowrap}.product-sticky strong{font-size:.82rem}}
