/* index-new.css — Modern shoppecanada.ca homepage */

:root {
    --red: #d52349;
    --red-dark: #b01e3e;
    --canada-red: #c8102e;
    --nav-blue: #94aed1;
    --nav-blue-dark: #6b8bb8;
    --ink: #1a1a2e;
    --ink-soft: #3d3d5c;
    --surface: #f8f9fc;
    --white: #ffffff;
    --gold: #ffd700;
    --pink: #ff69b4;
    --teal: #4ecdc4;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
    --shadow-hover: 0 20px 50px rgba(26, 26, 46, 0.18);
    --font-display: 'Outfit', 'Poppins', system-ui, sans-serif;
    --font-body: 'DM Sans', 'Source Sans Pro', system-ui, sans-serif;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
    background: var(--white);
    color: var(--ink);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    overflow: visible;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 0.5em;
}

/* ── Navigation ── */
.site-nav {
    background: var(--nav-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo img { height: 72px; width: auto; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    display: block;
    padding: 0.6rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.nav-links > li > a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.nav-links > li:hover .nav-dropdown { display: block; }

.nav-dropdown a {
    display: block;
    padding: 0.55rem 1.25rem;
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--ink-soft);
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
    background: var(--surface);
    color: var(--red);
}

.order-banner {
    display: block;
    background: var(--nav-blue-dark);
    color: var(--white);
    text-align: right;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition);
}

.order-banner:hover { background: #5a7aa8; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, #ff5e7e 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(213, 35, 73, 0.35);
}

.btn-primary:hover { box-shadow: 0 10px 32px rgba(213, 35, 73, 0.45); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 50%, var(--teal) 100%);
    color: var(--ink);
    box-shadow: 0 6px 24px rgba(255, 105, 180, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-white {
    background: var(--white);
    color: var(--red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

/* ── Hero ── */
.hero {
    position: relative;
    padding: 4rem 1.5rem 5rem;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200, 16, 46, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 105, 180, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 80%, rgba(78, 205, 196, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-badge .flag { font-size: 1.1rem; }

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--pink), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
}

.hero-stat span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

/* Design Studio die-cut — same display size as former lighter wrap tile (~221px) */
.hero-design-diecut {
    display: block;
    width: 100%;
    max-width: 442px;
    margin: 0 auto;
    text-decoration: none;
    transition: transform var(--transition), filter var(--transition);
    animation: diecutFloat 5s ease-in-out infinite;
}

.hero-design-diecut img {
    width: 100%;
    height: auto;
    display: block;
    filter:
        drop-shadow(0 0 0 2px rgba(255, 255, 255, 1))
        drop-shadow(0 0 0 5px rgba(255, 255, 255, 0.55))
        drop-shadow(2px 4px 0 rgba(0, 0, 0, 0.12))
        drop-shadow(8px 14px 28px rgba(0, 0, 0, 0.38));
}

.hero-design-diecut:hover {
    transform: scale(1.03) translateY(-6px);
}

.hero-design-diecut:hover img {
    filter:
        drop-shadow(0 0 0 2px rgba(255, 255, 255, 1))
        drop-shadow(0 0 0 5px rgba(255, 255, 255, 0.6))
        drop-shadow(3px 6px 0 rgba(0, 0, 0, 0.14))
        drop-shadow(12px 20px 36px rgba(0, 0, 0, 0.42));
}

@keyframes diecutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Trust strip ── */
.trust-strip {
    background: var(--surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 1.5rem;
}

.trust-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.trust-item .icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ── Section layout ── */
.section {
    padding: 4.5rem 1.5rem;
}

.section-alt { background: var(--surface); }

.section-header {
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ── Feature spotlight cards ── */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.spotlight-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}

.spotlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.spotlight-card .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.spotlight-card:hover .card-bg { transform: scale(1.05); }

.spotlight-card .card-overlay {
    position: absolute;
    inset: 0;
}

.spotlight-card .card-content {
    position: relative;
    padding: 2rem;
    z-index: 1;
}

.spotlight-card .card-emoji { font-size: 2rem; margin-bottom: 0.5rem; }

.spotlight-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.spotlight-card p {
    opacity: 0.92;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.spotlight-card .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform var(--transition), background var(--transition);
}

.spotlight-card:hover .card-cta {
    background: var(--white);
    transform: scale(1.05);
}

.spotlight-design .card-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 26, 0.95) 100%);
}

.spotlight-design .card-bg {
    background-image: url('https://kingofstickers.com/img/designlogofull.png');
    background-size: 70%;
    background-repeat: no-repeat;
    background-color: #0a0a1a;
    background-position: center 30%;
}

.spotlight-canada .card-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(120, 0, 20, 0.92) 100%);
}

.spotlight-canada .card-bg {
    background-image: url('/canada.jpg');
}

.spotlight-lighter .card-overlay {
    background: linear-gradient(180deg, transparent 15%, rgba(180, 60, 0, 0.92) 100%);
}

.spotlight-lighter .card-bg {
    background-image: url('https://kingofstickers.com/img/lighter2.jpg');
}

/* ── Design Studio section ── */
.design-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.design-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.design-section h2 { color: var(--white); font-size: 2rem; }

.design-section p { opacity: 0.9; font-size: 1.05rem; }

.design-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.design-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-step .step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
}

.design-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.35rem; }

.design-step p { font-size: 0.85rem; opacity: 0.8; margin: 0; }

.design-visual img {
    border-radius: var(--radius);
    filter: drop-shadow(0 16px 40px rgba(255, 105, 180, 0.3));
    animation: float 5s ease-in-out infinite;
}

/* ── Product categories ── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.5rem 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}

.category-card .cat-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.category-card h3 {
    font-size: 0.95rem;
    margin: 0;
}

/* ── Canada banner ── */
.canada-banner {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.canada-banner:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

.canada-banner img { width: 100%; }

.canada-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 16, 46, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: center;
    padding: 2rem 3rem;
}

.canada-banner-overlay h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    max-width: 500px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ── Lighter wraps feature row ── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-row img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.feature-row h2 { font-size: 2rem; margin-bottom: 1rem; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* ── Product mosaic ── */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.mosaic-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface);
}

.mosaic-item a { display: block; height: 100%; }

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform var(--transition);
}

.mosaic-item:hover img { transform: scale(1.08); }

/* ── Reviews ticker ── */
.reviews-ticker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.reviews-ticker::before,
.reviews-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-ticker::before {
    left: 0;
    background: linear-gradient(to right, #667eea, transparent);
}

.reviews-ticker::after {
    right: 0;
    background: linear-gradient(to left, #764ba2, transparent);
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scroll-reviews 35s linear infinite;
    width: max-content;
}

.reviews-track:hover { animation-play-state: paused; }

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-chip {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    min-width: 280px;
    color: var(--white);
}

.review-chip p {
    margin: 0 0 0.4rem;
    font-style: italic;
    font-size: 0.92rem;
}

.review-chip cite {
    font-style: normal;
    font-weight: 700;
    font-size: 0.82rem;
    opacity: 0.9;
}

/* ── Split banner ── */
.split-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-banner img { width: 100%; }

.split-link {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.split-link.left { left: 0; }
.split-link.right { right: 0; }

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(135deg, var(--red) 0%, #ff5e7e 50%, var(--canada-red) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 1.5rem;
}

.cta-band h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.75rem; }

.cta-band p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 1.5rem 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    max-width: 260px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.85rem; opacity: 0.6; }

/* ── Reveal animation (only hide when JS is active) ── */
.reveal {
    opacity: 1;
    transform: none;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .spotlight-grid { grid-template-columns: 1fr; }
    .spotlight-card { min-height: 320px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nav-blue);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open { display: flex; }

    .nav-links > li { width: 100%; }

    .nav-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.5);
        margin-top: 0.25rem;
    }

    .nav-links > li:hover .nav-dropdown,
    .nav-links > li.dropdown-open .nav-dropdown { display: block; }

    .hero-inner,
    .design-grid,
    .feature-row {
        grid-template-columns: 1fr;
    }

    .hero-visual { order: -1; padding: 1rem 0; }
    .hero-design-diecut { max-width: 340px; }

    .design-steps { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }

    .canada-banner-overlay {
        padding: 1.5rem;
        background: linear-gradient(0deg, rgba(200, 16, 46, 0.9) 0%, transparent 100%);
        align-items: flex-end;
    }

    .feature-row.reverse { direction: ltr; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr 1fr; }
    .hero-actions .btn { width: 100%; }
}
