@charset "UTF-8";
/* ============================================================
   ГЛОБАЛЬНЫЙ СТИЛЬ "МИРОВОЙ УРОВЕНЬ" ДЛЯ ВСЕГО САЙТА
   ============================================================ */
@import url("https://fonts.googleapis.com");
/* line 8, theme.scss */
:root {
  --bg-paper: #f4f1ea;
  /* Фон старой бумаги */
  --accent-bronze: #847e6a;
  /* Холодная антикварная бронза */
  --text-main: #1a1a1a;
  /* Глубокий уголь */
  --border-pale: rgba(132, 126, 106, 0.2);
  /* Тонкие линии */ }

/* 1. ГЛОБАЛЬНЫЕ НАСТРОЙКИ ТЕКСТА И ФОНА */
/* line 16, theme.scss */
body, html, p, div, span, li, a {
  font-family: 'PT Serif', serif !important;
  background-color: var(--bg-paper);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased; }

/* 2. ЕДИНЫЙ СТИЛЬ ЗАГОЛОВКОВ ДЛЯ ВСЕХ СТРАНИЦ (Каталог, Блог, Корзина) */
/* line 25, theme.scss */
h1, .page-title, .collection-title, .cart-title {
  font-family: 'PT Serif', serif !important;
  color: var(--accent-bronze) !important;
  text-transform: uppercase !important;
  letter-spacing: clamp(4px, 1vw, 8px) !important;
  font-size: clamp(24px, 4vw, 34px) !important;
  text-align: center !important;
  margin: 60px auto 40px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--border-pale) !important;
  max-width: 1000px !important;
  font-weight: normal !important;
  display: block !important; }

/* 3. КАРТОЧКИ ТОВАРОВ В КАТАЛОГЕ (Сетка) */
/* line 41, theme.scss */
.product-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: 0.3s; }
  /* line 47, theme.scss */
  .product-card:hover {
    opacity: 0.8; }
  /* line 49, theme.scss */
  .product-card .product-card__title {
    font-family: 'PT Serif', serif !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    color: var(--text-main); }
  /* line 58, theme.scss */
  .product-card .product-card__price {
    font-family: 'PT Serif', serif !important;
    color: var(--accent-bronze) !important;
    font-weight: bold;
    text-align: center; }

/* 4. КОРЗИНА И ОФОРМЛЕНИЕ ЗАКАЗА */
/* line 67, theme.scss */
.cart-item, .order-table {
  background: transparent !important;
  border-bottom: 1px solid var(--border-pale) !important; }
  /* line 71, theme.scss */
  .cart-item .cart-item__title, .cart-item .cart-item__price, .order-table .cart-item__title, .order-table .cart-item__price {
    font-family: 'PT Serif', serif !important; }

/* Кнопки (Корзина, Заказ, Поиск) */
/* line 77, theme.scss */
.btn, button, .button, .btn-buy, .cart-submit {
  background: transparent !important;
  border: 1px solid var(--accent-bronze) !important;
  color: var(--accent-bronze) !important;
  font-family: 'PT Serif', serif !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border-radius: 0 !important;
  padding: 12px 30px !important;
  transition: 0.4s; }
  /* line 88, theme.scss */
  .btn:hover, button:hover, .button:hover, .btn-buy:hover, .cart-submit:hover {
    background: var(--accent-bronze) !important;
    color: #ffffff !important; }

/* 5. БЛОГ И ТЕКСТОВЫЕ СТРАНИЦЫ */
/* line 95, theme.scss */
.article-content, .page-content, .description-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  text-align: justify; }
  /* line 101, theme.scss */
  .article-content h2, .article-content h3, .article-content h4, .page-content h2, .page-content h3, .page-content h4, .description-content h2, .description-content h3, .description-content h4 {
    color: var(--accent-bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 50px;
    border-left: 3px solid var(--accent-bronze);
    padding-left: 20px; }
  /* line 110, theme.scss */
  .article-content strong, .article-content b, .page-content strong, .page-content b, .description-content strong, .description-content b {
    color: var(--accent-bronze); }

/* 6. ХАРАКТЕРИСТИКИ И ПЛАШКИ (Музейный паспорт) */
/* line 114, theme.scss */
.property-card, .antique-box {
  background: #f9f8f5 !important;
  /* Очень светлый холодный тон */
  border: 1px solid var(--border-pale) !important;
  border-radius: 0 !important; }
  /* line 119, theme.scss */
  .property-card .property-name, .antique-box .property-name {
    color: var(--accent-bronze) !important;
    font-size: 11px !important; }
  /* line 120, theme.scss */
  .property-card .property-value::before, .antique-box .property-value::before {
    content: "— ";
    color: var(--accent-bronze); }

/* 7. УБИРАЕМ ЛИШНИЕ ЭЛЕМЕНТЫ (Скидки, тени, иконки) */
/* line 124, theme.scss */
.product-label, .label-discount {
  background: transparent !important;
  border: 1px solid var(--accent-bronze) !important;
  color: var(--accent-bronze) !important;
  border-radius: 0 !important; }

/* line 131, theme.scss */
.shadow, .box-shadow {
  box-shadow: none !important; }
