/* ============================================
   ZenLiefert - Clean White CMS Design
   ============================================ */

/* GTM/Analytics managed via JS injection - see app.js */
/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a { color: #16a34a; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ============================================
   FIXED HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0f0f0;
    height: 64px;
    display: flex;
    align-items: center;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.logo {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo:hover { text-decoration: none; }
nav { display: flex; gap: 4px; }
nav a {
    padding: 8px 14px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.15s;
}
nav a:hover { color: #1a1a1a; background: #f5f5f5; text-decoration: none; }
nav a.active { color: #16a34a; background: rgba(22,163,74,0.06); }
/* Nav Dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger {
    cursor: pointer;
    padding: 8px 14px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.15s;
    user-select: none;
}
.nav-dd-trigger:hover { color: #1a1a1a; background: #f5f5f5; text-decoration: none; }
.nav-dd-trigger::after { content: ' \25BE'; font-size: 10px; opacity: 0.5; }
.nav-dd-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 6px;
    min-width: 210px;
    z-index: 200;
}
.nav-dropdown:hover .nav-dd-menu { display: block; }
.nav-dd-menu a {
    display: block !important;
    padding: 8px 14px !important;
    color: #555 !important;
    font-size: 13px !important;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
}
.nav-dd-menu a:hover { color: #16a34a !important; background: rgba(22,163,74,0.05); text-decoration: none; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #555;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 99;
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 14px 16px;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
}
.mobile-nav a:hover, .mobile-nav a.active { color: #16a34a; background: rgba(22,163,74,0.06); text-decoration: none; }

/* ============================================
   CONTENT AREA
   ============================================ */
.site-content {
    flex: 1;
    padding-top: 64px; /* header height */
}

/* Hero - Homepage */
.video-hero {
    position: relative;
    width: 100%;
    height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-hero video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 660px;
}
.badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 24px;
}
.section .badge {
    background: rgba(22,163,74,0.07);
    border: 1px solid rgba(22,163,74,0.15);
    color: #16a34a;
}
.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}
.hero-content h1 .green { color: #fff; }
.hero-content > p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 460px;
    margin: 0 auto 40px;
}
.scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-align: center;
}
.scroll-hint svg { display: block; margin: 4px auto 0; }
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Page Hero (Subpages) */
.page-hero {
    padding: 32px 0 24px;
    border-bottom: 1px solid #f0f0f0;
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 16px;
    color: #777;
    max-width: 560px;
}

/* ============================================
   TRACKER
   ============================================ */
.tracker {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.tracker-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.tracker select,
.tracker input {
    padding: 12px 14px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.tracker select {
    flex: 0 0 140px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.tracker input { flex: 1; }
.tracker select:focus, .tracker input:focus { border-color: #16a34a; }
.tracker input::placeholder { color: #bbb; }
.tracker button {
    width: 100%;
    padding: 13px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.tracker button:hover { background: #15803d; }
.tracker-hint {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 40px 0; }
.section + .section { border-top: 1px solid #f5f5f5; }
.section-label {
    font-size: 12px;
    color: #16a34a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}
.section h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a0a0a;
}
.section > .container > p.section-desc {
    color: #888;
    font-size: 15px;
    max-width: 520px;
    margin-bottom: 40px;
}

/* ============================================
   CARRIER GRID (Homepage)
   ============================================ */
.carrier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.carrier-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: block;
    color: inherit;
}
.carrier-card:hover {
    border-color: #ddd;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    text-decoration: none;
}
.carrier-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0a0a0a;
}
.carrier-card .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-dhl { background: #ffcc00; }
.dot-ups { background: #351c15; }
.dot-dpd { background: #dc0032; }
.dot-gls { background: #0069b4; }
.dot-hermes { background: #009ee3; }
.dot-go { background: #ff6600; }
.carrier-card .meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #888;
}
.carrier-card .meta strong { color: #555; }
.carrier-card .card-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}

/* ============================================
   CARRIER DETAIL PAGE
   ============================================ */
.carrier-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.carrier-logo-box {
    width: 72px; height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.carrier-header-info h1 { margin-bottom: 4px; }
.carrier-header-info p { color: #888; font-size: 14px; }

/* Price Table */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 32px;
}
.table-scroll .price-table { margin-bottom: 0; }

/* Tooltips */
.tooltip { position: relative; cursor: help; border-bottom: 1px dashed #16a34a; }
.tooltip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    max-width: 240px;
    white-space: normal;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 300;
}
.tooltip:hover::after { opacity: 1; }

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 20px;
    counter-reset: steps;
}
.step-box {
    background: #f9fafb;
    border: 1px solid #e8f5e9;
    border-radius: 10px;
    padding: 16px;
    counter-increment: steps;
    position: relative;
    padding-top: 40px;
}
.step-box::before {
    content: counter(steps);
    position: absolute;
    top: 14px;
    left: 16px;
    width: 24px;
    height: 24px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-box p { font-size: 14px; color: #555; line-height: 1.6; }
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}
.price-table th {
    text-align: left;
    padding: 12px 16px;
    background: #fafafa;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}
.price-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
}
.price-table tr:hover td { background: #fafafa; }
.price-highlight {
    font-weight: 600;
    color: #16a34a;
}

/* Info Boxes */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}
.info-box {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
}
.info-box-label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
}
.info-box-value {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
}
.info-box-note {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* External Links */
.ext-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.ext-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    transition: all 0.15s;
}
.ext-link:hover { border-color: #16a34a; color: #16a34a; text-decoration: none; }

/* ============================================
   CARRIER SLIDER (Alternatives)
   ============================================ */
.carrier-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px;
    scrollbar-width: none;
}
.carrier-slider::-webkit-scrollbar { display: none; }
.carrier-slide {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    display: block;
    color: inherit;
    transition: border-color 0.15s;
}
.carrier-slide:hover { border-color: #ddd; text-decoration: none; }
.carrier-slide h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0a0a0a;
}
.carrier-slide p { font-size: 13px; color: #888; }
.carrier-slide .slide-price {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calc-wrapper {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
}
.quiz { max-width: 620px; margin: 0 auto; }
.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.calc-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.calc-field input,
.calc-field select {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.15s;
}
.calc-field input:focus, .calc-field select:focus { border-color: #16a34a; }
.calc-btn {
    width: 100%;
    padding: 14px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
}
.calc-btn:hover { background: #15803d; }
.calc-results {
    margin-top: 24px;
    display: none;
}
.calc-results.show { display: block; }
.calc-result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: border-color 0.15s;
}
.calc-result-card:hover { border-color: #16a34a; }
.calc-result-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calc-result-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.calc-result-name { font-weight: 600; font-size: 15px; }
.calc-result-info { font-size: 12px; color: #888; }
.calc-result-price {
    font-size: 18px;
    font-weight: 700;
    color: #16a34a;
}
.calc-result-price small {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}
.cheapest { border-color: #16a34a; background: rgba(22,163,74,0.02); }

/* ============================================
   VIDEO SHOWCASE
   ============================================ */
.video-showcase video {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}
.faq-q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: #1a1a1a;
}
.faq-q::after {
    content: '+';
    font-size: 18px;
    color: #ccc;
    transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: #16a34a; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 20px 16px; color: #777; font-size: 14px; line-height: 1.7; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section { text-align: center; padding: 40px 0; }
.cta-section h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin-bottom: 8px; color: #0a0a0a; }
.cta-section p { color: #888; margin-bottom: 24px; font-size: 15px; }
.btn-primary {
    display: inline-block;
    padding: 13px 30px;
    background: #16a34a;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s;
}
.btn-primary:hover { background: #15803d; text-decoration: none; }
.btn-outline {
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid #e5e5e5;
    color: #555;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.15s;
}
.btn-outline:hover { border-color: #16a34a; color: #16a34a; text-decoration: none; }
.btn-primary, .btn-outline { margin: 6px 4px; }

/* ============================================
   CANNAZEN AD BANNER
   ============================================ */
.cz-ad-banner {
    margin: 0 0 8px;
}
.cz-ad-inner {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    background: #0a1f0e;
    min-height: 160px;
    position: relative;
}
.cz-ad-text {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: 1;
}
.cz-ad-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4ade80;
}
.cz-ad-text h3 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}
.cz-ad-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.5;
}
.cz-ad-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding: 10px 22px;
    background: #16a34a;
    color: #fff !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    align-self: flex-start;
    transition: background 0.15s;
}
.cz-ad-cta:hover { background: #15803d; text-decoration: none !important; }
.cz-ad-img {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
}
.cz-ad-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
/* Bold full-image variant */
.cz-ad-bold {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 120px;
}
.cz-ad-bold img {
    width: 100%;
    display: block;
    border-radius: 16px;
}
@media (max-width: 640px) {
    .cz-ad-inner { flex-direction: column; }
    .cz-ad-img { flex: 0 0 180px; width: 100%; height: 180px; }
    .cz-ad-text { padding: 20px 20px; }
}

/* ============================================
   FIXED FOOTER
   ============================================ */
.site-footer {
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    padding: 32px 0 16px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 10px; color: #000; }
.footer-brand p { font-size: 13px; color: #888; max-width: 260px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: #666;
    padding: 3px 0;
}
.footer-col a:hover { color: #16a34a; }

/* ============================================
   FIXED SOCKET
   ============================================ */
.site-socket {
    background: #f5f5f5;
    border-top: 1px solid #eee;
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: #bbb;
}
.site-socket a { color: #999; }

/* ============================================
   RESPONSIVE
   ============================================ */
html, body { overflow-x: hidden; }
@media (max-width: 768px) {
    nav { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .calc-row { grid-template-columns: 1fr; }
    .tracker-row { flex-direction: column; }
    .tracker select { flex: none; }
    .carrier-header { flex-direction: column; text-align: center; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .image-section-grid { grid-template-columns: 1fr !important; }
    .image-section-images { flex-direction: column !important; }
    .image-section-images img { height: 200px !important; width: 100% !important; }
    .price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
}

/* ============================================
   STICKY TRACKER BAR
   ============================================ */
.sticky-tracker {
    position: fixed;
    bottom: -80px;
    left: 0; right: 0;
    z-index: 90;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid #eee;
    padding: 12px 0;
    transition: bottom 0.3s ease;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.sticky-tracker.show { bottom: 0; }
.sticky-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.sticky-inner select {
    padding: 10px 12px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    appearance: none;
    cursor: pointer;
    flex: 0 0 120px;
}
.sticky-inner input {
    flex: 1;
    padding: 10px 12px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
}
.sticky-inner input:focus { border-color: #16a34a; }
.sticky-inner input::placeholder { color: #bbb; }
.sticky-inner button {
    padding: 10px 20px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.sticky-inner button:hover { background: #15803d; }
.sticky-counter {
    font-size: 11px;
    color: #bbb;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .sticky-inner { padding: 0 16px; gap: 6px; }
    .sticky-inner select { flex: 0 0 68px; font-size: 12px; padding: 8px 4px; }
    .sticky-inner input { font-size: 13px; padding: 8px 10px; }
    .sticky-inner button { padding: 8px 14px; font-size: 13px; }
    .sticky-counter { display: none; }
    .sticky-tracker { padding: 8px 0; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: #666;
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: #16a34a; }
.cookie-banner button {
    padding: 8px 20px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.cookie-banner button:hover { background: #15803d; }
@media (max-width: 640px) {
    .cookie-banner { flex-direction: column; text-align: center; gap: 10px; padding: 12px 16px; }
    .cookie-banner span { font-size: 12px; line-height: 1.4; }
}
