/* ==========================================================================
   Тепломаш — Официальная тема сайта завода «Тепломаш» (г. Днепр)
   Актуальный домен: www.teplomash.dp.ua
   ========================================================================== */

:root {
  --color-primary: #e05315;
  --color-primary-dark: #c2410c;
  --color-primary-light: #fff7ed;
  --color-primary-border: #fed7aa;
  --color-dark: #0f172a;
  --color-slate: #1e293b;
  --color-text: #334155;
  --color-muted: #64748b;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --color-border-hover: #cbd5e1;
  --color-accent-green: #10b981;
  --color-green-bg: #ecfdf5;
  --color-green-border: #a7f3d0;
  --color-green-text: #065f46;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow: 0 10px 25px -5px rgba(15,23,42,0.07), 0 8px 10px -6px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15,23,42,0.12);
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-primary-dark); text-decoration: underline; }
ul { margin: 0; padding: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(224,83,21,0.25);
}
.btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(224,83,21,0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}
.btn-outline:hover { background: #fff; color: var(--color-primary); }
.btn-secondary {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,0.2);
}
.btn-secondary:hover { background: var(--color-slate); color: #fff; }

/* Шапка сайта */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.topbar {
  background: var(--color-dark);
  color: #94a3b8;
  font-size: 13px;
}
.topbar .container {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px; padding-bottom: 8px;
}
.topbar a { color: #f1f5f9; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar .topbar-phones { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .topbar-badge {
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: #cbd5e1;
}

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; font-size: 22px; color: var(--color-dark);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand img { height: 46px; width: auto; object-fit: contain; }
.brand small { display: block; font-weight: 500; font-size: 12px; color: var(--color-muted); }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--color-dark); font-weight: 600; font-size: 15px; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-cta { margin-left: 12px; }
.nav-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--color-dark); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--color-border);
    flex-direction: column; align-items: flex-start;
    padding: 18px 24px; gap: 16px;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* Главный баннер (Hero) на главной */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  color: #fff;
  padding: 70px 0;
}
.hero .container { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.hero-text { flex: 1 1 440px; }
.hero-text h1 { color: #fff; }
.hero-text p { color: #cbd5e1; font-size: 18px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-image { flex: 1 1 360px; text-align: center; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #fff; padding: 12px; }
.hero-badges { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; font-size: 14px; color: #94a3b8; }
.hero-badges strong { display: block; font-size: 22px; color: #fff; font-weight: 800; }

/* Общие секции */
section { padding: 56px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--color-muted); font-size: 17px; }

/* Сетка карточек */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.adv-icon { font-size: 34px; margin-bottom: 12px; }

/* Карточки каталога */
.product-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card img { height: 210px; width: 100%; object-fit: contain; background: #fff; padding: 14px; }
.product-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; border-top: 1px solid var(--color-border); }
.product-card h3 { font-size: 18px; margin-bottom: 8px; }
.product-card p { color: var(--color-muted); font-size: 14px; flex: 1; }
.product-card .btn { margin-top: 14px; align-self: flex-start; padding: 10px 18px; font-size: 14px; }
.product-card .img-link { display: block; background: #fff; }
.product-card .img-link img { transition: transform .2s ease; }
.product-card .img-link:hover img { transform: scale(1.03); }
.product-card h3 a { color: var(--color-dark); }
.product-card h3 a:hover { color: var(--color-primary); text-decoration: none; }
.product-card .more { margin-top: 12px; font-weight: 600; font-size: 14px; align-self: flex-start; }

/* Таблицы */
table.specs {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden;
}
table.specs th, table.specs td {
  border: 1px solid var(--color-border); padding: 12px 16px; text-align: left;
}
table.specs th { background: var(--color-bg-alt); font-weight: 700; color: var(--color-dark); }
table.specs tr:nth-child(even) td { background: #fafafa; }

/* Прямые контакты (вместо формы заявки) */
.contact-direct-list { display: grid; gap: 10px; margin: 20px 0 4px; }
.contact-direct-row {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  transition: all .2s ease;
}
.contact-direct-row:hover {
  background: #fff; border-color: var(--color-primary-border);
  border-left-color: var(--color-primary);
  box-shadow: var(--shadow-sm); text-decoration: none;
}
.contact-direct-row .cdr-label { font-size: 12px; color: var(--color-muted); font-weight: 600; }
.contact-direct-row .cdr-value { font-size: 17px; font-weight: 800; color: var(--color-dark); }
.contact-direct-row:hover .cdr-value { color: var(--color-primary); }
.form-note { font-size: 13px; color: var(--color-muted); margin-top: 10px; }

/* Подвал */
.site-footer { background: var(--color-dark); color: #94a3b8; padding: 56px 0 24px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; font-weight: 700; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px; padding-top: 20px;
  font-size: 13px; color: #64748b;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* Шапка внутренних страниц (Hero) */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff; padding: 40px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: #cbd5e1; margin: 0; font-size: 16px; }

/* Статьи и контент */
.article { max-width: 860px; margin: 0 auto; }
.article p { font-size: 16px; color: #334155; line-height: 1.7; }
.article h2 { margin-top: 36px; }
.brand-note {
  background: #fff7ed; border-left: 4px solid var(--color-primary);
  padding: 16px 20px; border-radius: 6px; margin: 24px 0; font-size: 15px; color: #7c2d12;
}
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--color-border); }

/* ==========================================================================
   СТИЛИ ДЛЯ СТРАНИЦ ТОВАРОВ (PRODUCT SHOWCASE)
   ========================================================================== */

/* Хлебные крошки */
.breadcrumbs-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; color: var(--color-muted); }
.breadcrumbs li::after { content: "/"; color: #cbd5e1; }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--color-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs li:last-child span { color: var(--color-dark); font-weight: 600; }

/* Секция витрины товара */
.product-showcase-section {
  padding: 36px 0 48px;
  background: #fff;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-showcase-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Левая колонка: Фото и визуальные элементы */
.product-visual-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.product-badge-corner {
  position: absolute; top: 16px; left: 16px;
  background: var(--color-dark); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
  z-index: 2;
}
.product-badge-warranty {
  position: absolute; top: 16px; right: 16px;
  background: var(--color-green-bg); color: var(--color-green-text);
  border: 1px solid var(--color-green-border);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px;
  z-index: 2;
}
.product-main-photo {
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; max-height: 400px;
  background: #fff; border-radius: 8px;
  padding: 24px 12px; margin-top: 24px;
}
.product-main-photo img {
  max-height: 340px; width: auto; max-width: 100%;
  object-fit: contain; transition: transform .3s ease;
}
.product-main-photo img:hover { transform: scale(1.02); }

/* Миниатюры под фото */
.product-thumbs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.thumb-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  background: var(--color-bg-alt);
  transition: all .2s ease;
}
.thumb-card:hover { border-color: var(--color-primary); background: #fff; }
.thumb-card img { height: 60px; width: 100%; object-fit: contain; margin-bottom: 4px; }
.thumb-card span { font-size: 11px; font-weight: 600; color: var(--color-muted); display: block; line-height: 1.2; }

/* Значки доверия под карточкой */
.product-trust-tags {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 16px;
}
.trust-tag {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 6px;
  font-size: 12px; font-weight: 600;
  color: var(--color-dark);
  text-align: center;
}

/* Правая колонка: Коммерческий блок */
.product-order-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.product-category-tag {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  padding: 4px 12px; border-radius: 6px;
  margin-bottom: 12px;
}
.product-title-main {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.25;
  margin: 0 0 12px;
}
.product-lead-text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Быстрые параметры (плашки) */
.quick-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 500px) { .quick-specs-grid { grid-template-columns: 1fr; } }
.quick-spec-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
}
.quick-spec-card .qs-label { font-size: 12px; color: var(--color-muted); display: block; margin-bottom: 2px; }
.quick-spec-card .qs-val { font-size: 15px; font-weight: 700; color: var(--color-dark); }

/* Блок цены и наличия */
.product-price-box {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-primary-light) 100%);
  border: 1px solid var(--color-primary-border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px;
}
.price-label { font-size: 13px; color: #9a3412; font-weight: 700; text-transform: uppercase; }
.price-amount { font-size: 22px; font-weight: 800; color: var(--color-primary); }
.stock-status {
  font-size: 13px; color: var(--color-green-text); font-weight: 600;
  margin-top: 6px; display: flex; align-items: center; gap: 8px;
}
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent-green); display: inline-block; }

/* Кнопки действий */
.product-actions-bar {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px;
}
.btn-order-primary {
  flex: 1 1 220px;
  background: var(--color-primary); color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 14px 26px; border-radius: 8px;
  text-align: center; text-decoration: none;
  box-shadow: 0 4px 14px rgba(224,83,21,0.3);
  transition: all .2s ease;
}
.btn-order-primary:hover {
  background: var(--color-primary-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,83,21,0.4);
  text-decoration: none;
}
.btn-call-direct {
  background: var(--color-dark); color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 14px 20px; border-radius: 8px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s ease;
}
.btn-call-direct:hover { background: var(--color-slate); color: #fff; text-decoration: none; }

/* Список преимуществ завода */
.factory-perks-list {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}
.perk-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--color-text); margin-bottom: 8px;
}
.perk-check { color: var(--color-accent-green); font-weight: 800; font-size: 16px; line-height: 1; }

/* Подробное описание и секции характеристик */
.product-info-section {
  padding: 48px 0;
  background: var(--color-bg-alt);
}
.content-block-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
@media (max-width: 600px) { .content-block-card { padding: 22px 18px; } }
.content-block-card h2 {
  font-size: 24px; font-weight: 800; color: var(--color-dark);
  margin-top: 0; margin-bottom: 20px;
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: 12px;
}

/* Таблица технических характеристик */
.specs-table-styled {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--color-border); border-radius: 8px;
  overflow: hidden; margin: 20px 0; font-size: 15px;
}
.specs-table-styled th, .specs-table-styled td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.specs-table-styled tr:last-child td { border-bottom: none; }
.specs-table-styled td:first-child {
  font-weight: 600; color: var(--color-dark);
  width: 38%; background: var(--color-bg-alt);
}
.specs-table-styled td:last-child { color: var(--color-text); }
.specs-table-styled tr:hover td { background: #f1f5f9; }

/* Сетка карточек преимуществ */
.features-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 700px) { .features-grid-cards { grid-template-columns: 1fr; } }
.feature-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15px; color: var(--color-dark);
  font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.feature-box .feat-icon {
  background: #fff; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--shadow-sm); flex-shrink: 0;
}

/* Контакты для заказа прямо на странице товара */
.inpage-order-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  margin: 36px 0;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) { .inpage-order-box { padding: 28px 20px; } }
.inpage-order-box h3 {
  font-size: 26px; color: #fff; font-weight: 800; margin: 0 0 8px;
}
.inpage-order-box p {
  color: #94a3b8; font-size: 15px; margin: 0 0 24px; max-width: 700px;
}
.inpage-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) { .inpage-contact-grid { grid-template-columns: 1fr; } }
.inpage-contact-card {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 4px solid var(--color-primary);
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  transition: all .2s ease;
}
.inpage-contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-left-color: var(--color-primary);
  transform: translateY(-2px);
  text-decoration: none;
}
.inpage-contact-card .icc-label { font-size: 12px; color: #94a3b8; font-weight: 600; }
.inpage-contact-card .icc-value { font-size: 20px; font-weight: 800; color: #fff; }
.inpage-contact-card:hover .icc-value { color: #fdba74; }
.inpage-order-note {
  font-size: 12px; color: #64748b; margin-top: 14px;
}

/* Справочный SEO-аккордеон */
.seo-collapsible {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin: 28px 0;
}
.seo-collapsible summary {
  font-weight: 700; font-size: 16px; color: var(--color-dark);
  cursor: pointer; user-select: none;
}
.seo-collapsible[open] summary { margin-bottom: 16px; color: var(--color-primary); }
.seo-content-inner p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* Совместимость с WooCommerce */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.woocommerce ul.products li.product { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.woocommerce span.price { color: var(--color-primary); font-weight: 700; }
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit {
  background: var(--color-primary); color: #fff; border-radius: var(--radius-sm); padding: 12px 22px; font-family: var(--font-main); border: none; font-weight: 700;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--color-primary-dark); color: #fff; }
.woocommerce div.product p.price { font-size: 20px; }
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .woocommerce ul.products { grid-template-columns: 1fr; } }
