/* ================================================================
   mybees.cz — Design System v2
   Honey amber theme · Poppins · Mobile-first
================================================================ */

:root {
    --honey-dark:    #8b4a00;
    --honey-main:    #d4820a;
    --honey-light:   #f5a623;
    --honey-pale:    #fff8ee;
    --honey-cream:   #fef3dc;
    --honey-border:  #e8cc99;
    --forest-green:  #3d6b47;
    --forest-light:  #5a9466;
    --green-ok:      #51be78;
    --text-dark:     #2a2a2a;
    --text-body:     #555;
    --text-muted:    #999;
    --shadow-sm:     0 2px 10px rgba(0,0,0,.07);
    --shadow-md:     0 6px 24px rgba(0,0,0,.1);
    --shadow-honey:  0 6px 24px rgba(212,130,10,.18);
    --radius-sm:     10px;
    --radius-md:     14px;
    --radius-lg:     20px;
    --hex-bg:        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='208' height='180'%3E%3Cg fill='none' stroke='%23d4820a' stroke-width='1.5' stroke-opacity='0.09'%3E%3Cpath d='M52,0 L104,30 L104,90 L52,120 L0,90 L0,30 Z'/%3E%3Cpath d='M156,0 L208,30 L208,90 L156,120 L104,90 L104,30 Z'/%3E%3Cpath d='M104,90 L156,120 L156,180 L104,210 L52,180 L52,120 Z'/%3E%3Cpath d='M0,90 L52,120 L52,180 L0,210 L-52,180 L-52,120 Z'/%3E%3Cpath d='M208,90 L260,120 L260,180 L208,210 L156,180 L156,120 Z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

html, body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { color: var(--text-dark); line-height: 1.25; }


/* ================================================================
   NAVBAR
================================================================ */
.nav-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
}

.nav-logo img { height: 42px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    padding: 8px 15px;
    font-size: .84rem;
    font-weight: 600;
    color: #555;
    border-radius: 8px;
    transition: color .2s, background .2s;
}
.nav-links a:hover  { color: var(--honey-main); background: var(--honey-pale); }
.nav-links a.active { color: var(--honey-main); background: var(--honey-pale); }

.nav-links .nav-live {
    color: var(--forest-green);
    border: 1px solid #c3e9d2;
    background: #f0faf4;
}
.nav-links .nav-live:hover { background: #e0f4ea; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #555;
    padding: 4px;
    line-height: 1;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 10px 20px 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    padding: 11px 0;
    font-size: .9rem;
    font-weight: 600;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--honey-main); }

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .nav-toggle { display: block; }
}


/* ================================================================
   HOME HERO
================================================================ */
.home-hero {
    background: linear-gradient(150deg, #5c2e00 0%, var(--honey-dark) 30%, var(--honey-main) 70%, var(--honey-light) 100%);
    color: #fff;
    padding: 80px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138.6' height='120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-opacity='0.12'%3E%3Cpath d='M34.6,0 L69.3,20 L69.3,60 L34.6,80 L0,60 L0,20 Z'/%3E%3Cpath d='M103.9,0 L138.6,20 L138.6,60 L103.9,80 L69.3,60 L69.3,20 Z'/%3E%3Cpath d='M69.3,60 L103.9,80 L103.9,120 L69.3,140 L34.6,120 L34.6,80 Z'/%3E%3Cpath d='M0,60 L34.6,80 L34.6,120 L0,140 L-34.6,120 L-34.6,80 Z'/%3E%3Cpath d='M138.6,60 L173.2,80 L173.2,120 L138.6,140 L103.9,120 L103.9,80 Z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.home-hero-inner { position: relative; max-width: 700px; margin: 0 auto; }

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    margin-bottom: 20px;
    letter-spacing: .04em;
}

.home-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}
.home-hero h1 .accent { color: rgba(255,255,255,.75); }

.home-hero .hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}
.hero-badges span {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 14px;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 13px;
}

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--honey-dark);
    border-radius: var(--radius-md);
    font-size: .92rem;
    font-weight: 700;
    padding: 13px 26px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.btn-hero:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.25); color: var(--honey-dark); }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: var(--radius-md);
    font-size: .92rem;
    font-weight: 700;
    padding: 12px 25px;
    transition: background .2s, border-color .2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }


/* ================================================================
   PAGE HEADER (inner pages)
================================================================ */
.page-header {
    background: linear-gradient(135deg, var(--honey-dark) 0%, var(--honey-main) 65%, var(--honey-light) 100%);
    padding: 48px 24px 38px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138.6' height='120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-opacity='0.12'%3E%3Cpath d='M34.6,0 L69.3,20 L69.3,60 L34.6,80 L0,60 L0,20 Z'/%3E%3Cpath d='M103.9,0 L138.6,20 L138.6,60 L103.9,80 L69.3,60 L69.3,20 Z'/%3E%3Cpath d='M69.3,60 L103.9,80 L103.9,120 L69.3,140 L34.6,120 L34.6,80 Z'/%3E%3Cpath d='M0,60 L34.6,80 L34.6,120 L0,140 L-34.6,120 L-34.6,80 Z'/%3E%3Cpath d='M138.6,60 L173.2,80 L173.2,120 L138.6,140 L103.9,120 L103.9,80 Z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-header-inner { position: relative; max-width: 1170px; margin: 0 auto; }
.page-header h1 { color: #fff; font-size: 1.9rem; font-weight: 700; margin-bottom: 10px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.85); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .7rem; }


/* ================================================================
   SECTIONS
================================================================ */
.section          { padding: 64px 0; }
.section-sm       { padding: 40px 0; }
.section-cream    { background: var(--honey-pale); }
.section-white    { background: #fff; }
.section-dark     { background: #1a1a1a; }

.section-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header { text-align: center; margin-bottom: 44px; }
.section-header .sh-badge {
    display: inline-block;
    background: var(--honey-cream);
    color: var(--honey-dark);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--honey-dark);
    margin-bottom: 10px;
}
.section-header p {
    font-size: .9rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}


/* ================================================================
   PRODUCT CARDS
================================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--honey-border);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    transition: box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-honey);
    transform: translateY(-3px);
}

.pc-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.pc-badge {
    display: inline-block;
    background: var(--honey-cream);
    color: var(--honey-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.pc-harvest {
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--honey-dark);
    margin-bottom: 6px;
}
.product-card p {
    font-size: .85rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.pc-tag {
    background: var(--honey-pale);
    border: 1px solid var(--honey-border);
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--honey-dark);
    padding: 3px 10px;
}

.pc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--honey-main);
    transition: color .2s;
}
.pc-link:hover { color: var(--honey-dark); }

/* Upcoming / not yet harvested card */
.product-card.card-upcoming {
    background: #fafafa;
    border-style: dashed;
    border-color: #ddd;
    opacity: .8;
}
.product-card.card-upcoming:hover {
    box-shadow: none;
    transform: none;
}
.pc-badge-upcoming {
    background: #f0f0f0;
    color: #999;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pc-link-disabled {
    font-size: .82rem;
    font-weight: 700;
    color: #bbb;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Dark card for honeydew */
.product-card.card-dark {
    background: linear-gradient(135deg, #3b2010 0%, #5c3a1e 100%);
    border-color: #7c4a1e;
}
.product-card.card-dark h3,
.product-card.card-dark p { color: rgba(255,255,255,.9); }
.product-card.card-dark p { color: rgba(255,255,255,.75); }
.product-card.card-dark .pc-badge { background: rgba(255,255,255,.15); color: #fff; }
.product-card.card-dark .pc-harvest { color: rgba(255,255,255,.55); }
.product-card.card-dark .pc-tag { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.85); }
.product-card.card-dark .pc-link { color: var(--honey-light); }
.product-card.card-dark .pc-link:hover { color: #fff; }


/* ================================================================
   QUALITY ITEMS
================================================================ */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.quality-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--honey-cream);
    border-radius: var(--radius-md);
    padding: 18px 16px;
}
.quality-item i {
    font-size: 1.4rem;
    color: var(--honey-main);
    flex-shrink: 0;
    margin-top: 2px;
}
.quality-item strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.quality-item span {
    font-size: .8rem;
    color: var(--text-body);
    line-height: 1.55;
}


/* ================================================================
   BLOG CARDS
================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.blog-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.bc-meta {
    display: flex;
    gap: 14px;
    font-size: .74rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.bc-meta i { margin-right: 3px; }

.blog-card h3 {
    font-size: .96rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card p {
    font-size: .82rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
}
.bc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .81rem;
    font-weight: 700;
    color: var(--honey-main);
}
.bc-link:hover { color: var(--honey-dark); }


/* ================================================================
   STAT CARDS
================================================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}
.stat-card {
    background: var(--honey-cream);
    border-radius: var(--radius-md);
    padding: 22px 16px;
    text-align: center;
}
.stat-card i { font-size: 1.7rem; color: var(--honey-main); display: block; margin-bottom: 10px; }
.stat-val { font-size: 1.6rem; font-weight: 700; color: var(--honey-dark); display: block; margin-bottom: 4px; }
.stat-label { font-size: .72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }


/* ================================================================
   IoT PROMO BLOCK
================================================================ */
.iot-promo {
    background: linear-gradient(135deg, #253f2c 0%, var(--forest-green) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    color: #fff;
}
.iot-promo h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.iot-promo p { font-size: .9rem; color: rgba(255,255,255,.82); max-width: 460px; line-height: 1.6; }

.btn-iot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-ok);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-weight: 700;
    padding: 13px 24px;
    white-space: nowrap;
    transition: opacity .2s;
}
.btn-iot:hover { opacity: .85; color: #fff; }


/* ================================================================
   BUTTONS
================================================================ */
.btn-honey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--honey-main);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    transition: background .2s;
}
.btn-honey:hover { background: var(--honey-dark); color: #fff; }

.btn-outline-honey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--honey-main);
    border: 2px solid var(--honey-main);
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-weight: 700;
    padding: 11px 23px;
    transition: background .2s, color .2s;
}
.btn-outline-honey:hover { background: var(--honey-main); color: #fff; }


/* ================================================================
   ABOUT SECTION
================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-img-col { order: -1; }
}
.about-img-col img { border-radius: var(--radius-lg); width: 100%; }

.about-text-col h2 { font-size: 1.6rem; font-weight: 700; color: var(--honey-dark); margin-bottom: 16px; }
.about-text-col p { font-size: .9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }

.cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--honey-border);
}
.cert-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 600;
}
.cert-row i { color: var(--honey-main); }


/* ================================================================
   CONTACT
================================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    color: #333;
    transition: border-color .2s;
    outline: none;
    background: #fff;
}
.form-control:focus { border-color: var(--honey-main); }
textarea.form-control { resize: vertical; min-height: 120px; }

.contact-info-card {
    background: var(--honey-pale);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}
.contact-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--honey-dark); margin-bottom: 18px; }
.ci-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .87rem;
    color: var(--text-body);
}
.ci-item i { color: var(--honey-main); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ci-item a { color: var(--honey-main); }
.ci-item a:hover { color: var(--honey-dark); }


/* ================================================================
   DATA PAGE
================================================================ */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.data-card {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.data-card-header {
    padding: 14px 18px;
    background: var(--honey-cream);
    border-bottom: 1px solid var(--honey-border);
    font-size: .82rem;
    font-weight: 700;
    color: var(--honey-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.data-card iframe {
    display: block;
    width: 100%;
    border: none;
    height: 220px;
}


/* ================================================================
   FOOTER
================================================================ */
.site-footer {
    background: #161616;
    color: #999;
    padding: 50px 24px 28px;
}
.footer-inner { max-width: 1170px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand .fb-logo { height: 36px; filter: brightness(0) invert(1); opacity: .7; margin-bottom: 14px; }
.footer-brand p { font-size: .82rem; color: #777; line-height: 1.65; max-width: 280px; }

.footer-col h4 { font-size: .84rem; font-weight: 700; color: #ddd; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .82rem; color: #777; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--honey-light); }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .78rem;
    color: #555;
}
.footer-bottom a { color: var(--honey-light); }


/* ================================================================
   UTILITIES & RESPONSIVE
================================================================ */
.text-honey  { color: var(--honey-main) !important; }
.text-muted  { color: var(--text-muted) !important; }
.fw-bold     { font-weight: 700 !important; }

.me-1 { margin-right: .25rem !important; }
.me-2 { margin-right: .5rem !important; }
.ms-1 { margin-left: .25rem !important; }
.ms-2 { margin-left: .5rem !important; }

.d-flex      { display: flex; }
.align-center { align-items: center; }
.gap-12      { gap: 12px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }

.map-embed {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    border-radius: var(--radius-lg);
}

/* ================================================================
   PRODUCT / QR LANDING PAGES
================================================================ */

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--honey-main), var(--honey-pale)); }
.tl-item { position: relative; padding-bottom: 20px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -24px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--honey-main); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--honey-main); }
.tl-date { font-size: .74rem; font-weight: 700; color: var(--honey-main); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.tl-text { font-size: .88rem; color: var(--text-body); line-height: 1.5; }

/* ---- Origin block ---- */
.origin-block { background: var(--honey-pale); border-radius: var(--radius-lg); padding: 24px 20px; }
.origin-loc { font-size: .76rem; font-weight: 700; color: var(--honey-main); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.origin-block p { font-size: .9rem; color: var(--text-body); line-height: 1.65; }
.plant-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.plant-tag { background: var(--honey-cream); border: 1px solid var(--honey-border); border-radius: 20px; font-size: .76rem; font-weight: 600; color: var(--honey-dark); padding: 4px 12px; }

/* ---- Storage grid ---- */
.storage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.storage-card { background: var(--honey-cream); border-radius: var(--radius-md); padding: 16px 14px; text-align: center; font-size: .82rem; color: var(--text-body); }
.storage-card i { display: block; font-size: 1.5rem; color: var(--honey-main); margin-bottom: 7px; }
.storage-card strong { display: block; font-size: .84rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }

/* ---- Harvest navigation ---- */
.harvest-nav { display: flex; flex-direction: column; gap: 10px; }
.harvest-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: #fff; border: 1px solid var(--honey-border); border-radius: var(--radius-md); text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s; }
a.harvest-link:hover { border-color: var(--honey-main); box-shadow: var(--shadow-honey); color: inherit; }
.harvest-link.active-harvest { border-color: var(--honey-main); box-shadow: var(--shadow-honey); cursor: default; }
.harvest-link.upcoming-harvest { opacity: .6; cursor: default; }
.hl-left strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.hl-left span { font-size: .77rem; color: var(--text-muted); }
.hl-badge { font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.hl-badge-active { background: var(--honey-cream); color: var(--honey-dark); border: 1px solid var(--honey-border); }
.hl-badge-upcoming { background: #f0f0f0; color: #999; }

/* ---- Upcoming banner ---- */
.upcoming-banner { background: #fff8e1; border-top: 3px solid var(--honey-main); padding: 14px 24px; text-align: center; font-size: .88rem; font-weight: 600; color: var(--honey-dark); display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ---- Info box ---- */
.info-box { background: var(--honey-pale); border-left: 4px solid var(--honey-main); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 18px; }
.info-box .ib-title { font-size: .88rem; font-weight: 700; color: var(--honey-dark); margin-bottom: 6px; }
.info-box p { font-size: .84rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* ---- Mineral grid (medovicový) ---- */
.mineral-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mineral-card { background: #f0f5f1; border: 1px solid #c8dece; border-radius: var(--radius-md); padding: 16px 14px; text-align: center; }
.mineral-card i { display: block; font-size: 1.4rem; color: var(--forest-green); margin-bottom: 7px; }
.mineral-card strong { display: block; font-size: .86rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.mineral-card span { font-size: .78rem; color: var(--text-muted); }

/* ---- Special banner (forest/honeydew) ---- */
.special-banner { background: linear-gradient(90deg, var(--forest-green), var(--forest-light)); color: #fff; text-align: center; padding: 12px 20px; font-size: .82rem; font-weight: 600; letter-spacing: .02em; }

/* ---- Cert row ---- */
.cert-row { display: flex; flex-wrap: wrap; gap: 8px; font-size: .78rem; color: var(--text-muted); }
.cert-row span { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; }
.cert-row i { color: var(--honey-main); }

/* ---- Product hero (QR landing) ---- */
.product-hero { padding: 52px 24px 44px; }

/* ---- Landing page layout ---- */
.lp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 768px) {
    .lp-two-col { grid-template-columns: 1fr; gap: 0; }
}

.section-lp-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--honey-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-lp-title i { color: var(--honey-main); font-size: 1.15rem; }

@media (max-width: 576px) {
    .section { padding: 44px 0; }
    .home-hero { padding: 60px 20px 56px; }
    .page-header { padding: 36px 20px 28px; }
    .section-container { padding: 0 16px; }
    .iot-promo { padding: 28px 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
}
