:root {
      --accent-warm: #eadfd2;
      --accent-warm-2: #d8ccc0;
      --accent-sage: #dfe9df;
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-green: #e8f7ea;
      --text: #213327;
      --muted: #555;
      --line: rgba(17,17,17,0.08);
      --primary: #3fae49;
      --primary-hover: #2f8a3a;
      --container: 1240px;
      --radius: 14px;
      --shadow: 0 4px 20px rgba(17,17,17,0.06);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
    .topbar { background: rgba(255,255,255,0.9); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); }
    .topbar-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
    .logo-placeholder { width: 150px; height: 48px; border: 2px dashed rgba(63,174,73,0.35); border-radius: 12px; background: rgba(63,174,73,0.04); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.78rem; font-weight: 600; flex-shrink: 0; }
    .top-nav { display: flex; align-items: center; gap: 22px; font-size: 0.92rem; font-weight: 600; color: #1f2e22; margin-left: 8px; flex: 1; }
    .top-nav a { transition: color 0.18s; }
    .top-nav a:hover, .top-nav a.active { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
    .search { display: flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; min-width: 220px; color: var(--muted); margin-left: 32px; margin-right: 8px; font-size: 0.95rem; cursor: text; }
    .search::before { content: "⌕"; font-size: 1.3rem; line-height: 1; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 22px; border-radius: 10px; border: 1px solid transparent; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 0.95rem; transition: transform 0.18s, background-color 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s; }
    .btn-primary { background: var(--primary); color: white; }
    .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(63,174,73,0.18); }
    .btn-danger { background: #e54848; color: white; }
    .btn-danger:hover { background: #c93d3d; transform: translateY(-1px); }
    .btn-secondary { background: white; border-color: var(--line); color: var(--text); }
    .btn-secondary:hover { border-color: #d7ccbf; background: #f7f1eb; transform: translateY(-1px); }
    .category-row { border-top: 1px solid var(--line); background: rgba(63,174,73,0.16); padding: 4px 0; }
    .main-nav-row { display: flex; align-items: center; padding: 6px 0; }
    .main-categories { display: flex; align-items: center; font-weight: 700; }
    .main-categories a { white-space: nowrap; font-size: 1rem; color: #2f3a31; transition: color 0.18s; }
    .main-categories a + a { position: relative; margin-left: 26px; padding-left: 26px; }
    .main-categories a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 18px; background: rgba(47,58,49,0.2); }
    .main-categories a:hover { color: var(--primary); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; margin-left: auto; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: flex; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: white; box-shadow: -4px 0 24px rgba(0,0,0,0.12); z-index: 200; padding: 80px 28px 32px; flex-direction: column; gap: 8px; transform: translateX(100%); transition: transform 0.3s; visibility: hidden; }
    .mobile-nav.open { transform: translateX(0); visibility: visible; }
    .mobile-nav a { font-size: 1.05rem; font-weight: 700; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--line); display: block; }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: var(--primary); }
    .mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text); line-height: 1; padding: 4px; }
    .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 199; }
    .mobile-nav-overlay.open { display: block; }

    main { padding: 0 0 80px; }
    .breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--muted); padding: 20px 0 0; flex-wrap: wrap; }
    .breadcrumb a { color: var(--muted); transition: color 0.15s; }
    .breadcrumb a:hover { color: var(--primary); }
    .breadcrumb .sep { color: #595959; }
    .section-head { margin-bottom: 22px; }
    .section-head h2 { margin: 0 0 4px; font-size: 1.3rem; font-weight: 800; }
    .section-head p { margin: 0; font-size: 0.93rem; color: var(--muted); }

    /* PAGE HEADER */
    .page-header { padding: 28px 0 36px; display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: center; }
    .page-header-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-green); border: 1px solid rgba(63,174,73,0.2); border-radius: 999px; padding: 5px 14px; font-size: 0.8rem; font-weight: 700; color: #1a6125; margin-bottom: 14px; }
    .page-header h1 { margin: 0 0 12px; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.08; font-weight: 800; }
    .page-header-perex { margin: 0 0 24px; font-size: 1.05rem; color: var(--muted); line-height: 1.65; }
    .page-header-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* Rychlý výběr navigace */
    .quick-nav { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
    .quick-nav-title { font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
    .quick-nav-links { display: flex; flex-direction: column; gap: 2px; }
    .quick-nav-link { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; color: var(--text); transition: background 0.15s; text-decoration: none; }
    .quick-nav-link:hover { background: var(--surface-green); color: var(--primary); }
    .quick-nav-link-num { width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: white; font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* #1 FEATURED BESTSELLER */
    .featured-card { background: linear-gradient(135deg, #213327 0%, #2f5c38 100%); border-radius: var(--radius); padding: 40px 44px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-bottom: 56px; position: relative; overflow: hidden; }
    .featured-card::before { content: "#1"; position: absolute; right: 44px; top: -20px; font-size: 8rem; font-weight: 800; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
    .featured-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); border-radius: 999px; padding: 5px 14px; font-size: 0.78rem; font-weight: 800; color: white; margin-bottom: 14px; }
    .featured-card h2 { margin: 0 0 10px; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: white; line-height: 1.1; }
    .featured-card-perex { margin: 0 0 18px; color: rgba(255,255,255,0.72); font-size: 0.97rem; line-height: 1.65; }
    .featured-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
    .featured-spec { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 5px 12px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
    .featured-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-white { background: white; color: var(--text); border-color: white; }
    .btn-white:hover { background: #f0f7f0; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
    .btn-ghost-white { background: transparent; border-color: rgba(255,255,255,0.78); color: white; }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
    .featured-visual { width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 5rem; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.12); }

    /* KATEGORIOVÉ SEKCE */
    .cat-section { margin-bottom: 52px; }
    .cat-section-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--primary); }
    .cat-section-title { font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
    .cat-section-count { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
    .cat-section-link { font-size: 0.88rem; font-weight: 700; color: var(--primary); transition: gap 0.18s; display: inline-flex; align-items: center; gap: 4px; }
    .cat-section-link:hover { gap: 8px; }
    .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

    /* PRODUKTOVÉ KARTY */
    .prod-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.22s, box-shadow 0.22s; }
    .prod-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(17,17,17,0.1); }
    .prod-media { aspect-ratio: 1; background: linear-gradient(135deg, var(--accent-sage), #c8dcc8); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
    .prod-rank { position: absolute; top: 12px; left: 12px; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: white; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
    .prod-badge { position: absolute; top: 12px; right: 12px; background: var(--primary); color: white; font-size: 0.7rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; }
    .prod-badge.new { background: #d97706; }
    .prod-body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
    .prod-cat { font-size: 0.72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
    .prod-name { font-size: 1rem; font-weight: 800; line-height: 1.25; margin: 0; }
    .prod-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.6; flex: 1; margin: 0; }
    .prod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
    .prod-tag { font-size: 0.73rem; font-weight: 600; color: var(--text); background: var(--accent-sage); border-radius: 999px; padding: 2px 8px; }
    .prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
    .prod-price { font-size: 1rem; font-weight: 800; color: var(--text); }
    .prod-price-reg { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 1px; }
    .prod-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 0.84rem; font-weight: 700; color: var(--primary); border: 1px solid rgba(63,174,73,0.3); border-radius: 8px; padding: 7px 12px; transition: background 0.18s, transform 0.18s; white-space: nowrap; }
    .prod-cta:hover { background: var(--surface-green); transform: translateY(-1px); }

    /* PROČ JSOU OBLÍBENÉ — editoriální sekce */
    .editorial { background: var(--accent-sage); border-radius: var(--radius); padding: 32px 36px; margin-bottom: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .editorial h2 { margin: 0 0 12px; font-size: 1.2rem; font-weight: 800; }
    .editorial p { margin: 0 0 10px; font-size: 0.93rem; color: var(--text); line-height: 1.65; }
    .editorial p:last-child { margin-bottom: 0; }

    /* SROVNÁVACÍ TABULKA GELŮ */
    .compare-section { margin-bottom: 52px; }
    .compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
    .compare-table thead tr { background: #213327; }
    .compare-table thead th { padding: 14px 18px; text-align: left; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }
    .compare-table tbody tr { border-bottom: 1px solid var(--line); background: white; transition: background 0.15s; }
    .compare-table tbody tr:hover { background: #f8fdf8; }
    .compare-table tbody tr:last-child { border-bottom: none; }
    .compare-table tbody td { padding: 14px 18px; font-size: 0.9rem; color: var(--text); }
    .compare-table tbody td:first-child { font-weight: 700; }
    .ct-check { color: var(--primary); font-weight: 800; }
    .ct-x { color: #ccc; }

    /* FAQ */
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 52px; }
    .faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
    .faq-item h3 { margin: 0 0 6px; font-size: 0.97rem; font-weight: 700; line-height: 1.35; }
    .faq-item p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

    /* CTA SLEVA */
    .sleva-cta { background: var(--surface-green); border: 1px solid rgba(63,174,73,0.2); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 52px; }
    .sleva-cta-copy h2 { margin: 0 0 5px; font-size: 1.15rem; font-weight: 800; }
    .sleva-cta-copy p { margin: 0; font-size: 0.93rem; color: var(--muted); }
    .sleva-cta-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: var(--primary); color: white; flex-shrink: 0; }
    .sleva-cta-badge-num { font-size: 1.5rem; font-weight: 800; line-height: 1; }
    .sleva-cta-badge-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
    .sleva-cta-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }

    footer { background: #cdbba6; color: #2c241d; margin-top: 60px; padding: 54px 0 36px; }
    .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr; gap: 30px; }
    .footer-title { font-size: 1rem; font-weight: 800; margin: 0 0 16px; color: #2c241d; text-align: center; }
    .footer-list { display: grid; gap: 10px; text-align: center; }
    .footer-list a { font-size: 0.93rem; transition: color 0.18s; }
    .footer-list a:hover { color: #1f2e22; }
    .footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(44,36,29,0.15); color: #2c241d; font-size: 0.9rem; text-align: center; }

    @media (min-width: 769px) and (max-width: 1024px) {
      .search { min-width: 120px; }
      .page-header { grid-template-columns: 1fr; gap: 24px; }
      .quick-nav { display: none; }
      .products-grid { grid-template-columns: repeat(3, 1fr); }
      .editorial { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .top-nav { display: none; }
      .hamburger { display: flex; }
      .search { min-width: 0; width: 150px; margin-left: 12px; margin-right: 0; }
      .category-row { overflow-x: auto; scrollbar-width: none; }
      .category-row::-webkit-scrollbar { display: none; }
      .page-header { grid-template-columns: 1fr; gap: 20px; }
      .quick-nav { display: none; }
      .featured-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
      .featured-visual { width: 120px; height: 120px; font-size: 3.5rem; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .editorial { grid-template-columns: 1fr; padding: 24px 22px; }
      .compare-table { font-size: 0.82rem; }
      .compare-table thead th, .compare-table tbody td { padding: 10px 12px; }
      .faq-grid { grid-template-columns: 1fr; }
      .sleva-cta { flex-direction: column; align-items: flex-start; }
      .sleva-cta-actions { flex-direction: row; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }
    @media (max-width: 480px) {
      .search { display: none; }
      .container { width: calc(100% - 24px); }
      .featured-card { padding: 22px 18px; }
      .featured-card::before { display: none; }
      .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .prod-body { padding: 14px; }
      .prod-name { font-size: 0.92rem; }
      .prod-desc { display: none; }
      .compare-section { overflow-x: auto; }
      .faq-grid { grid-template-columns: 1fr; gap: 10px; }
      .footer-grid { grid-template-columns: 1fr; }
      main { padding: 0 0 56px; }
    }
  
.product-media,.prod-media{position:relative;overflow:hidden;}.auto-hero{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}.product-media>*:not(.auto-hero),.prod-media>*:not(.auto-hero){position:relative;z-index:1;}
