/* Сброс и базовые стили */
* { box-sizing: border-box; }
body { font-family: "Montserrat", sans-serif; }

/* Шапка — фиксированная */
.site-header { position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }

/* Ссылки в навигации */
.site-header .wp-block-navigation a { color: #ffffff !important; opacity: 0.85; transition: opacity 0.2s; }
.site-header .wp-block-navigation a:hover { opacity: 1; }

/* Карточки товаров — hover эффект */
.wp-block-post { transition: transform 0.2s, box-shadow 0.2s; }
.wp-block-post:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* Кнопки */
.wp-block-button__link { transition: background-color 0.2s, opacity 0.2s; }

/* Список в футере без маркеров */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #73877c; }

/* Адаптивность шапки */
@media (max-width: 768px) {
    .header-inner { flex-wrap: wrap; gap: 1rem; }
    .whatsapp-btn { display: none; }
}
