/* === ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ === */
:root {
  --primary: #001f3f;
  --accent: #60a5fa;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --bg-surface: #ffffff;
  --radius-lg: 12px;
  --gap-sm: 1rem;
  --gap-md: 1.6rem;
  --gap-lg: 2.4rem;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-surface);
  color: var(--text-primary);
  line-height: 1.6;
}

/* === СТРАНИЦЫ ТОВАРОВ — БЕЛЫЙ ФОН === */
body.post-type-archive-product,
body.tax-product_cat,
body.single-product {
  background-color: var(--bg-surface) !important;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* === УБРАТЬ СОРТИРОВКУ И СЧЁТЧИК === */
.woocommerce-ordering,
.woocommerce-result-count {
  display: none !important;
}

/* === ЗАГОЛОВОК КАТЕГОРИИ === */
.brand-archive {
  padding: clamp(60px, 10vw, 100px) 0 0;
}
.hero-section {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.hero-section h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.hero-description {
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.65;
}

/* === ФИЛЬТР ПО МОДЕЛИ — НАД КАРТОЧКАМИ === */
.filters-section {
  margin-bottom: var(--gap-lg);
}
.widget_layered_nav_model,
.woocommerce-widget-layered-nav[data-attribute="pa_model"] {
  display: block !important;
  padding: 0;
}
.widget_layered_nav_model h2.widget-title,
.woocommerce-widget-layered-nav h2.widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--gap-sm);
  color: var(--primary);
  display: none; /* скрыть заголовок, если не нужен */
}
.widget_layered_nav_model ul,
.woocommerce-widget-layered-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.widget_layered_nav_model li,
.woocommerce-widget-layered-nav li {
  margin: 0 !important;
}
.widget_layered_nav_model a,
.woocommerce-widget-layered-nav a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  color: var(--text-secondary);
  border-radius: 8px;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.widget_layered_nav_model a:hover,
.woocommerce-widget-layered-nav a:hover {
  background: #e2e8f0;
  color: var(--primary);
}
.widget_layered_nav_model a.chosen,
.woocommerce-widget-layered-nav a.chosen {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Скрыть все остальные фильтры */
.widget:not(.widget_layered_nav_model),
.woocommerce-widget-layered-nav:not([data-attribute="pa_model"]) {
  display: none !important;
}

/* === СЕТКА ТОВАРОВ — РАСШИРЕНА === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* ← шире */
  gap: var(--gap-md);
  justify-items: center;
  width: 100%;
}

/* === КАРТОЧКА ТОВАРА — УЛУЧШЕНА === */
.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease;
  width: 100%;
  max-width: none;
  border: 1px solid #f1f5f9;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #e2e8f0;
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-image {
  aspect-ratio: 4 / 3;
  background: #fafafa;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.03);
}
.product-info {
  padding: 1.4rem 1.2rem 1.6rem;
  text-align: center;
}
.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.8rem;
  transition: color 0.2s ease;
}
.product-card:hover .product-info h3 {
  color: var(--accent);
}

/* === ЦЕНА — УДОБОЧИТАЕМАЯ === */
.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-family: "Inter", sans-serif;
  line-height: 1.1;
}
.price .amount {
  display: inline-block;
}
.price .amount .woocommerce-Price-currencySymbol {
  font-size: 1.1rem;
  margin-right: 2px;
}
.price .amount .woocommerce-Price-amount bdi {
  display: inline-flex;
  align-items: baseline;
}
.price .amount .woocommerce-Price-amount bdi span {
  font-size: 0.75em;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 2px;
  position: relative;
  top: -2px;
}

/* === КНОПКА === */
.btn {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  background: var(--accent);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s ease;
  border: none;
  font-size: 0.95rem;
  width: 100%;
  max-width: 200px;
}
.btn:hover {
  background: #3b82f6;
}

/* === ПАГИНАЦИЯ — ЭСТЕТИЧНАЯ БЕЗ ЦИФР === */
.woocommerce-pagination {
  margin-top: var(--gap-lg);
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.woocommerce-pagination .page-numbers {
  display: none !important; /* скрыть цифры */
}
.woocommerce-pagination .prev,
.woocommerce-pagination .next {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.woocommerce-pagination .prev:hover,
.woocommerce-pagination .next:hover {
  background: var(--accent);
  color: white;
}
.woocommerce-pagination .prev:before {
  content: "←";
}
.woocommerce-pagination .next:after {
  content: "→";
}

/* === ТОЧКИ ВМЕСТО ЦИФР (опционально) === */
/* Если используется плагин с точками — раскомментируйте:
.page-numbers.dots {
  display: inline-block !important;
  width: 6px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 50%;
  opacity: 0.6;
}
*/

.no-products {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .price {
    font-size: 1.25rem;
  }
}/* === ФИЛЬТР ПО МОДЕЛИ === */
.model-filter-container {
  margin: 0 0 2.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.model-filter-container::-webkit-scrollbar { display: none; }

.model-filter-scroll {
  display: flex;
  gap: 0.8rem;
  padding: 0.4rem 0;
  min-width: fit-content;
}

.model-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.model-chip:hover { background: #f1f5f9; color: #001f3f; }
.model-chip.active { background: #60a5fa; color: white; border-color: #60a5fa; transform: translateY(-1px); }

/* === СЕТКА ТОВАРОВ === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  justify-items: center;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease;
  width: 100%;
  border: 1px solid #f1f5f9;
}
.product-card:hover { transform: translateY(-4px); border-color: #e2e8f0; }

.product-image { aspect-ratio: 4/3; background: #fafafa; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-info { padding: 1.4rem 1.2rem; text-align: center; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.8rem; color: #001f3f; font-weight: 600; }
.price { font-size: 1.3rem; font-weight: 700; color: #001f3f; }

/* === МОДАЛЬНОЕ ОКНО === */
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-content {
  background: white; border-radius: 16px; max-width: 900px; width: 100%;
  padding: 2rem; position: relative;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 1.8rem; background: none; border: none; cursor: pointer;
}
.btn {
  display: inline-block; padding: 0.7rem 1.4rem;
  background: #60a5fa; color: white !important;
  border-radius: 8px; font-weight: 600; text-decoration: none;
  margin-top: 1rem;
}/* === ФИЛЬТР ПО МОДЕЛИ === */
.model-filter-container {
  margin: 0 0 2.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.model-filter-container::-webkit-scrollbar { display: none; }

.model-filter-scroll {
  display: flex;
  gap: 0.8rem;
  padding: 0.4rem 0;
  min-width: fit-content;
}

.model-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
}
.model-chip:hover { background: #f1f5f9; color: #001f3f; }
.model-chip.active { background: #60a5fa; color: white; border-color: #60a5fa; }

/* === КАРТОЧКИ === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  justify-items: center;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  border: 1px solid #f1f5f9;
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: #e2e8f0; }
.product-image { aspect-ratio: 4/3; background: #fafafa; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info { padding: 1.4rem 1.2rem; text-align: center; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.8rem; color: #001f3f; }
.price { font-size: 1.3rem; font-weight: 700; color: #001f3f; }

/* === ПАГИНАЦИЯ === */
.pagination-simple {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.pagination-simple a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.2rem;
  text-decoration: none;
}
.pagination-simple a:hover { background: #60a5fa; color: white; }

/* === МОДАЛЬНОЕ ОКНО === */
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-content {
  background: white; border-radius: 16px; max-width: 900px; width: 100%;
  padding: 2rem; position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 1.8rem; background: none; border: none; cursor: pointer;
}
.modal-image { text-align: center; margin-bottom: 1.5rem; }
.modal-image img { max-width: 100%; border-radius: 12px; }
.modal-description { margin: 1rem 0; line-height: 1.7; color: #475569; }
.btn {
  display: inline-block; padding: 0.7rem 1.4rem;
  background: #60a5fa; color: white !important;
  border-radius: 8px; font-weight: 600; text-decoration: none;
  margin-top: 1rem;
}/* === КАРТОЧКА ТОВАРА — СТИЛЬ CARRERA / POLAROID 2026 === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  width: 100%;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  border: 1px solid #f1f5f9;
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: #e2e8f0;
}

/* Изображение — Full HD, без искажений */
.product-image {
  aspect-ratio: 4 / 3;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← сохраняет пропорции, как у Carrera */
  padding: 12px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.03);
}

/* Информация — чёткая иерархия */
.product-info {
  padding: 1.4rem 1.2rem 1.6rem;
  text-align: center;
}
.product-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #001f3f;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  min-height: 2.8rem;
  transition: color 0.2s ease;
}
.product-card:hover .product-info h3 {
  color: #60a5fa;
}

/* Цена — крупная, без копеек, только рубли */
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #001f3f;
  font-family: "Inter", sans-serif;
  line-height: 1.1;
}
.price .amount {
  display: inline-block;
}
.price .amount .woocommerce-Price-currencySymbol {
  font-size: 1.1rem;
  margin-left: 4px;
  opacity: 0.8;
}/* === ФИЛЬТР — МЕНЕЕ ЗАМЕТНЫЙ === */
.model-filter-container {
  margin: 0 0 2.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.model-filter-container::-webkit-scrollbar { display: none; }

.model-filter-scroll {
  display: flex;
  gap: 0.7rem;
  padding: 0.3rem 0;
}

.model-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
}
.model-chip:hover { background: #f1f5f9; color: #001f3f; }
.model-chip.active { background: #60a5fa; color: white; border-color: #60a5fa; }

/* === КАРТОЧКИ === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 300px;
  border: 1px solid #f1f5f9;
  transition: transform 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: #e2e8f0; }
.product-image { aspect-ratio: 4/3; background: #fafafa; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-info { padding: 1.4rem 1.2rem; text-align: center; }
.product-info h3 { font-size: 1.15rem; margin-bottom: 0.8rem; color: #001f3f; }
.price { font-size: 1.4rem; font-weight: 700; color: #001f3f; }

/* === ПРОЗРАЧНАЯ КНОПКА === */
.btn-transparent {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: transparent;
  color: #60a5fa !important;
  border: 1px solid #60a5fa;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.2s ease;
}
.btn-transparent:hover {
  background: #60a5fa;
  color: white !important;
}

/* === ПАГИНАЦИЯ — ЧЁТКАЯ === */
.pagination-simple {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.pagination-simple a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8fafc;
  color: #001f3f;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #e2e8f0;
}
.pagination-simple a:hover {
  background: #60a5fa;
  color: white;
}

/* === МОДАЛЬНОЕ ОКНО === */
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.88); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-content {
  background: white; border-radius: 16px; max-width: 900px; width: 100%;
  padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 1.8rem; background: none; border: none; cursor: pointer;
  color: #64748b;
}
.modal-image { text-align: center; margin-bottom: 1.8rem; }
.modal-image img { max-width: 100%; border-radius: 12px; }
.modal-description { margin: 1rem 0; line-height: 1.7; color: #475569; }/* Убираем серые/цветные подложки */
.product-card,
.product-image,
.products-grid,
.brand-archive,
body {
  background: #ffffff !important;
  border: none !important;
}

/* Убираем фон у контейнеров */
.container,
.archive-layout,
.products-section {
  background: transparent;
}

/* Изображение — чистый белый фон */
.product-image {
  background: #ffffff !important;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}/* === БЕЛЫЙ ФОН ВЕЗДЕ === */
body,
.product-card,
.product-image,
.brand-archive,
.container {
  background: #ffffff !important;
  border: none !important;
}

/* === СЕТКА: 3 КАРТОЧКИ === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

/* === КАРТОЧКА === */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-image {
  aspect-ratio: 4/3;
  background: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.price { font-size: 1.4rem; font-weight: 700; color: #001f3f; }

/* === ФИЛЬТР === */
.model-filter-container {
  margin: 0 0 2.4rem;
  overflow-x: auto;
}
.model-filter-scroll {
  display: flex;
  gap: 0.7rem;
  padding: 0.3rem 0;
}
.model-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
}
.model-chip:hover { background: #f1f5f9; color: #001f3f; }
.model-chip.active { background: #60a5fa; color: white; border-color: #60a5fa; }

/* === МОДАЛЬНОЕ ОКНО === */
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.88); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-content {
  background: white; border-radius: 16px; max-width: 900px; width: 100%;
  padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-size: 1.8rem; background: none; border: none; cursor: pointer;
  color: #64748b;
}

/* === КОНТЕНТ МОДАЛКИ === */
.modal-image { text-align: center; margin-bottom: 1.6rem; }
.modal-image img { max-width: 100%; border-radius: 12px; background: #fff; padding: 16px; }
.modal-price { font-size: 1.5rem; font-weight: 700; color: #001f3f; margin: 0.8rem 0; }
.modal-model {
  margin: 1.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: monospace;
  font-size: 0.95rem;
}
.btn-copy {
  background: #60a5fa;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}
.telegram-icon {
  display: inline-block;
  font-size: 1.8rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  text-decoration: none;
}
.telegram-icon:hover { opacity: 1; }/* Белый фон */
body, .product-card, .product-image { background: #ffffff !important; }

/* Сетка: 3 карточки */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

/* Модальное окно */
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.88); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-content {
  background: white; border-radius: 16px; max-width: 900px; width: 100%;
  padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1.8rem; background: none; border: none; cursor: pointer; }

/* Telegram иконка */
.telegram-icon {
  display: inline-block;
  font-size: 1.8rem;
  opacity: 0.6;
  text-decoration: none;
}
.telegram-icon:hover { opacity: 1; }