.elementor-29227 .elementor-element.elementor-element-d4c3452{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3afae12 *//* =========================
   MENU (scoped)
   ========================= */

.wm-menu-scope .menu-widget{
  --bg:#0b0b0b;
  --text:#ffffff;
  --muted:#ADADAD;
  --border:#535353;
  --accent:#E42619;

  --hover-underline: rgba(228,38,25,.45);

  background: radial-gradient(1200px 700px at 50% 0%, #1a1a1a 0%, var(--bg) 60%);
  font-family: Helvetica, Arial, sans-serif;
  padding: 30px 20px;
}

/* ===== TOP TABS ===== */
.wm-menu-scope .menu-top-tabs{
  display:flex;
  justify-content:center;
  gap:0;
  max-width:1100px;
  margin:0 auto 26px;
}

.wm-menu-scope .menu-top-tabs .top-tab{
  appearance:none;
  -webkit-appearance:none;

  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  letter-spacing: .6px;
  padding: 16px 40px;
  cursor:pointer;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;

  outline: none;
  box-shadow: none;

  -webkit-tap-highlight-color: transparent;
  user-select: none;

  position: relative;
  z-index: 1;
}

/* divider between buttons via shadow */
.wm-menu-scope .menu-top-tabs .top-tab + .top-tab{
  border-left: 0 !important;
  box-shadow: inset 1px 0 0 var(--border) !important; /* серый разделитель */
}

.wm-menu-scope .menu-top-tabs .top-tab:hover,
.wm-menu-scope .menu-top-tabs .top-tab:focus,
.wm-menu-scope .menu-top-tabs .top-tab:focus-visible{
  background: transparent;
  outline: none;
  box-shadow: none;
}

/* active: always red + red dividers only on active (not on neighbour) */
.wm-menu-scope .menu-top-tabs .top-tab.is-active{
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color:#fff !important;
  z-index: 2;
  box-shadow:
    inset 1px 0 0 var(--accent),
    inset -1px 0 0 var(--accent);
}

.wm-menu-scope .menu-top-tabs .top-tab.is-active:active,
.wm-menu-scope .menu-top-tabs .top-tab.is-active:focus,
.wm-menu-scope .menu-top-tabs .top-tab.is-active:focus-visible{
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow:
    inset 1px 0 0 var(--accent),
    inset -1px 0 0 var(--accent) !important;
}

/* IMPORTANT: neighbour after active must NOT become red */
.wm-menu-scope .menu-top-tabs .top-tab.is-active + .top-tab{
  box-shadow: inset 1px 0 0 var(--border) !important;
}

/* ===== SUBTABS (desktop buttons) ===== */
.wm-menu-scope .menu-subtabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:22px 30px;
  max-width:1100px;
  margin: 0 auto 18px;
}

.wm-menu-scope .menu-subtabs .subtab{
  appearance:none;
  -webkit-appearance:none;

  background:transparent;
  border:0;

  color: rgba(255,255,255,.35);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor:pointer;

  padding: 10px 0;
  position:relative;
  font-size: 20px;

  display: inline-flex;
  align-items: center;

  outline: none;
  box-shadow: none;
}

.wm-menu-scope .menu-subtabs .subtab:hover,
.wm-menu-scope .menu-subtabs .subtab:focus,
.wm-menu-scope .menu-subtabs .subtab:focus-visible{
  background: transparent;
  outline: none;
  box-shadow: none;
}

.wm-menu-scope .menu-subtabs .subtab.is-active{
  color:#fff;
}

/* underline */
.wm-menu-scope .menu-subtabs .subtab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease, background-color .16s ease;
}

.wm-menu-scope .menu-subtabs .subtab:hover::after{
  background: var(--hover-underline);
  transform: scaleX(1);
}

.wm-menu-scope .menu-subtabs .subtab.is-active::after{
  background: var(--accent);
  transform: scaleX(1);
}

/* ===== LIST ===== */
.wm-menu-scope .menu-list{
  max-width:1100px;
  margin: 0 auto;
}

/* ===== ITEM (desktop) ===== */
.wm-menu-scope .menu-item{
  border: 0;
  border-bottom: 1px solid var(--border);

  padding: 0;
  padding-bottom: 15px;
  margin: 0;
  margin-bottom: 15px;

  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 22px;
  align-items: center;
  background: transparent;
}

/* no image */
.wm-menu-scope .menu-item:not(:has(.thumb)){
  grid-template-columns: 1fr auto;
}

.wm-menu-scope .menu-item .thumb{
  width: 150px;
  height: 100px;
  overflow: hidden;
  background:#111;
}

.wm-menu-scope .menu-item .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.wm-menu-scope .menu-item .meta{
  min-width: 0;
}

.wm-menu-scope .menu-item .title{
  font-size: 26px;
  color: var(--text);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 10px;

  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
}

.wm-menu-scope .menu-item .desc{
  font-size: 16px;
  color: var(--muted);
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 1.35;

  max-width: 300px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* price */
.wm-menu-scope .menu-item .price,
.wm-menu-scope .menu-item .price-wrap .price{
  font-size: 25px;
  color: var(--accent);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 900;
  white-space: nowrap;
}

.wm-menu-scope .menu-item .price-wrap{
  display:flex;
  align-items:center;
  gap:18px;

  justify-self: end;
  white-space: nowrap;
  text-align: right;
}

.wm-menu-scope .menu-item .price-wrap .vol,
.wm-menu-scope .menu-item .price-wrap .note{
  font-size: 18px;
  color: rgba(255,255,255,.55);
  font-weight: 800;
  white-space: nowrap;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px){
  .wm-menu-scope .menu-widget{ padding: 22px 14px; }

  .wm-menu-scope .menu-top-tabs{
    flex-wrap: wrap;
    gap:10px;
  }

  .wm-menu-scope .menu-subtabs{
    justify-content:flex-start;
    gap:14px 18px;
    width: 100%;
  }

  .wm-menu-scope .menu-item{
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  /* WAS 270px -> +100px = 370px */
  .wm-menu-scope .menu-item .thumb{
    width: 100%;
    height: 320px;
  }

  .wm-menu-scope .menu-item .meta{ order: 2; }

  .wm-menu-scope .menu-item .desc{
    max-width: 100%;
    -webkit-line-clamp: 4;
  }

  .wm-menu-scope .menu-item .title{
    font-size: 20px;
  }

  .wm-menu-scope .menu-item .price,
  .wm-menu-scope .menu-item .price-wrap .price{
    font-size: 20px;
  }

  /* price row (Ag left, price right) */
  .wm-menu-scope .menu-item .price-wrap{
    order: 4;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }

  .wm-menu-scope .menu-item .price-wrap .note,
  .wm-menu-scope .menu-item .price-wrap .vol{
    margin-right: auto;
    white-space: nowrap;
  }

  .wm-menu-scope .menu-item .price-wrap .price{
    margin-left: auto;
    white-space: nowrap;
  }
}

/* =========================
   MOBILE SELECT (dropdown)
   ========================= */
@media (max-width: 768px){
  .wm-menu-scope .menu-subtabs{
    position: relative;
  }

  .wm-menu-scope .menu-subselect{
    width:100%;
    box-sizing: border-box;

    height: 52px;
    line-height: 52px;
    padding: 0 44px 0 14px;

    background: rgba(0,0,0,.10);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 0;

    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;

    outline: none;
    box-shadow: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    overflow: visible;
    -webkit-tap-highlight-color: transparent;
  }

  /* arrow */
  .wm-menu-scope .menu-subtabs::after{
    content:"";
    position:absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,.65);
    border-bottom: 2px solid rgba(255,255,255,.65);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
  }

  .wm-menu-scope .menu-subselect:focus,
  .wm-menu-scope .menu-subselect:active{
    outline: none;
    box-shadow: none;
  }
}/* End custom CSS */