Sturdy Canvas Watch Strap with Hook & Latch System | 22mm
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap'); * { margin:0; padding:0; box-sizing:border-box; } body { font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif; background:#fafafa; color:#0a0a0a; line-height:1.6; -webkit-font-smoothing:antialiased; } /* Hero – CANVAS FIELD THEME (Fog Gray + Jungle Green) */ .hero { background:linear-gradient(135deg,#1a1a1a 0%,#2d2d2d 100%); color:white; padding:2.5rem 1.25rem 2rem; position:relative; overflow:hidden; } .hero::before { content:''; position:absolute; top:-50%; right:-10%; width:500px; height:500px; background:radial-gradient(circle,rgba(47,79,79,0.15) 0%,transparent 70%); border-radius:50%; animation:pulse 8s ease-in-out infinite; } @keyframes pulse { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.1);opacity:.8} } .container { max-width:1200px; margin:0 auto; position:relative; z-index:1; } .hero-conte