<style>
    /* === GLOBÁLNÍ ŠABLONA ("BEST" DESIGN) === */
    .pd-container {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 14.5px;
    }
    .pd-intro-box {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 25px;
        border: 1px solid #e9ecef;
    }
    .pd-section-heading {
        font-size: 1.5em;
        color: #2c5b2d;
        margin-top: 40px;
        margin-bottom: 20px;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    .pd-heading-icon {
        margin-right: 12px;
        font-size: 1.2em;
    }

    .pd-feature-list-wrapper {
        margin-top: 20px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
    }
    .pd-feature-list-header {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
        padding: 10px 20px;
        background-color: #f8f9fa;
        font-weight: 600;
        color: #333;
        font-size: 0.95em;
        border-bottom: 1px solid #e9ecef;
    }
    .pd-feature-item-row {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
        padding: 12px 20px;
        background-color: #fff;
        border-bottom: 1px solid #e9ecef;
        align-items: center;
    }
    .pd-feature-item-row:last-child {
        border-bottom: none;
    }
    .pd-feature-item-row div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .pd-feature-item-row .ingredient {
        font-weight: 600;
        font-size: 1.1em;
        color: #2c5b2d;
    }
    .pd-feature-item-row .claim {
        font-size: 0.9em;
        color: #555;
    }
    .pd-feature-item-row .benefit p {
        margin: 0;
    }

    .pd-dosage-guide {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }
    .pd-dosage-card {
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }
    .pd-dosage-card .icon { font-size: 2em; color: #6e9c45; margin-bottom: 10px; }
    .pd-dosage-card h3 { font-size: 1.1em; margin: 0 0 5px 0; color: #2c5b2d; }
    .pd-dosage-card p { margin: 0; font-size: 1em; }
    
    .pd-styled-list { list-style: none; padding-left: 0; }
    .pd-styled-list li { padding: 12px; margin-bottom: 8px; background-color: #f8f9fa; border-left: 3px solid #6e9c45; border-radius: 4px; }
    
    .pd-quote-box {
        background-color: #e3f2fd; border-left: 3px solid #2196F3; padding: 15px 20px; margin-top: 15px; border-radius: 4px;
    }
    .pd-safety-box {
        background-color: #fff8e1; border-left: 3px solid #ff9800; padding: 15px 20px; margin-top: 15px; border-radius: 4px;
    }
    .pd-safety-box ul {
        list-style-type: none;
        padding-left: 0;
        margin: 10px 0 0 0;
    }
    .pd-safety-box li {
        margin-bottom: 5px;
    }

    /* RESPONZIVITA */
    @media (max-width: 768px) {
        .pd-feature-list-header {
            display: none;
        }
        .pd-feature-item-row {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }
</style>