@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f2;
  --line: #e9e7e2;
  --line-soft: #f1efea;
  --fg: #171717;
  --fg-dim: #726e67;
  --fg-mute: #a8a49c;
  --accent: #d8352a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1500px;
  --ease: cubic-bezier(.22,.7,.24,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--fg); font-family: var(--sans); font-weight: 300;
  font-size: 16px; line-height: 1.6; letter-spacing: .01em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--fg); color: #fff; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 44px; height: 88px; }
.brand {
  font-family: var(--serif); font-size: 27px; font-weight: 600; letter-spacing: .02em;
  color: var(--fg); line-height: .95; white-space: nowrap;
}
.brand b { color: var(--accent); font-weight: 600; font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0 auto 0 8px; list-style: none; }
.nav-links li { position: relative; }
.nav-links > li > a {
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg);
  padding: 10px 0; display: inline-block; position: relative; font-weight: 400;
}
.nav-links > li > a::before {
  content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease);
}
.nav-links > li > a:hover::before, .nav-links > li.menu-item--active-trail > a::before { width: 100%; }
.nav-links > li > a:hover, .nav-links > li.menu-item--active-trail > a { color: var(--fg); }
.nav-links .submenu {
  position: absolute; top: calc(100% + 16px); left: -18px; min-width: 210px; list-style: none;
  background: rgba(255,255,255,.85); backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--line-soft); border-radius: 14px; padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .3s var(--ease);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.22);
}
.nav-links li.has-children::after { content: ""; position: absolute; top: 100%; left: -18px; width: 200px; height: 22px; }
.nav-links li.has-children:hover > .submenu,
.nav-links .submenu:hover { opacity: 1; visibility: visible; transform: none; }
.nav-links li.has-children > a::after { content: "＋"; font-size: 9px; color: var(--fg-mute); margin-left: 6px; vertical-align: 1px; transition: transform .3s var(--ease); display: inline-block; }
.nav-links li.has-children:hover > a::after { transform: rotate(45deg); color: var(--accent); }
.nav-links .submenu a { display: block; padding: 11px 22px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim); }
.nav-links .submenu a:hover { color: var(--fg); background: var(--bg-soft); }
.nav-actions { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.icon-btn { position: relative; color: var(--fg); display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; transition: color .25s, background .25s; }
.icon-btn:hover { color: var(--accent); background: var(--bg-soft); }
.icon-btn svg { stroke-width: 1.4; }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px; min-width: 15px; height: 15px; padding: 0 4px;
  background: var(--accent); color: #fff; font-size: 9px; font-weight: 500; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}

/* ---------- Заголовки секций ---------- */
.holla-heading { text-align: center; margin: 78px 0 8px; font-family: var(--sans); font-weight: 500;
  font-size: 13px; letter-spacing: .28em; text-transform: uppercase; color: var(--fg); display: flex; align-items: center; justify-content: center; gap: 22px; }
.holla-heading::before, .holla-heading::after { content: ""; width: 46px; height: 1px; background: var(--fg-mute); display: inline-block; }
.section-title { text-align: center; margin: 78px 0 4px; }
.section-title .eyebrow { font-size: 11px; letter-spacing: .38em; text-transform: uppercase; color: var(--accent); }
.section-title h2 { font-family: var(--sans); font-size: 34px; font-weight: 500; letter-spacing: -.02em; margin-top: 10px; color: var(--fg); }

/* ---------- Каталог: masonry, натуральные пропорции ---------- */
.views-element-container > div { columns: 3 320px; column-gap: 40px; padding: 30px 0 100px; display: block; }
.card.views-row {
  display: flex; flex-direction: column; margin: 0 0 46px;
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
}
.card.views-row .views-field-field-image { order: 1; overflow: hidden; background: var(--bg-soft); }
.card.views-row .views-field-field-image .field-content, .card.views-row .views-field-field-image a { display: block; }
.card.views-row .views-field-field-image img { width: 100%; height: auto; display: block; transition: transform 1.1s var(--ease); }
.card.views-row:hover .views-field-field-image img { transform: scale(1.045); }
.card.views-row .views-field-title { order: 2; text-align: center; padding: 18px 8px 2px; }
.card.views-row .views-field-title a { font-family: var(--sans); font-size: 16px; letter-spacing: .01em; color: var(--fg); font-weight: 500; }
.card.views-row .views-field-title a:hover { color: var(--accent); }
.card.views-row .views-field-field-catalog { order: 3; text-align: center; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--fg-mute); }
.card.views-row .price-from, .card.views-row .views-field-nothing { order: 4; text-align: center; font-size: 13px; letter-spacing: .06em; color: var(--fg-dim); padding-top: 7px; }

/* ---------- Фильтр ориентации: тонкий сегментированный (Apple) ---------- */
.holla-filter-wrap { column-span: all; -webkit-column-span: all; display: flex; justify-content: center; margin: 56px 0 36px; width: 100%; }
.holla-filters { display: inline-flex; gap: 2px; padding: 4px; background: var(--bg-soft); border-radius: 100px; }
.holla-heading { column-span: all; -webkit-column-span: all; }
.holla-filters a { font-size: 12px; letter-spacing: .04em; color: var(--fg-dim); padding: 9px 22px; border-radius: 100px; transition: all .3s var(--ease); white-space: nowrap; }
.holla-filters a:hover { color: var(--fg); }
.holla-filters a.is-active { background: #fff; color: var(--fg); box-shadow: 0 1px 3px rgba(0,0,0,.09), 0 1px 1px rgba(0,0,0,.04); }

/* ---------- Слайдер главной ---------- */
.hero { position: relative; overflow: hidden; }
.holla-slider { display: flex !important; gap: 0 !important; padding: 0 !important; margin: 0 !important; list-style: none; columns: unset !important; transition: transform .6s cubic-bezier(.5,0,.2,1); will-change: transform; }
.holla-slider .slide.views-row { flex: 0 0 100%; position: relative; display: block; margin: 0; }
.holla-slider .slide.views-row article, .holla-slider .slide.views-row article > div, .holla-slider .slide.views-row .field { margin: 0; display: block; }
.holla-slider .slide.views-row img { width: 100%; height: 78vh; min-height: 460px; object-fit: cover; display: block; }
.holla-slider .slide.views-row .node__title, .holla-slider .slide.views-row h2 { display: none; }
.holla-slider .slide.views-row::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.28), transparent 40%); pointer-events: none; z-index: 1; }
.holla-slider .slide-title { position: absolute; bottom: 60px; left: 0; width: 100%; text-align: center; z-index: 2; }
.holla-slider .slide-title a { font-family: var(--serif); font-size: 46px; font-weight: 500; letter-spacing: .05em; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; border: 1px solid rgba(255,255,255,.35); transition: all .28s var(--ease); }
.hero-arrow:hover { background: #fff; color: var(--fg); }
.hero-arrow.prev { left: 30px; } .hero-arrow.next { right: 30px; }
.hero-dots { position: absolute; bottom: 26px; left: 0; width: 100%; display: flex; justify-content: center; gap: 9px; z-index: 5; }
.hero-dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; cursor: pointer; padding: 0; transition: all .25s; }
.hero-dots button.active { background: #fff; width: 22px; border-radius: 4px; }

/* ---------- Страница товара ---------- */
.commerce-product-full { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; padding: 56px 0 96px; align-items: start; }
.commerce-product-full .product__image { background: var(--bg-soft); }
.commerce-product-full .product__image img { width: 100%; height: auto; }
.commerce-product-full .product__panel { padding-top: 6px; }
.commerce-product-full .product__title { font-family: var(--sans); font-size: 28px; font-weight: 600; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 18px; }
.commerce-product-full .product__panel .field--name-body { color: var(--fg-dim); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.commerce-product-full .field__label,
.commerce-product-full .field--name-variations > .field__label,
.commerce-product-full .product__panel > .field > .field__label { display: none !important; }

/* цена */
.product--variation-field--variation_price__1, .field--name-price {
  font-family: var(--sans); font-size: 26px; color: var(--fg); font-weight: 600; letter-spacing: -.01em;
  border-top: 1px solid var(--line); padding-top: 26px; margin: 4px 0 22px;
}
.product--variation-field--variation_price__1 > div:first-child, .product--variation-field--variation_list_price__1 { display: none; }

/* опции */
.commerce-order-item-add-to-cart-form .form-item { margin: 22px 0; }
.commerce-order-item-add-to-cart-form label { display: block; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 11px; font-weight: 400; }
.commerce-order-item-add-to-cart-form select {
  width: 100%; padding: 15px 18px; background: #fff; color: var(--fg); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 14px; appearance: none; transition: border-color .25s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='%23171717' d='M5.5 7L0 0h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
}
.commerce-order-item-add-to-cart-form select:hover { border-color: var(--fg-mute); }
.commerce-order-item-add-to-cart-form select:focus { outline: none; border-color: var(--fg); }
.commerce-order-item-add-to-cart-form .form-actions { margin-top: 32px; }

/* ---------- Кнопки (единый стиль) ---------- */
.button, main a.button,
.commerce-order-item-add-to-cart-form .button--add-to-cart,
.commerce-order-item-add-to-cart-form input[type="submit"],
.page-cart .button, .commerce-checkout-flow input[type="submit"], .commerce-checkout-flow .button {
  display: inline-block; width: auto; padding: 18px 40px; background: var(--fg); color: #fff !important;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  border: 1px solid var(--fg); border-radius: 0; cursor: pointer; transition: all .3s var(--ease);
}
.commerce-order-item-add-to-cart-form .button--add-to-cart, .commerce-order-item-add-to-cart-form input[type="submit"] { width: 100%; padding: 20px; }
.button:hover, main a.button:hover,
.commerce-order-item-add-to-cart-form .button--add-to-cart:hover,
.commerce-order-item-add-to-cart-form input[type="submit"]:hover,
.page-cart .button:hover, .commerce-checkout-flow input[type="submit"]:hover {
  background: #fff; color: var(--fg) !important; border-color: var(--fg);
}

/* ---------- Корзина / оформление ---------- */
.page-cart, .commerce-checkout-flow { max-width: 1040px; margin: 40px auto 80px; }
.page-cart h1.page-title, .commerce-checkout-flow h1 { font-family: var(--sans); font-weight: 500; letter-spacing: -.02em; text-align: center; }
.view-commerce-cart-form table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.view-commerce-cart-form th { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute); font-weight: 400; text-align: left; padding: 12px; border-bottom: 1px solid var(--line); }
.view-commerce-cart-form td { padding: 18px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.view-commerce-cart-form img { width: 84px; height: auto; }
.commerce-checkout-flow input[type="text"], .commerce-checkout-flow input[type="email"], .commerce-checkout-flow input[type="tel"], .commerce-checkout-flow select, .commerce-checkout-flow textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); font-family: var(--sans); font-size: 14px;
}
.commerce-checkout-flow .form-item { margin: 18px 0; }
.messages { border-radius: 0; }

/* ---------- Текстовые разделы — журнальная вёрстка, с воздухом ---------- */
h1.page-title, .block-page-title-block h1, #block-holla-page-title h1 {
  font-family: var(--sans); font-size: 40px; font-weight: 500; text-align: center;
  margin: 96px auto 6px; letter-spacing: -.02em; line-height: 1.1; max-width: 900px;
}
.block-page-title-block h1::after, h1.page-title::after, #block-holla-page-title h1::after {
  content: ""; display: block; width: 40px; height: 1px; background: var(--fg-mute); margin: 28px auto 0;
}
.path-product #block-holla-page-title, .path-product .block-page-title-block, .path-product h1.page-title,
.path-frontpage #block-holla-page-title, .path-frontpage .block-page-title-block { display: none; }
.page-cart #block-holla-page-title h1::after, .commerce-checkout-flow h1::after { display: none; }
.node--type-page { max-width: 720px; margin: 0 auto 120px; }
.field--name-field-content {
  max-width: 720px; margin: 46px auto 110px; font-size: 17.5px; line-height: 1.95; color: #2b2b2b; letter-spacing: .006em;
}
.paragraph { margin: 0 0 30px; }
.paragraph img { max-width: 100%; height: auto; border-radius: 8px; }
.paragraph--type--text p { margin: 0 0 20px; }
.paragraph--type--text a { color: var(--fg); border-bottom: 1px solid var(--fg-mute); transition: border-color .25s; }
.paragraph--type--text a:hover { border-bottom-color: var(--fg); }
.paragraph--type--text h2, .node--type-page h2 { font-family: var(--sans); font-size: 27px; font-weight: 600; margin: 52px 0 16px; letter-spacing: -.02em; line-height: 1.2; }
.paragraph--type--text h3 { font-family: var(--sans); font-size: 21px; font-weight: 600; margin: 34px 0 12px; letter-spacing: -.015em; }
.paragraph--type--image img, .paragraph--type--text_image img { margin: 34px auto; display: block; }
.paragraph--type--image .field--name-field-caption, .field--name-field-caption { text-align: center; font-size: 12px; letter-spacing: .1em; color: var(--fg-mute); margin-top: 12px; }

/* ---------- Пагинатор ---------- */
nav.pager, .pager { margin: 30px 0 80px; column-span: all; }
.pager__items { display: flex; justify-content: center; align-items: center; gap: 4px; list-style: none; padding: 0; flex-wrap: wrap; }
.pager__item { margin: 0; }
.pager__item a, .pager__item.is-active > * {
  display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px;
  font-size: 14px; color: var(--fg-dim); transition: all .25s var(--ease); border: 1px solid transparent;
}
.pager__item a:hover { color: var(--fg); border-color: var(--line); }
.pager__item.is-active > * { color: var(--fg); border-bottom: 1px solid var(--accent); }
.pager__item--ellipsis { color: var(--fg-mute); }

/* ---------- Подвал ---------- */
footer { border-top: 1px solid var(--line); padding: 78px 0 52px; margin-top: 40px; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 48px; }
.foot-brand { font-family: var(--serif); font-size: 30px; color: var(--fg); font-weight: 600; letter-spacing: .02em; }
.foot-brand::after { content: ""; }
.foot-tag { color: var(--fg-dim); font-size: 13.5px; margin-top: 14px; max-width: 340px; line-height: 1.7; }
.foot-bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; color: var(--fg-mute); font-size: 12px; letter-spacing: .04em; flex-wrap: wrap; gap: 10px; }

/* служебное */
.visually-hidden, .visually-hidden.focusable:not(:focus):not(:focus-within) { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
header .block > h2, header nav > h2, .region-primary-menu h2 { display: none; }
#skip-link, .skip-link { position: absolute; left: -9999px; }

/* ---------- Адаптив ---------- */
@media (max-width: 1200px) { .views-element-container > div { columns: 2 300px; } }
@media (max-width: 960px) {
  .nav { flex-wrap: wrap; height: auto; gap: 16px; padding: 16px 0; }
  .nav-links { margin: 0; order: 3; width: 100%; flex-wrap: wrap; gap: 18px; justify-content: center; }
  .commerce-product-full { grid-template-columns: 1fr; gap: 36px; }
  .holla-slider .slide-title a { font-size: 32px; }
  .wrap { padding: 0 22px; }
}
@media (max-width: 620px) { .views-element-container > div { columns: 1; } .holla-heading { font-size: 12px; letter-spacing: .3em; } }

/* ---------- Форма входа / аккаунт ---------- */
.page-user-login main, .path-user main { max-width: 440px; margin: 0 auto; }
.user-login-form, .user-pass, #user-login-form { max-width: 420px; margin: 20px auto 90px; }
.user-login-form .form-item, .user-pass .form-item { margin: 18px 0; }
.user-login-form label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 9px; }
.user-login-form input[type="text"], .user-login-form input[type="password"],
.user-pass input[type="text"], .user-pass input[type="email"] {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); font-family: var(--sans); font-size: 15px; background: #fff; transition: border-color .25s;
}
.user-login-form input:focus, .user-pass input:focus { outline: none; border-color: var(--fg); }
.user-login-form .form-actions, .user-pass .form-actions { margin-top: 26px; }
.user-login-form input[type="submit"], .user-pass input[type="submit"] {
  width: 100%; padding: 17px; background: var(--fg); color: #fff; border: 1px solid var(--fg);
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: all .3s var(--ease);
}
.user-login-form input[type="submit"]:hover, .user-pass input[type="submit"]:hover { background: #fff; color: var(--fg); }
.user-login-form .description, .user-pass .description { font-size: 12px; color: var(--fg-mute); margin-top: 6px; }
nav.tabs, .block-local-tasks-block ul { display: flex; gap: 6px; justify-content: center; list-style: none; padding: 0; margin: 24px 0; }
nav.tabs a { font-size: 12px; letter-spacing: .1em; padding: 8px 18px; color: var(--fg-dim); border: 1px solid var(--line); border-radius: 100px; }
nav.tabs a.is-active { background: var(--fg); color: #fff; border-color: var(--fg); }

/* ---------- Логотип (изображение) ---------- */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; border-radius: 4px; }
.foot-logo { height: 58px; width: auto; display: block; border-radius: 5px; }
@media (max-width: 960px) { .brand-logo { height: 40px; } }

/* названия слайдов — только для админки, на слайдере скрыты */
.holla-slider .slide-title { display: none !important; }

/* ---------- Текст героя (имя + подзаголовок) поверх слайдера ---------- */
#block-holla-hero-text {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; pointer-events: none; padding: 0 24px;
}
.hero-eyebrow { color: rgba(255,255,255,.92); font-size: 13px; letter-spacing: .34em; text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero-title { color: #fff; font-family: var(--sans); font-size: 66px; font-weight: 500; letter-spacing: -.02em; line-height: 1.02; margin: 0; text-shadow: 0 4px 40px rgba(0,0,0,.4); }
@media (max-width: 900px) { .hero-title { font-size: 40px; } .hero-eyebrow { font-size: 11px; letter-spacing: .24em; } }

/* ---------- Иконки редактирования слайдера (для залогиненных, при наведении) ---------- */
.hero-edit-tools { position: absolute; top: 20px; left: 50%; transform: translateX(-50%) translateY(-10px); z-index: 20; display: flex; gap: 8px; opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.hero--editable:hover .hero-edit-tools { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hero-edit-tool { background: rgba(0,0,0,.55); backdrop-filter: blur(12px); color: #fff !important; font-size: 12px; letter-spacing: .03em; padding: 9px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.28); white-space: nowrap; transition: all .2s var(--ease); }
.hero-edit-tool:hover { background: #fff; color: #171717 !important; border-color: #fff; }

/* ---------- Опции размер/материал/цвет — кнопки-пилюли ---------- */
.opt-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.opt-pill {
  font-family: var(--sans); font-size: 13px; color: var(--fg-dim); background: #fff;
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap; line-height: 1;
}
.opt-pill:hover { border-color: var(--fg-mute); color: var(--fg); }
.opt-pill.sel { background: var(--fg); color: #fff; border-color: var(--fg); }

/* ---------- Витрина: продажи ещё не открыты ---------- */
.commerce-order-item-add-to-cart-form .button--add-to-cart,
.commerce-order-item-add-to-cart-form input[type="submit"],
.commerce-order-item-add-to-cart-form .form-actions { display: none !important; }
.commerce-order-item-add-to-cart-form::after {
  content: "Продажи скоро откроются"; display: block; margin-top: 28px; padding: 16px;
  border: 1px solid var(--line); border-radius: 4px; text-align: center;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-mute);
}
/* скрыть иконки корзины и избранного (оставить поиск) */
.nav-actions a[aria-label="Корзина"], .nav-actions a[aria-label="Избранное"] { display: none !important; }

/* ---------- Корзина: аккуратная вёрстка (на будущее) ---------- */
form.commerce-cart-form, .view-commerce-cart-form, .page-cart .region-content { max-width: 980px; margin-left: auto; margin-right: auto; }
.view-commerce-cart-form table { width: 100%; border-collapse: collapse; table-layout: auto; margin: 8px 0 0; }
.view-commerce-cart-form thead th { text-align: left; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-mute); font-weight: 500; padding: 10px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.view-commerce-cart-form tbody td { padding: 16px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; text-align: left; }
.view-commerce-cart-form tbody img { width: 70px; height: auto; border-radius: 3px; }
.view-commerce-cart-form input[type="number"], .view-commerce-cart-form input[type="text"] { width: 64px; padding: 8px 10px; border: 1px solid var(--line); font-family: var(--sans); }
.view-commerce-cart-form td input[type="submit"] { width: auto !important; padding: 8px 14px !important; font-size: 10px !important; background: transparent !important; color: var(--fg-dim) !important; border: 1px solid var(--line) !important; }
.view-commerce-cart-form td input[type="submit"]:hover { border-color: var(--fg) !important; color: var(--fg) !important; }
.commerce-cart-form .form-actions, form.commerce-cart-form .form-actions { display: flex; gap: 12px; justify-content: flex-end; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.order-total-line, .order-total-line__totals { text-align: right; }

/* ---------- Мобильное меню-гамбургер ---------- */
.nav-burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: all .3s var(--ease); }
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .wrap { padding: 0 20px; }
  .nav { height: 66px; gap: 12px; flex-wrap: nowrap; }
  .brand-logo { height: 38px; }
  .nav-actions { order: 1; margin-left: auto; gap: 2px; }
  .nav-burger { display: flex; order: 2; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 20px 26px 60px; margin: 0; overflow-y: auto;
    transform: translateX(100%); transition: transform .35s var(--ease); visibility: hidden;
  }
  body.nav-open .nav-links { transform: none; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-links > li { width: 100%; text-align: center; border-bottom: 1px solid var(--line-soft); position: static; }
  .nav-links > li > a { font-size: 15px; padding: 20px 0; width: 100%; letter-spacing: .14em; }
  .nav-links > li > a::before { display: none; }
  .nav-links li.has-children > a::after { content: ""; }
  .nav-links .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 14px; backdrop-filter: none; min-width: 0; }
  .nav-links .submenu a { padding: 11px 0; color: var(--fg-mute); }
  .commerce-product-full { grid-template-columns: 1fr; gap: 34px; padding: 30px 0 70px; }
  .commerce-product-full .product__title { font-size: 24px; }
  h1.page-title, .block-page-title-block h1, #block-holla-page-title h1 { font-size: 30px; margin-top: 56px; }
  .hero-edit-tools { position: static; transform: none; opacity: 1; visibility: visible; flex-wrap: wrap; justify-content: center; margin: 10px 0; }
}

/* ---------- SEO-текст раздела (под каталогом) ---------- */
.section-intro { max-width: 820px; margin: 20px auto 70px; text-align: center; color: var(--fg-dim); font-size: 15px; line-height: 1.8; padding-top: 40px; border-top: 1px solid var(--line-soft); }
