/* EN-specific tweaks on top of ../styles.css */

/* ─── Hero trust line (between h1 and paragraph) ──────────── */
.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 0.75rem;
    margin: 0.75rem 0 1rem;
    font-size: 1rem;
    color: #333;
}
.hero-trust-line strong {
    color: var(--primary-green, #2e7d32);
    font-weight: 700;
}
.hero-trust-line .trust-dot {
    color: #999;
    font-weight: 300;
}
@media (max-width: 600px) {
    .hero-trust-line {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    .hero-trust-line .trust-dot {
        display: none;
    }
}

/* Cart footer explainer (EN-specific copy) */
.en-cart-explain {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0.5rem 0 0.75rem;
    background: rgba(76, 175, 80, 0.06);
    border-left: 3px solid var(--primary-green, #2e7d32);
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
}

/* Contact CTA block */
.contact-cta-block {
    margin-top: 1rem;
    text-align: center;
}
.btn-wa-order--contact {
    background: #25D366;
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-wa-order--contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Visual feedback on add */
.btn-add-cart.added {
    background: #4CAF50 !important;
    color: white;
    transform: scale(1.05);
}

/* WhatsApp icon button in header */
.btn-wa-header {
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.15rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-left: 0.5rem;
}
.btn-wa-header:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* Address label inside cart */
.en-address-label {
    display: block;
    font-size: 0.85rem;
    color: #444;
    margin: 0.5rem 0 0.35rem;
    font-weight: 500;
}
#en-rozvoz-address {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s ease;
}
#en-rozvoz-address:focus {
    outline: none;
    border-color: var(--accent-green, #4CAF50);
}

/* ─── Mobile header tweaks ─────────────────────────────────── */
@media (max-width: 768px) {
    /* Schovat textovy nazev "CannaDrop" vedle loga — duplikuje img */
    .logo-text-name {
        display: none;
    }
    /* Status pill zustava viditelny (dulezitejsi nez duplicitni nazev) */
    .header-cta .online-status {
        display: flex;
    }
    /* WA tlacitko mensi */
    .btn-wa-header {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-left: 0.35rem;
    }
}

@media (max-width: 480px) {
    /* Na malych mobilech vse zhustit */
    .header-cta {
        gap: 0.35rem;
    }
    .header-cta .btn-en-flag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    .online-status {
        font-size: 0.7rem;
    }
    .btn-wa-header {
        width: 34px;
        height: 34px;
    }
}
