.holiday-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hlavní nadpis */
.article-main-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* Sekce s produktem a blokem */
.content-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* Blok s obsahem (nadpis + text) */
.content-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Karta produktu */
.product-card {
    width: 280px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.discount {
    color: #e44d26;
    font-weight: bold;
    font-size: 16px;
    margin: 5px 0;
}

.product-link {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s;
}

.product-link:hover {
    background: #45a049;
}

/* Zbývající produkty ve spodní části */
.remaining-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.remaining-products h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* Formátování textu */
.content-text strong {
    color: #222;
    font-weight: 600;
}

.content-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.content-text li {
    margin-bottom: 8px;
}

/* Responsivní design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }
    
    .content-section[style*="row-reverse"] {
        flex-direction: column;
    }
    
    .product-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Meta & Hashtagy */
.article-meta { font-size: 0.9em; color: #888; text-transform: uppercase; margin-bottom: 20px; }
.article-hashtags { margin-top: 30px; font-weight: bold; color: #d4af37; word-spacing: 10px; }

/* Anketa */
.poll-container { border: 2px dashed #d4af37; padding: 25px; border-radius: 10px; margin: 40px 0; background: #fafafa;}
.poll-answers { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
.poll-btn { padding: 15px; border: 1px solid #ddd; background: white; border-radius: 5px; cursor: pointer; text-align: left; transition: 0.3s; font-size: 16px; position: relative; overflow: hidden; }
.poll-btn:hover { border-color: #d4af37; }
.voted-choice { border-color: #d4af37; font-weight: bold; }
.poll-percent { float: right; color: #555; }
.poll-thanks { color: green; font-weight: bold; margin-top: 15px; }

/* FAQ */
.faq-section { margin-top: 50px; border-top: 1px solid #eee; padding-top: 20px; }
.faq-item { margin-bottom: 20px; }
.faq-item h4 { color: #333; margin-bottom: 5px; }
.faq-item p { margin-top: 0; color: #555; }