.shine-effect.cdz-banner {
    overflow: hidden;
    position: relative;
}
.shine-effect.cdz-banner:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
}
.cdz-shadow {
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.08);
}
.abs-img {
    position: relative;
    display: block;
    overflow: hidden;
}


.abs-img img[src] {
    object-fit: cover;
    height: 100%;
}
@media only screen and (max-width: 767px) {
    .cdz-rounded-border {
    border-radius: 5px;
}
.shine-effect.cdz-banner .abs-img {
    padding-bottom: 30% !important;
}
.abs-img img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    max-height: none;
}
}

.info-container.info-xmas {

    border-radius: 0;
    border: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #e8f3ff 0%, #ffffff 40%, #e8f3ff 100%) !important;
}


.info-container.info-xmas::before,
.info-container.info-xmas::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 2px);
    background-size: 20px 20px, 26px 26px;
    opacity: 0.45;
    animation: snowfall 12s linear infinite;
}

.info-container.info-xmas::after {
    animation-duration: 18s;
    opacity: 0.35;
    mix-blend-mode: screen;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(40px);
    }
}

/* Общий вид блока */
.info-container.info-xmas .info-block {
    background: transparent;
    color: #111827 !important;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 0 16px;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* SVG ёлка */
.xmas-tree {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: tree-sway 2.6s ease-in-out infinite;
}

/* Лёгкое покачивание ёлки */
@keyframes tree-sway {
    0%   { transform: rotate(-2.5deg); }
    50%  { transform: rotate(2.5deg); }
    100% { transform: rotate(-2.5deg); }
}

/* Свечение ёлки целиком */
.tree-body {
    animation: tree-glow 3.4s ease-in-out infinite;
    transform-origin: 32px 40px;
}

@keyframes tree-glow {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(33,150,83,0.0));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(33,150,83,0.6));
    }
}

/* Мерцание звезды */
.tree-star {
    animation: star-pulse 2.2s ease-in-out infinite;
    transform-origin: 32px 12px;
}

@keyframes star-pulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.12); }
}

/* Гирлянды – разные фазы мерцания */
.ornament {
    transform-origin: center;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.9));
}

.ornament-1 {
    animation: ornament-blink 1.8s ease-in-out infinite;
}

.ornament-2 {
    animation: ornament-blink 2.1s ease-in-out infinite;
    animation-delay: 0.3s;
}

.ornament-3 {
    animation: ornament-blink 2.4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.ornament-4 {
    animation: ornament-blink 2s ease-in-out infinite;
    animation-delay: 0.9s;
}

@keyframes ornament-blink {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
    }
    60% {
        opacity: 0.7;
    }
}
/* Мобильная адаптация: поменьше ёлка, текст не ломается */
@media only screen and (max-width: 766px) {
    .info-container.info-xmas .info-block {
        font-size: 14px;
        gap: 8px;
        padding-inline: 10px;
    }

    .xmas-tree {
    width: 48px;
    height: 54px;
}
}
/* Обёртка слайдера */
.info-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 48px;           /* подгони под высоту баннера */

    z-index: 1;
}



@media only screen and (max-width:767px) {
 
.info-slider {
   
    height: 108px;           /* подгони под высоту баннера */

}
html[lang="ru"] .info-slider {
    height: 125px;
}
}
.info-slider .info-container {
    position: absolute;
    inset: 0;
    margin: 7px 0px !important;
    transform: translateX(100%);
    opacity: 0;
    animation: banner-slide 10s infinite;
}
/* Первый слайд */
.info-slider .info-container:nth-child(1) {
    animation-delay: 0s;
}

/* Второй слайд */
.info-slider .info-container:nth-child(2) {
    animation-delay: 5s;
}

/* Анимация листания, как в top-slider */
@keyframes banner-slide {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    5% {
        transform: translateX(0);
        opacity: 1;
    }
    /* держим слайд на экране */
    45% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}




@media only screen and (min-width:767px) { 

 .info-slider {
 
    height: 53px;
    z-index: 1;
}

}
.cms-index-index .columns {
    padding-inline: 5px;
}
/* Грид перенести на все страницы*/


.sidebar-menu-main {
    min-width: 250px;
}
.cg__sidebar {
    padding: 16px 14px;
}
.cg__sidebar-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 12px;
    border-bottom: 1px solid var(--cg-border);
    margin-bottom: 10px;
}
.cg__sidebar-title {
    font: 600 25px/1.2 Montserrat, -apple-system, Segoe UI, Roboto, Arial;
    margin: 0;
    color: #dd0000;
}
.cg__grid {
    display: grid;
    gap: 16px;
    border: none;
    padding-top: 20px;
    grid-template-columns: repeat(5, minmax(220px,1fr));
}
section.cg {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    --cg-gap: 16px;
}
.cg {
    grid-template-columns: minmax(0, var(--cg-sidebar)) minmax(0, 1fr);

    --cg-sidebar: 260px;
    --cg-border: #e5e7eb;
    --cg-sep: #e9edf2;
    --cg-bg: #fff;
    --cg-muted: #6b7280;
    display: grid;
    grid-template-columns: var(--cg-sidebar) 1fr;
    gap: var(--cg-gap);
    align-items: start;
    background: #fff;
}

.cg__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px 14px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: all 0.25s ease-in-out;
    text-decoration: none !important;
}
.cg__thumb {
    width: 100% !important;
    background: transparent;
    height: clamp(160px, 22vh, 230px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.cg__thumb img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.cg__title {
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
    color: #111;
    min-height: 2.6em;
    display: block;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
img.img-mobile {
    display: none !important;
}
@media only screen and (max-width:767px) {
    .cg__thumb {
    height: 120px !important;
}
.cg__title {
    font-size: 14px !important;
    line-height: 1.3;
    word-break: break-all;
}
    .cg__item {
    padding: 0px;
    min-width: 0;
    
}
    .cg__sidebar-head {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}
.cg__grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 4px !important;
    padding: 10px;
    padding-top: 0px;
}
nav.cg__nav {
    display: none;
}
.cg__nav-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 0 0;
}
    .hidden-xs {
    display: none !important;
}
}

@media only screen and (min-width:767px) {
    .sides {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}
}

/* Основной контейнер */
.zaza-landing {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    box-sizing: border-box;
    /* Если блок свернут, добавляем плавную анимацию */
    transition: max-height 0.3s ease-out;
}

/* Заголовки */
.zaza-landing h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    line-height: 1.3;
}

.zaza-landing h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #111;
    border-bottom: 1px solid #eee; /* Легкая линия под заголовком */
    padding-bottom: 8px;
}

.zaza-landing h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #222;
}

/* Ссылки внутри заголовков */
.zaza-landing h3 a {
    text-decoration: none;
    transition: color 0.2s;
}

.zaza-landing h3 a:hover {
    color: #dd0000; /* Красный цвет при наведении (бренд) */
    text-decoration: underline;
}

/* Обычный текст */
.zaza-landing p {
    margin-bottom: 12px;
    color: #555;
    text-align: justify; /* Опционально: выравнивание по ширине */
}

/* Списки (ul, ol) */
.zaza-landing ul, 
.zaza-landing ol {
    margin-bottom: 16px;
    padding-left: 20px;
    color: #444;
}

.zaza-landing li {
    margin-bottom: 6px;
}

/* Жирный текст */
.zaza-landing strong {
    color: #000;
    font-weight: 600;
}

/* Обычные ссылки в тексте */
.zaza-landing a {
    color: #0066c0;
    text-decoration: none;
}

.zaza-landing a:hover {
    text-decoration: underline;
}

/* Эффект "затухания" текста внизу, если блок не развернут */
/* Работает, если у тебя есть класс expanded при клике */
.zaza-landing:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

/* Мобильная адаптация */
@media only screen and (max-width: 767px) {
    .zaza-landing {
        padding: 16px;
        font-size: 13px;
    }
    .cg {
        grid-template-columns: 1fr;
    }
    .zaza-landing h1 {
        font-size: 18px;
    }
    
    .zaza-landing h2 {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .zaza-landing h3 {
        font-size: 15px;
    }
    .category-description p {
    display: none;
}

.top-container {
    margin-top: 13px;
}

.catalog-category-view .cg__grid {
    padding: 0;
}

div#category-view-container {
    PADDING: 0;
}
.container.flex.flex-col.md\:flex-row.flex-wrap.mb-2 {
    padding-left: 6px;
}
main#maincontent {
    MARGIN-TOP: 0px;
}
.customer-account-create main#maincontent {
    MARGIN-TOP: 27px;
}
h1.page-title {
    margin-bottom: 0;
    FONT-SIZE: 22PX;
}
.container.flex.flex-col.md\:flex-row.flex-wrap.mb-0 {
    PADDING-INLINE: 4px;
}
}
section#product\.attributes\.before_description .card {
    padding: 0;
    border: none;
}
@media only screen and (min-width:1027px) {
    .cg__grid {
    grid-template-columns: repeat(4, minmax(220px,1fr));
}
}
@media only screen and (min-width:1300px) {
    .cg__grid {
    grid-template-columns: repeat(5, minmax(220px,1fr));
}
}
@media only screen and (min-width:1500px) {
    .cg__grid {
    grid-template-columns: repeat(6, minmax(220px,1fr));
}
}
/* Убрать системный крестик у input[type="search"] */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

@media only screen and (min-width:767px) and (max-width:1027px) {
.sidebar-menu-main {
    display: none !important;
}
.cg__sidebar {
    display: none !important;
}
  .cg__grid {
    grid-template-columns: repeat(3, minmax(220px,1fr));
}

}
 .top-slider {
            position: relative;
            overflow: hidden;
            height: 25px;
            line-height: 25px;
            z-index: 50;
            white-space: nowrap;
          }

          .top-slider .slide {
            position: absolute;
            left: 0; right: 0;
            transform: translateX(100%);
            opacity: 0;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slideText 18s infinite; /* 3 слайда × 6s = 18s */
          }

          .top-slider .slide:nth-child(1) { animation-delay: 0s; }
          .top-slider .slide:nth-child(2) { animation-delay: 6s; }
          .top-slider .slide:nth-child(3) { animation-delay: 12s; }

          @keyframes slideText {
            0%   { transform: translateX(100%); opacity: 0; }
            5%   { transform: translateX(0);    opacity: 1; }   /* плавный заезд */
            33%  { transform: translateX(0);    opacity: 1; }   /* держим около 6s */
            38%  { transform: translateX(-100%); opacity: 0; }  /* уезжает */
            100% { transform: translateX(-100%); opacity: 0; }
          }

          .top-slider p {
              margin-bottom: 0px !important;
              margin-left: 7px;
              font-size: 16px !important;
          }
.checkout-cart-index .message.success {
    display: none;
}
header.page-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background-color: rgba(255, 255, 255, 0.88); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.columns {
    padding-inline: 5px;
}
@media (max-width: 720px) {
  /* Повышаем специфичность и гасим заголовок */
  .pl3d-article .pl3d-table thead { 
    display: none !important; 
  }

  .pl3d-article .pl3d-table {
    display: block !important;
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    table-layout: fixed !important;
  }
  .pl3d-article .pl3d-table tbody { 
    display: block !important; 
    width: 100% !important;
  }

  /* Каждую строку превращаем в карточку */
  .pl3d-article .pl3d-table tbody tr {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #e1e6ef;
    border-radius: 12px;
    background: #f9fbff;
    box-sizing: border-box;
  }

  /* Ячейки = строки с лейблом слева и значением справа (стеком вниз) */
  .pl3d-article .pl3d-table tbody td {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .pl3d-article .pl3d-table tbody td + td {
    padding-top: 6px !important; /* визуальный разделитель */
    border-top: 1px dashed #e1e6ef !important;
  }

  /* Подписи берем из data-label */
  .pl3d-article .pl3d-table tbody td[data-label]::before {
    content: attr(data-label) " — ";
    display: inline-block;
    min-width: 44%;
    font-weight: 600;
    color: #2b3647;
    vertical-align: top;
  }
}

    :root{
      --bg: #ffffff;
      --fg: #0e1116;
      --muted: #5b6472;
      --accent: #2b7cff;
      --soft: #eef3ff;
      --border: #e6e8ee;
      --radius: 14px;
      --maxw: 880px;
      --lh: 1.6;
      --h1: clamp(28px, 4vw, 40px);
      --h2: clamp(20px, 2.4vw, 26px);
      --h3: clamp(18px, 2.2vw, 22px);
      --p: 16px;
      --space: 16px;
      --space-lg: 28px;
      --space-xl: 44px;
    }

    .pl3d-article{
      color: var(--fg);
      background: var(--bg);
      line-height: var(--lh);
      font-size: var(--p);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .pl3d-wrap{
      margin: 0 auto;
      padding: clamp(16px, 3vw, 28px);
    }

    .pl3d-lead{
      margin: 8px 0 var(--space-lg);
      color: var(--muted);
    }
    /* === GALLERY GRID (Адаптивная галерея) === */
  .pl3d-gallery {
    display: grid;
    /* Автоматически размещает картинки: 3 в ряд на ПК, 1-2 на планшете, 1 на мобильном */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 28px 0;
    width: 100%;
    box-sizing: border-box;
  }

  .pl3d-gallery figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e1e6ef;
    border-radius: 12px;
    padding: 8px; /* Небольшой отступ внутри рамки */
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  }

  .pl3d-gallery img {
    width: 100%;
    height: 200px; /* Фиксированная высота для аккуратности */
    object-fit: cover; /* Картинка обрезается, но заполняет блок без искажений */
    border-radius: 8px;
    background: #f4f6f8; /* Заглушка пока грузится */
  }

  .pl3d-gallery figcaption {
    font-size: 13px;
    color: #5b6472;
    margin-top: 8px;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
  }
    h1,h2,h3{
      line-height: 1.25;
      margin: 0 0 10px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    h1{ font-size: var(--h1); margin-bottom: 12px; }
    h2{ font-size: var(--h2); margin-top: var(--space-xl); }
    h3{ font-size: var(--h3); margin-top: var(--space-lg); }

    p{ margin: 0 0 var(--space); }

    .pl3d-card{
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: clamp(14px, 2.2vw, 18px);
      box-shadow: 0 1px 0 rgba(0,0,0,.02);
    }

    /* Таблицы */
    .pl3d-table{
      width: 100%;
      border-collapse: collapse;
      margin: var(--space-lg) 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pl3d-table thead th{
      background: var(--soft);
      color: #0b1526;
      text-align: left;
      font-weight: 600;
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
    }
    .pl3d-table tbody td{
      padding: 12px 14px;
      border-top: 1px solid var(--border);
      vertical-align: top;
    }
    .pl3d-table tbody tr:nth-child(even) td{
      background: #fafbff;
    }

    /* Блок эксперта */
    .pl3d-note{
      border: 1px solid var(--border);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius);
      padding: 14px 16px;
      background: #fbfdff;
      margin: var(--space-lg) 0;
    }
    .pl3d-note b{ color: #093e9e; }

    /* Списки */
    .pl3d-bullets{
      margin: 0 0 var(--space-lg);
      padding-left: 20px;
    }
    .pl3d-bullets li{ margin-bottom: 8px; }

    /* Малые элементы */
    .pl3d-meta{
      color: var(--muted);
      font-size: 14px;
      margin-bottom: var(--space);
    }
    .pl3d-kbd{
      background: #f6f7fb;
      border: 1px solid var(--border);
      border-bottom-color: #dfe3ec;
      padding: 2px 6px;
      border-radius: 6px;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
      font-size: 13px;
    }

    /* Респонсив таблиц: стакаем в карточки на узких экранах */
    @media (max-width: 720px){
      .pl3d-table thead{ display:none; }
      .pl3d-table, .pl3d-table tbody, .pl3d-table tr, .pl3d-table td{ display:block; width:100%; }
      .pl3d-table tr{ border-top: 1px solid var(--border); }
      .pl3d-table tbody td{
        border: none;
        border-bottom: 1px dashed var(--border);
        padding: 10px 12px;
      }
      .pl3d-table tbody td[data-label]::before{
        content: attr(data-label) " — ";
        font-weight: 600;
        color: #0b1526;
      }
    }

     .pl3d-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0 24px;
  }
  .pl3d-feature{
    flex:1 1 calc(50% - 10px);
    background:#f8faff;
    border:1px solid #e1e6ef;
    border-radius:10px;
    padding:10px 14px;
    box-shadow:0 1px 2px rgba(0,0,0,0.04);
    min-width:120px;
  }
  .pl3d-feature b{
    display:block;
    font-size:13px;
    color:#6b7485;
    margin-bottom:3px;
    text-transform:uppercase;
    letter-spacing:0.02em;
  }
  .pl3d-feature span{
    font-size:15px;
    font-weight:600;
    color:#0b1526;
  }
  @media(max-width:480px){
    .pl3d-feature{ flex:1 1 100%; }
  }