/* ═══════════════════════════════════════
   MOLVRIX — Shared Stylesheet
   Terminal Theme · Green on Black
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black:   #0d1117;
    --black-2: #0a0e14;
    --black-3: #161b22;
    --black-4: #21262d;
    --green:   #2ea043;
    --green-2: #3fb950;
    --green-d: #1a7f37;
    --white:   #f0f6fc;
    --white-2: #c9d1d9;
    --muted:   #8b949e;
    --border:  rgba(48,56,66,0.8);
    --border-g:rgba(46,160,67,0.25);
    --red:     #f85149;
    --yellow:  #e3b341;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Mono', monospace;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(46,160,67,0.012) 4px);
    pointer-events: none;
}

/* ── HEADER ── */
header {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(13,17,23,0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}
header.scrolled { border-color: var(--border-g); }

nav {
    max-width: 1400px; margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: center; gap: 6px; text-decoration: none; }
.logo-prompt { font-family: 'Space Mono', monospace; font-size: 1rem; font-weight: 700; color: var(--green); }
.logo-name { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; }
.logo-cursor { width: 3px; height: 20px; background: var(--green); animation: blink 1.1s step-end infinite; border-radius: 1px; }
@keyframes blink { 50% { opacity: 0; } }

.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.04em; transition: color 0.2s; font-family: 'Space Mono', monospace; }
.nav-links a::before { content: '# '; color: var(--green); opacity: 0.5; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-right { display: flex; gap: 1rem; align-items: center; }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

.mobile-menu { display: none; position: fixed; top: 62px; left: 0; width: 100%; background: var(--black-2); border-top: 1px solid var(--border); padding: 2rem 2.5rem; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 0.9rem; font-family: 'Space Mono', monospace; }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.2s ease; }
.btn-green { padding: 0.7rem 1.6rem; background: var(--green); color: var(--black); border-radius: 4px; }
.btn-green:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,160,67,0.3); }
.btn-green-lg { padding: 0.95rem 2.4rem; font-size: 0.85rem; background: var(--green); color: var(--black); border-radius: 4px; }
.btn-green-lg:hover { background: var(--green-2); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(46,160,67,0.35); }
.btn-outline { padding: 0.7rem 1.6rem; background: transparent; color: var(--white); border: 1px solid var(--border); border-radius: 4px; }
.btn-outline:hover { border-color: var(--border-g); color: var(--green); }
.btn-outline-lg { padding: 0.95rem 2.4rem; font-size: 0.85rem; background: transparent; color: var(--white); border: 1px solid var(--border); border-radius: 4px; }
.btn-outline-lg:hover { border-color: var(--border-g); color: var(--green); }
.btn-ghost { padding: 0.55rem 1rem; background: transparent; color: var(--muted); border: 1px solid var(--border); border-radius: 4px; font-size: 0.75rem; font-family: 'Space Mono', monospace; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { color: var(--white); border-color: var(--border-g); }
.btn-red { padding: 0.7rem 1.6rem; background: var(--red); color: var(--white); border-radius: 4px; border: none; }
.btn-red:hover { opacity: 0.85; transform: translateY(-2px); }

/* Cart */
.cart-btn { position: relative; background: var(--black-3); border: 1px solid var(--border); color: var(--white); padding: 0.55rem 1rem; border-radius: 4px; font-size: 1rem; cursor: pointer; transition: border-color 0.2s; }
.cart-btn:hover { border-color: var(--border-g); }
.cart-count { position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; border-radius: 50%; background: var(--green); color: var(--black); font-size: 0.6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; transition: transform 0.2s; }

/* ── SECTIONS ── */
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.7rem; font-family: 'Space Mono', monospace; }
.section-label::before { content: '//'; color: var(--green); opacity: 0.6; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--white); }
.section-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.9; max-width: 520px; margin-top: 1rem; }

/* ── PAGE HERO ── */
.page-hero { padding: 120px 2.5rem 60px; background: var(--black); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(46,160,67,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(46,160,67,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.page-comment { font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--green); opacity: 0.55; margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; color: var(--white); }
.page-hero h1 span { color: var(--green); }

/* ── CONTAINER ── */
.container { max-width: 1400px; margin: 0 auto; }
section { padding: 80px 2.5rem; }

/* ── FOOTER ── */
footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 70px 2.5rem 40px; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 60px; }
.footer-brand > a { display: inline-flex; margin-bottom: 1.2rem; }
.footer-brand > p { font-size: 0.8rem; color: var(--muted); line-height: 1.9; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.85rem; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { border-color: var(--border-g); color: var(--green); }
.footer-col h4 { font-family: 'Space Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 1.4rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { text-decoration: none; font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; color: var(--muted); font-family: 'Space Mono', monospace; }
.footer-bottom p span { color: var(--green); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { font-size: 0.72rem; color: var(--muted); text-decoration: none; transition: color 0.2s; font-family: 'Space Mono', monospace; }
.footer-bottom-links a:hover { color: var(--green); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--black-3); color: var(--white); border: 1px solid var(--border-g); padding: 0.75rem 1.4rem; border-radius: 4px; font-family: 'Space Mono', monospace; font-size: 0.72rem; z-index: 200; transition: transform 0.3s ease; pointer-events: none; white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; width: 40px; height: 40px; background: var(--green); color: var(--black); border: none; border-radius: 4px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: all 0.3s; font-family: 'Space Mono', monospace; }
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--green-2); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 0.85rem 1.1rem;
    background: var(--black-3); color: var(--white);
    border: 1px solid var(--border); border-radius: 4px;
    font-family: 'DM Mono', monospace; font-size: 0.85rem;
    outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--border-g); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right { display: flex; gap: 0.5rem; }
    /* On mobile, login btn and user menu are shown in the mobile menu instead */
    .nav-login-btn { display: none; }
    .nav-user-menu { display: none !important; }
    .nav-admin-link { display: none !important; }
    .mobile-toggle { display: block; }
    section { padding: 60px 1.5rem; }
    .page-hero { padding: 100px 1.5rem 50px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── NEWSLETTER (footer) ── */
.footer-newsletter {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
}
.nl-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: var(--green);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}
.nl-copy h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}
.nl-sub {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.7;
}
.nl-form { width: 100%; }
.nl-row {
    display: flex;
    gap: 0.6rem;
}
.nl-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: var(--black-3);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--border-g); }
.nl-input::placeholder { color: var(--muted); }
.nl-btn {
    padding: 0.8rem 1.4rem;
    background: var(--green);
    color: var(--black);
    border: none;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.nl-btn:hover:not(:disabled) { background: var(--green-2); transform: translateY(-2px); }
.nl-btn:disabled { opacity: 0.7; cursor: default; transform: none; }
.nl-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    margin-top: 0.65rem;
    display: none;
}

@media (max-width: 768px) {
    .nl-inner { grid-template-columns: 1fr; gap: 2rem; }
    .nl-row { flex-direction: column; }
    .nl-btn { width: 100%; text-align: center; }
}

/* ── CART ITEM ICON / ILLUSTRATION ── */
.ci-icon { width:52px; height:52px; background:var(--black-3); border:1px solid var(--border); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; flex-shrink:0; }
.ci-illus { width:52px; height:52px; background:var(--black-3); border:1px solid var(--border); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; }
.ci-illus svg { width:38px; height:38px; }

/* ═══════════════════════════════════════
   MOLVRIX — Enhancement Fixes
   Animations · Accessibility · Motion
═══════════════════════════════════════ */

/* ── Focus visible (keyboard accessibility) ── */
:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

/* ── Mobile menu smooth slide ── */
.mobile-menu {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    pointer-events: none;
}
.mobile-menu.open {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
}

/* ── Stagger delays for grid fade-ups ── */
.fade-up:nth-child(1)  { transition-delay: 0s; }
.fade-up:nth-child(2)  { transition-delay: 0.07s; }
.fade-up:nth-child(3)  { transition-delay: 0.14s; }
.fade-up:nth-child(4)  { transition-delay: 0.21s; }
.fade-up:nth-child(5)  { transition-delay: 0.28s; }
.fade-up:nth-child(6)  { transition-delay: 0.35s; }

/* ── Skeleton shimmer loading cards ── */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}
.skeleton {
    background: linear-gradient(90deg,
        var(--black-3) 25%,
        var(--black-4) 50%,
        var(--black-3) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.6s ease-in-out infinite;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.skeleton-card {
    height: 280px;
    border-radius: 10px;
}
.skeleton-title { height: 1rem; width: 60%; margin-bottom: 0.75rem; }
.skeleton-text  { height: 0.75rem; width: 90%; margin-bottom: 0.5rem; }
.skeleton-text-sm { height: 0.75rem; width: 70%; }

/* ── Products/Blog loading grid ── */
.products-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.blog-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .products-skeleton-grid,
    .blog-skeleton-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .products-skeleton-grid,
    .blog-skeleton-grid { grid-template-columns: 1fr; }
}

/* ── Animated counter (trust numbers) ── */
.trust-num[data-target] {
    transition: opacity 0.3s;
}

/* ── Hero section entry animation ── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-comment    { animation: fadeSlideUp 0.5s ease 0.1s both; }
.hero-eyebrow    { animation: fadeSlideUp 0.5s ease 0.2s both; }
.hero h1         { animation: fadeSlideUp 0.6s ease 0.3s both; }
.hero-sub        { animation: fadeSlideUp 0.5s ease 0.45s both; }
.hero-actions    { animation: fadeSlideUp 0.5s ease 0.58s both; }
.hero-trust      { animation: fadeSlideUp 0.5s ease 0.70s both; }

/* ── Cart count pulse on add ── */
@keyframes cartPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}
.cart-count.pulse { animation: cartPulse 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97); }

/* ── Prefers reduced motion: disable everything ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up { opacity: 1 !important; transform: none !important; }
    .skeleton { animation: none !important; background: var(--black-3) !important; }
    .hero-comment, .hero-eyebrow, .hero h1,
    .hero-sub, .hero-actions, .hero-trust {
        animation: none !important; opacity: 1 !important; transform: none !important;
    }
}

@keyframes iconSpin { to { transform: rotate(360deg); } }

.testi-stars { display:flex; gap:2px; align-items:center; margin-bottom:1rem; }

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
}
.mobile-toggle svg { width: 20px; height: 20px; }
.nav-cart-icon { display:inline-flex; align-items:center; }

/* ══════════════════════════════════════════════════
   MOBILE OPTIMISATION — Full responsive overhaul
   Fixes layout, overflow, font sizes, tap targets
   ══════════════════════════════════════════════════ */

/* ── Universal mobile base ── */
@media (max-width: 768px) {
    html { font-size: 15px; }
    body { overflow-x: hidden; }

    /* Containers */
    .container { padding: 0 1.25rem; }
    .content-wrapper { padding: 0 1.25rem; }

    /* Typography scale down */
    .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
    .section-desc  { font-size: 0.85rem; }

    /* Page hero */
    .page-hero { padding: 90px 1.25rem 40px !important; }
    .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
    .page-hero-inner { flex-direction: column; gap: 1.5rem; }
    .page-hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }

    /* Nav right — keep cart visible on mobile */
    .nav-right { gap: 0.5rem; }
    .cart-btn  { padding: 0.4rem 0.6rem; }

    /* Sections */
    section { padding: 50px 1.25rem !important; }

    /* Grids → single column */
    .overview-grid,
    .bundles-grid,
    .testi-grid,
    .why-cards,
    .values-grid,
    .steps-grid,
    .who-grid,
    .ai-settings-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }

    .why-layout,
    .includes-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

    /* Product cards */
    .prod-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .prod-card { margin-bottom: 0; }

    /* Bundle hero layout */
    .bundle-hero-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .bundle-hero { padding: 90px 1.25rem 50px !important; }

    /* Product detail layout */
    .product-layout { grid-template-columns: 1fr !important; gap: 2rem !important; padding: 1.5rem 1.25rem 60px !important; }
    .product-visual { position: static !important; }
    .purchase-box   { position: static !important; }
    .related-grid   { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }

    /* Cart layout */
    .cart-layout { grid-template-columns: 1fr !important; padding: 30px 1.25rem 60px !important; }

    /* Hero section */
    .hero { padding: 120px 1.25rem 60px !important; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-trust { gap: 1.5rem; }

    /* Bundles compare table */
    .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compare-table { min-width: 400px; }

    /* Blog */
    .featured-post { grid-template-columns: 1fr !important; }
    .featured-body { padding: 1.5rem !important; }
    .posts-grid { grid-template-columns: 1fr !important; }

    /* Footer newsletter */
    .nl-inner { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .nl-form .nl-row { flex-direction: column; gap: 0.5rem; }
    .nl-input, .nl-btn { width: 100%; border-radius: 4px !important; }

    /* Buttons — bigger tap targets */
    .btn, .btn-green-lg, .btn-outline-lg {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.78rem !important;
        min-height: 44px;
    }

    /* FAQ */
    .faq-inner, .faq-inner * { max-width: 100%; }

    /* Admin panel */
    .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
    .ai-layout  { grid-template-columns: 1fr !important; }

    /* Account page */
    .account-layout { padding: 40px 1.25rem 60px !important; }
    .dl-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .dl-card .btn-download { width: 100%; text-align: center; }

    /* Affiliates / Contact */
    .form-grid { grid-template-columns: 1fr !important; }
    .form-full  { grid-column: 1 !important; }

    /* Login */
    .login-wrap { padding: 4rem 1.25rem 2rem; }
    .login-box  { padding: 2rem 1.5rem; }

    /* Thank you */
    .ty-actions { flex-direction: column; gap: 0.75rem; }
    .ty-actions .btn { width: 100%; text-align: center; }
    .ty-box h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

    /* Sort bar */
    .sort-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .sort-select { width: 100%; }

    /* Search bar */
    .search-bar { padding: 0.75rem 1.25rem; }

    /* Breadcrumb */
    .breadcrumb { padding: 70px 1.25rem 0 !important; font-size: 0.58rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.9rem, 9vw, 2.5rem) !important; }
    .bundles-hero h1 { font-size: clamp(1.9rem, 9vw, 2.8rem) !important; }
    .bundle-price, .hero-price { font-size: 2.4rem !important; }
    .price-main { font-size: 2.2rem !important; }
    .related-grid { grid-template-columns: 1fr !important; }
    .overview-tile { padding: 1.2rem !important; }
    .why-card, .value-card, .step-card { padding: 1.2rem !important; }
    .stats-grid { grid-template-columns: 1fr 1fr !important; }
    .stat-value { font-size: 1.5rem !important; }
    .page-hero-meta .meta-num { font-size: 1.4rem !important; }
}