@font-face { font-family: 'Oswald Fallback'; src: local('Arial'); size-adjust: 106%; ascent-override: 105%; descent-override: 30%; }
@font-face { font-family: 'Open Sans Fallback'; src: local('Arial'); size-adjust: 100%; ascent-override: 105%; descent-override: 28%; }

:root {
    --color-red: #D00000; --color-black: #111111; --color-gray: #F5F5F5; --color-white: #FFFFFF;
    --font-sans: 'Open Sans', 'Open Sans Fallback', sans-serif;
    --font-display: 'Oswald', 'Oswald Fallback', sans-serif;
    --shadow-hard: 4px 4px 0px 0px var(--color-black);
    --border-thick: 4px solid var(--color-black); --border-standard: 2px solid var(--color-black);
    --radius-squircle: 1.5rem; --radius-squircle-sm: 0.75rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--color-black); }
body { background-color: var(--color-white); color: var(--color-black); font-family: var(--font-sans); overflow-x: hidden; line-height: 1.5; }
[x-cloak] { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1024px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 768px; }
.text-center { text-align: center; }
.text-red { color: var(--color-red); }
.text-outline { -webkit-text-stroke: 1.5px #000; color: transparent; }
.shadow-hard { box-shadow: var(--shadow-hard); }
.squircle { border-radius: var(--radius-squircle); }
.squircle-sm { border-radius: var(--radius-squircle-sm); }
.uppercase { text-transform: uppercase; }
.font-display { font-family: var(--font-display); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; border: var(--border-standard); cursor: pointer; transition: all 0.1s ease; border-radius: var(--radius-squircle-sm); box-shadow: var(--shadow-hard); min-height: 44px; }
@media (min-width: 768px) { .btn { padding: 0.5rem 1rem; } }
.btn:active { transform: translate(2px, 2px); box-shadow: none; }
.btn-primary { background-color: var(--color-red); color: var(--color-white); }
.btn-primary:hover { background-color: var(--color-black); }
.btn-outline { background-color: var(--color-white); color: var(--color-black); }
.btn-outline:hover { background-color: var(--color-red); color: var(--color-white); }
.btn-black { background-color: var(--color-black); color: var(--color-white); }
.btn-black:hover { background-color: var(--color-red); }
.btn-full { width: 100%; }

.site-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; border-bottom: var(--border-standard); transition: all 0.3s ease; background-color: var(--color-white); padding: 0.75rem 0; }
.site-nav.scrolled { background-color: rgba(255, 255, 255, 0.95); padding: 0.5rem 0; backdrop-filter: blur(8px); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; position: relative; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; cursor: pointer; text-transform: uppercase; z-index: 52; }
.nav-actions { display: flex; align-items: center; gap: 0.375rem; z-index: 52; }

.nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-white); display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem 1rem; border-bottom: var(--border-thick); box-shadow: var(--shadow-hard); transform: translateY(-150%); opacity: 0; transition: all 0.3s ease-in-out; pointer-events: none; z-index: 51; }
.nav-links.mobile-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-link { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; text-transform: uppercase; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.nav-link:hover { color: var(--color-red); }
.nav-action-btn { position: relative; padding: 0.5rem; border: var(--border-standard); border-radius: var(--radius-squircle-sm); background: var(--color-white); cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; min-width: 44px; min-height: 44px; }
.nav-action-btn:hover { background: var(--color-red); color: var(--color-white); }
.cart-badge { position: absolute; top: -0.35rem; right: -0.35rem; width: 1.25rem; height: 1.25rem; background: var(--color-black); color: var(--color-white); border-radius: 50%; font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mobile-toggle { background: none; border: var(--border-standard); padding: 0.5rem; border-radius: var(--radius-squircle-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.mobile-toggle:hover { background: var(--color-gray); }

@media (min-width: 768px) { .mobile-toggle { display: none; } .nav-actions { gap: 0.75rem; } .nav-links { position: static; transform: translateY(0); opacity: 1; pointer-events: auto; flex-direction: row; width: auto; padding: 0; border: none; box-shadow: none; background: none; z-index: auto; } .nav-link { font-size: 0.875rem; padding: 0; } }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 60; backdrop-filter: blur(4px); }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 400px; background: var(--color-white); z-index: 70; display: flex; flex-direction: column; border-left: var(--border-thick); transform: translateX(100%); transition: transform 0.3s ease-in-out; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 1.25rem; border-bottom: var(--border-thick); background: var(--color-red); color: var(--color-white); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; }
.cart-header button { background: none; border: none; color: white; cursor: pointer; padding: 0.25rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem; background: var(--color-gray); display: flex; flex-direction: column; gap: 0.75rem; }
.cart-item { display: flex; gap: 0.75rem; background: var(--color-white); padding: 0.75rem; border: var(--border-standard); border-radius: var(--radius-squircle-sm); box-shadow: var(--shadow-hard); }
.cart-item-img { width: 4rem; height: 4rem; border: var(--border-standard); border-radius: var(--radius-squircle-sm); object-fit: contain; }
.cart-item-details { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cart-item-top { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.qty-controls { display: inline-flex; border: 1px solid var(--color-black); border-radius: 4px; overflow: hidden; align-self: flex-start; }
.qty-controls button { background: none; border: none; padding: 0.25rem 0.75rem; cursor: pointer; font-size: 1rem; }
.qty-controls button:hover { background: var(--color-black); color: var(--color-white); }
.qty-controls span { padding: 0.25rem 0.75rem; border-left: 1px solid var(--color-black); border-right: 1px solid var(--color-black); font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; }
.cart-footer { padding: 1.25rem; border-top: var(--border-thick); background: var(--color-white); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }

.site-main { padding-top: 4.5rem; }
.section-pad { padding: 3.5rem 1rem; }
@media (min-width: 768px) { .section-pad { padding: 5rem 1rem; } }
.grid-2 { display: grid; gap: 2rem; align-items: center; }
.grid-3 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.hero-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(3.5rem, 10vw, 5rem); line-height: 0.9; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title-shadow { text-shadow: clamp(2px, 1vw, 4px) clamp(2px, 1vw, 4px) 0px var(--color-black); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; text-transform: uppercase; margin-bottom: 2.5rem; border-bottom: 8px solid var(--color-black); display: inline-block; line-height: 1.1; }
.process-title { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 3.5rem); font-weight: 900; line-height: 1; text-transform: uppercase; margin-bottom: 1.5rem; }

.hero-section { min-height: 80vh; display: flex; align-items: center; border-bottom: var(--border-thick); position: relative; }
.hero-subtitle { font-size: 1.125rem; font-weight: 700; text-transform: uppercase; border-left: 6px solid var(--color-red); padding-left: 1rem; margin-bottom: 2rem; max-width: 400px; }
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .hero-actions { flex-direction: row; } }
.hero-image-wrap { max-width: 250px; margin: 2rem auto 0; transition: transform 0.5s; transform: rotate(3deg); }
.hero-image-wrap:hover { transform: rotate(0); }
@media (min-width: 768px) { .hero-image-wrap { max-width: none; margin: 0 auto; } }

.marquee-wrapper { background: var(--color-black); color: var(--color-white); padding: 1rem 0; transform: rotate(1deg) scale(1.05); border-top: var(--border-thick); border-bottom: var(--border-thick); overflow: hidden; z-index: 10; position: relative; margin: -1rem 0; }
.marquee-wrapper.mirrored { transform: rotate(-1deg) scale(1.05); margin: 1rem 0 3rem 0; }
.marquee-content { display: flex; gap: 3rem; white-space: nowrap; font-family: var(--font-display); font-size: clamp(1rem, 3vw, 1.25rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-style: italic; will-change: transform; }
.marquee-content.reverse { animation-direction: reverse; }

.product-card { background: var(--color-white); border: var(--border-standard); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow 0.2s; padding: 1.25rem; padding-top: 2rem; height: 100%; }
.product-card:hover { box-shadow: var(--shadow-hard); }
.product-img-wrap { border-bottom: 3px solid var(--color-black); aspect-ratio: 1; margin-bottom: 1.5rem; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; margin-bottom: 0.5rem; text-transform: uppercase; }
.product-desc { font-size: 0.875rem; font-weight: 600; color: #4b5563; flex: 1; margin-bottom: 1.5rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #e5e7eb; margin-top: auto; }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-red); }
.add-btn { background: var(--color-black); color: var(--color-white); border: none; padding: 0.75rem; cursor: pointer; transition: 0.2s; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.add-btn:hover { background: var(--color-red); }

.process-section { background: var(--color-gray); border-bottom: var(--border-thick); overflow: hidden; }
.process-badge { background: var(--color-black); color: var(--color-white); padding: 0.25rem 0.75rem; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; border-radius: 4px; display: inline-block; margin-bottom: 1rem; }
.process-desc { font-size: 1.125rem; font-weight: 700; border-left: 6px solid var(--color-red); padding-left: 1rem; text-transform: uppercase; line-height: 1.4; }
.img-stack { position: relative; margin: 2rem 1rem; }
.img-stack-bg { position: absolute; inset: 0; background: var(--color-red); transform: rotate(-3deg) translateX(12px) scale(0.95); }
.img-stack-fg { position: relative; border: 6px solid var(--color-black); z-index: 2; width: 100%; }
.story-text p { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.25rem; border-left: 6px solid var(--color-red); padding-left: 1.25rem; }

.faq-wrap { column-count: 1; column-gap: calc(2rem + 15px); padding: 2rem 0; width: 100%; }
@media (min-width: 768px) { .faq-wrap { column-count: 2; } }
.faq-item { border: var(--border-standard); background: var(--color-white); box-shadow: var(--shadow-hard); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; break-inside: avoid; display: inline-block; width: calc(100% - 30px); margin: 0 15px 2.5rem 15px; }
.faq-item:nth-of-type(1) { transform: scale(1.05) translateX(3%) rotate(1deg); z-index: 6; }
.faq-item:nth-of-type(2) { transform: scale(0.92) translateX(-4%) rotate(-2deg); z-index: 5; }
.faq-item:nth-of-type(3) { transform: scale(1.08) translateX(5%) rotate(-1deg); z-index: 4; }
.faq-item:nth-of-type(4) { transform: scale(0.90) translateX(-5%) rotate(2deg); z-index: 3; }
.faq-item:nth-of-type(5) { transform: scale(1.06) translateX(2%) rotate(1deg); z-index: 2; }
.faq-item:nth-of-type(6) { transform: scale(0.94) translateX(-3%) rotate(-1deg); z-index: 1; }
.faq-item:hover { box-shadow: 6px 6px 0px 0px var(--color-black); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; background: none; border: none; font-weight: 700; font-size: 1.125rem; text-transform: uppercase; cursor: pointer; text-align: left; min-height: 60px; }
.faq-btn:hover { background: var(--color-gray); }
.faq-content { padding: 0 1.25rem 1.25rem 1.25rem; font-weight: 600; font-size: 0.875rem; color: #4b5563; border-top: 1px solid var(--color-black); margin-top: -1px; line-height: 1.6; }

.blog-header { text-align: center; margin-bottom: 2.5rem; }
.category-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.cat-tag { padding: 0.5rem 1rem; border: var(--border-standard); border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; cursor: pointer; background: var(--color-white); transition: 0.2s; min-height: 40px; }
.cat-tag.active { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); }
.cat-tag:hover:not(.active) { background: var(--color-gray); }
.post-list { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
.post-card { border: var(--border-thick); background: var(--color-white); box-shadow: var(--shadow-hard); display: flex; flex-direction: column; transition: transform 0.2s; overflow: hidden; padding: 0; }
.post-card:hover { transform: translate(-4px, -4px); }
.post-img-wrap { width: 100%; aspect-ratio: 16/9; border-bottom: var(--border-thick); overflow: hidden; display: block; }
.post-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-img-wrap img { transform: scale(1.05); }
.post-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.75rem; font-size: 0.75rem; font-weight: 700; flex-wrap: wrap; }
.post-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.75rem; line-height: 1.2; }
.post-card-title a:hover { color: var(--color-red); }
.post-excerpt { font-weight: 600; font-size: 0.875rem; color: #374151; margin-bottom: 1.5rem; flex: 1; line-height: 1.5; }

.single-post-card { background: var(--color-white); padding: 1.5rem; border: var(--border-thick); box-shadow: var(--shadow-hard); }
@media (min-width: 768px) { .single-post-card { padding: 3rem; } }
.single-post-img { width: 100%; max-height: 450px; object-fit: cover; border: var(--border-thick); border-radius: var(--radius-squircle-sm); margin-bottom: 2rem; }
.single-post-title { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; line-height: 1.1; text-transform: uppercase; margin: 1rem 0 2rem 0; padding-bottom: 1.5rem; border-bottom: var(--border-thick); }
.post-content { font-weight: 600; color: #1f2937; line-height: 1.7; font-size: 1.125rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 2rem 0 1rem 0; text-transform: uppercase; }
.back-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; background: none; border: none; cursor: pointer; margin-bottom: 2rem; padding: 0.5rem 0; }
.back-btn:hover { color: var(--color-red); }

.checkout-wrap { border: var(--border-thick); background: var(--color-white); box-shadow: var(--shadow-hard); padding: 1.5rem; }
@media (min-width: 768px) { .checkout-wrap { padding: 2.5rem; } }
.checkout-title { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; text-transform: uppercase; border-bottom: var(--border-thick); padding-bottom: 0.75rem; margin-bottom: 2rem; }
.checkout-summary h3 { font-size: 1.25rem; font-weight: 700; text-transform: uppercase; border-left: 4px solid var(--color-red); padding-left: 0.75rem; margin-bottom: 1rem; }
.checkout-item { display: flex; justify-content: space-between; font-weight: 700; font-size: 1rem; padding: 0.75rem 0; border-bottom: 1px solid #e5e7eb; }
.checkout-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--color-red); margin-top: 1rem; }
.checkout-action-box { background: var(--color-gray); padding: 1.5rem; border: var(--border-standard); text-align: center; display: flex; flex-direction: column; justify-content: center; margin-top: 2rem; }
@media (min-width: 768px) { .checkout-action-box { margin-top: 0; } }
.checkout-action-box h4 { font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.checkout-action-box p { font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; color: #4b5563; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.animate-marquee { animation: marquee 30s linear infinite; }

.heat-slider { -webkit-appearance: none; width: 100%; height: 8px; border: var(--border-standard); border-radius: var(--radius-squircle-sm); background: var(--color-white); outline: none; margin: 0; box-shadow: 2px 2px 0px 0px var(--color-black); }
.heat-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border: var(--border-standard); border-radius: 50%; background: var(--color-red); cursor: pointer; transition: transform 0.2s; }
.heat-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.ugc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.ugc-card { position: relative; overflow: hidden; aspect-ratio: 1; border: var(--border-standard); box-shadow: var(--shadow-hard); cursor: pointer; border-radius: var(--radius-squircle-sm); }
.ugc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ugc-card:hover img { transform: scale(1.1); }
.ugc-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.3s ease; }
.ugc-card:hover .ugc-overlay { opacity: 1; }
.ugc-handle { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--color-red); margin-bottom: 0.5rem; }
.ugc-text { font-size: 0.875rem; font-weight: 600; line-height: 1.4; }