@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500&display=swap'); :root { --black: #0a0a0a; --white: #ffffff; --mid: #f5f5f5; --border: #e0e0e0; --text-muted: #777; --text-body: #222; } * { box-sizing: border-box; margin: 0; padding: 0; } .spur-wrap { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--black); max-width: 1100px; margin: 0 auto; padding: 48px 24px; } .spur-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; border-bottom: 1px solid var(--border); padding-bottom: 24px; flex-wrap: wrap; gap: 12px; } .spur-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; } .spur-meta { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); } .spur-tabs { display: flex; gap: 4px; margin-bottom: 32px; } .spur-tab { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 24px; background: var(--mid); color: var(--text-muted); border: 1px solid var(--border); cursor: pointer; transition: all 0.15s; border-radius: 2px; } .spur-tab:hover { color: var(--black); border-color: #aaa; } .spur-tab.active { background: var(--black); color: var(--white); border-color: var(--black); } .spur-panel { display: none; } .spur-panel.active { display: block; } .spec-category { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); padding: 20px 0 8px; border-bottom: 2px solid var(--black); margin-bottom: 0; } .spec-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--border); transition: background 0.1s; } .spec-row:hover { background: var(--mid); } .spec-key { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); padding: 12px 16px 12px 0; align-self: start; } .spec-val { font-size: 14px; font-weight: 300; color: var(--text-body); padding: 12px 0; line-height: 1.5; } @media (max-width: 600px) { .spec-row { grid-template-columns: 1fr; } .spec-key { padding-bottom: 2px; } .spec-val { padding-top: 0; padding-bottom: 12px; } } Specs Care Description Pack like a pro with a rain cover for your Big Agnes pack. The Rain Cover is designed to keep your pack sheltered from the elements while out on the trail. The 40L Rain Cover fits the Prospector 40L and Sun Dog 40L, sold separately. The 60L Rain Cover fits the Garnet 60L and Parkview 60L, sold separately. Features Fit Snug fit that's easily adjustable with showercap design and elastic trim Packable Packs down small to stow away easily when not in use Small Fits the Impassable 20L and Ditch Rider 32L daypacks Medium Fits the Sun Dog 45L and Prospector 50L packs Large Fits the Garnet 60L and Prospector 63L packs Materials Fabric Nylon double ripstop with water-resistant polyurethane coating Cleaning Light Cleaning For light cleaning, sponge the product with warm water (not hot). Supplies Needed Wash basin (or bath tub), Warm water (not hot), Waterproof Gear Cleaner (we recommend products like Nikwax Tech Wash), Sponge Step 1 Submerge your Pack in warm, clean water. Gently agitate with hands. Empty dirty water. Repeat until most of the excess dirt/grime is removed and water is mostly clear. Step 2 Apply waterproof gear specific wash and gently work into fabric with sponge. Step 3 Rinse Pack thoroughly. Step 4 Hang it up to dry. Step 5 Triple check that your Pack is completely dry before storage or use. Important Notes Warnings Do not dry clean or machine-wash. Detergents and dry cleaning solvents will damage the fabric and ruin waterproofing. Never use hot water, bleach, liquid detergents, or dishwashing liquids. Allow to dry COMPLETELY before storage or use. Avoid prolonged direct sunlight as UV exposure can compromise waterproofing. Repairs and Warranty Coverage All Big Agnes gear is guaranteed against manufacturing or material defect. We do not warranty products damaged from normal wear and tear, alteration made by owner, misuse, accidents, or damages caused by uses other than intended. Damage due to misuse, normal wear and tear, or improper care may be repaired, at the discretion of Big Agnes, at a reasonable charge. Gear returned for repair must be clean and free of debris. function showPanel(id, btn) { document.querySelectorAll('.spur-panel').forEach(p => p.classList.remove('active')); document.querySelectorAll('.spur-tab').forEach(t => t.classList.remove('active')); document.getElementById('panel-' + id).classList.add('active'); btn.classList.add('active'); }