/*
 * Tiara CSS runtime bundle.
 * Generated by scripts/build-tiara-css.sh from semantic owner files in catalog/view/theme/default/stylesheet/tiara/.
 * Edit the source owner files, then rebuild this bundle. Do not edit this file by hand.
 */

/* Source: 00-tokens.css */
/*
 * Tiara CSS architecture: tokens.
 * Keep only design variables here: colors, fonts, spacing, radius, z-index,
 * shadows, and motion durations. Do not add component selectors.
 */

:root {
  /* Typography */
  --tiara-font-body: var(--main-font, "Inter Tight", sans-serif);
  --tiara-font-heading: var(--second-font, "NAMU", sans-serif);
  --tiara-font-promo: "Gotham Pro", sans-serif;

  --tiara-weight-light: 300;
  --tiara-weight-regular: 400;
  --tiara-weight-medium: 500;
  --tiara-weight-semibold: 600;

  /* Color */
  --tiara-color-ink: #1e1e1e;
  --tiara-color-ink-strong: #111;
  --tiara-color-black: #000;
  --tiara-color-white: #fff;
  --tiara-color-warm-ink: #3a3227;
  --tiara-color-muted: #747474;
  --tiara-color-muted-soft: #909090;
  --tiara-color-line: #ded8cf;
  --tiara-color-line-soft: #ede9e3;
  --tiara-color-surface: #fff;
  --tiara-color-surface-warm: #fbfaf8;
  --tiara-color-surface-muted: #f6f6f4;
  --tiara-color-card-warm: #f7f5f2;
  --tiara-color-promo-bg: #dedbd4;
  --tiara-color-promo-text: #3c3834;
  --tiara-color-sale: #ff3030;
  --tiara-color-error: #c0392b;
  --tiara-color-success: #27ae60;

  /* Layout */
  --tiara-layout-max: var(--layout-max, 1920px);
  --tiara-container-pad: var(--container-pad, 15px);
  --tiara-container-pad-mobile: var(--container-pad-mobile, 5px);
  --tiara-mobile-header-height: 64px;
  --tiara-promo-bar-height: var(--tiara-promo-height, 24px);

  /* Radius */
  --tiara-radius-sharp: 3px;
  --tiara-radius-control-sm: 5px;
  --tiara-radius-control: 8px;
  --tiara-radius-card: 10px;
  --tiara-radius-panel: 12px;
  --tiara-radius-pill: 999px;
  --tiara-radius-circle: 50%;

  /* Component sizing */
  --tiara-button-height-sm: 40px;
  --tiara-button-height: 48px;
  --tiara-badge-size: 14px;
  --tiara-icon-touch: 44px;

  /* Z-index */
  --tiara-z-header: 100;
  --tiara-z-overlay: 1000;
  --tiara-z-drawer: 1200;
  --tiara-z-modal: 1300;
  --tiara-z-toast: 1400;

  /* Motion */
  --tiara-motion-fast: 130ms ease;
  --tiara-motion-panel: 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --tiara-motion-standard: 260ms ease;
  --tiara-motion-soft: 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Source: 01-base.css */
/*
 * Tiara CSS architecture: base.
 * Body, typography defaults, links, images, focus-visible, and reduced motion
 * belong here. Keep specificity low.
 */

.tiara-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tiara-focus-ring:focus-visible {
  outline: 1px solid var(--tiara-color-ink, #1e1e1e);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tiara-motion {
    transition-duration: 1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
  }
}

/* Source: 02-layout.css */
/*
 * Tiara CSS architecture: layout.
 * Containers, page spacing, mobile/desktop primitives, and scroll-lock
 * conventions belong here.
 */

.tiara-container {
  width: min(100%, var(--tiara-layout-max, 1920px));
  margin-inline: auto;
  padding-inline: var(--tiara-container-pad-mobile, 5px);
}

.tiara-page-section {
  padding-block: clamp(28px, 7vw, 72px);
}

.tiara-stack {
  display: grid;
  gap: var(--tiara-stack-gap, 16px);
}

.tiara-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tiara-cluster-gap, 12px);
  align-items: center;
}

@media (min-width: 992px) {
  .tiara-container {
    padding-inline: var(--tiara-container-pad, 15px);
  }
}

@media (min-width: 641px) and (max-width: 992px) {
  body.mobile #content {
    width: 100%;
  }
}

/* Source: 03-forms-buttons.css */
/*
 * Tiara CSS architecture: forms and buttons.
 * Shared button, input, label, validation, checkbox, radio, toggle, disabled,
 * and loading states belong here.
 */

.tiara-button {
  min-height: var(--tiara-button-height, 48px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--tiara-color-ink, #1e1e1e);
  border-radius: var(--tiara-radius-control, 8px);
  background: var(--tiara-color-ink, #1e1e1e);
  color: var(--tiara-color-white, #fff);
  font-family: var(--tiara-font-body, var(--main-font));
  font-size: 12px;
  font-weight: var(--tiara-weight-medium, 500);
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color var(--tiara-motion-standard, 260ms ease),
    border-color var(--tiara-motion-standard, 260ms ease),
    color var(--tiara-motion-standard, 260ms ease),
    opacity var(--tiara-motion-fast, 130ms ease);
}

.tiara-button:hover,
.tiara-button:focus {
  color: var(--tiara-color-white, #fff);
  text-decoration: none;
}

.tiara-button.is-secondary,
.tiara-button--secondary {
  background: var(--tiara-color-white, #fff);
  color: var(--tiara-color-ink, #1e1e1e);
}

.tiara-button.is-secondary:hover,
.tiara-button.is-secondary:focus,
.tiara-button--secondary:hover,
.tiara-button--secondary:focus {
  color: var(--tiara-color-ink, #1e1e1e);
}

.tiara-button:disabled,
.tiara-button.is-disabled,
.tiara-button.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.tiara-field {
  display: grid;
  gap: 8px;
}

.tiara-label {
  color: var(--tiara-color-muted, #747474);
  font-family: var(--tiara-font-body, var(--main-font));
  font-size: 11px;
  font-weight: var(--tiara-weight-medium, 500);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tiara-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--tiara-color-line, #ded8cf);
  border-radius: var(--tiara-radius-control, 8px);
  background: var(--tiara-color-white, #fff);
  color: var(--tiara-color-ink, #1e1e1e);
  font-family: var(--tiara-font-body, var(--main-font));
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0;
  padding: 0 14px;
}

.tiara-input::placeholder {
  color: var(--tiara-color-muted-soft, #909090);
}

/* Source: 04-components-header.css */
/*
 * Tiara CSS architecture: header component.
 * Header structure, icon buttons, badges, transparent/scrolled states, and
 * shared header state styling belong here.
 */

/* Source: 04-components-menu.css */
/*
 * Tiara CSS architecture: menu component.
 * Mobile menu drawer, submenu panels, menu account block, and menu state
 * styling belong here.
 */

/* Source: 04-components-search.css */
/*
 * Tiara CSS architecture: search component.
 * Header search, mobile search overlay, suggestions dropdown, and search
 * component states belong here.
 */

/* Source: 04-components-cart.css */
/*
 * Tiara CSS architecture: cart component.
 * Header cart, minicart drawer, cart badges, cart item controls, and cart
 * component states belong here.
 */

/* Source: 04-components-product-card.css */
/*
 * Tiara CSS architecture: product card component.
 * Shared product card styling for category, search, wishlist, home modules,
 * and related products belongs here.
 */

/* Source: 04-components-empty-state.css */
/*
 * Tiara CSS architecture: empty state component.
 * Shared empty state layout, icon, copy rhythm, and CTA styling belongs here.
 */

.tiara-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(28px, 9vw, 56px) 16px;
  text-align: center;
}

.tiara-empty__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--tiara-radius-circle, 50%);
  background: var(--tiara-color-surface-muted, #f6f6f4);
  color: var(--tiara-color-warm-ink, #3a3227);
}

.tiara-empty__title {
  margin: 0;
  color: var(--tiara-color-ink, #1e1e1e);
  font-family: var(--tiara-font-heading, var(--second-font));
  font-size: 22px;
  font-weight: var(--tiara-weight-light, 300);
  line-height: 1.2;
  letter-spacing: 0;
}

.tiara-empty__text {
  max-width: 30em;
  margin: 0;
  color: var(--tiara-color-muted, #747474);
  font-family: var(--tiara-font-body, var(--main-font));
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0;
}

.tiara-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

/* Source: 04-components-breadcrumbs.css */
/*
 * Tiara CSS architecture: breadcrumbs component.
 * Generic breadcrumbs and explicitly documented category breadcrumb variants
 * belong here.
 */

/* Source: 05-pages-home.css */
/*
 * Tiara CSS architecture: home page.
 * Page-specific home layout only. Shared components must stay in component
 * files.
 */

.common-home .main_video__video-el,
.common-home .main_video__poster {
  object-position:
    var(--tiara-hero-focal-desktop-x, 50%)
    var(--tiara-hero-focal-desktop-y, 50%);
}

.common-home .main_video__overlay picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .common-home .main_video__video-el,
  .common-home .main_video__poster {
    object-position:
      var(--tiara-hero-focal-tablet-x, var(--tiara-hero-focal-desktop-x, 50%))
      var(--tiara-hero-focal-tablet-y, var(--tiara-hero-focal-desktop-y, 50%));
  }
}

@media (max-width: 640px) {
  .common-home .main_video__video-el,
  .common-home .main_video__poster {
    object-position:
      var(--tiara-hero-focal-mobile-x, var(--tiara-hero-focal-desktop-x, 50%))
      var(--tiara-hero-focal-mobile-y, var(--tiara-hero-focal-desktop-y, 50%));
  }
}

/* Source: 05-pages-category.css */
/*
 * Tiara CSS architecture: category/search listing pages.
 * Page-specific catalog layout only. Shared product cards, breadcrumbs,
 * filter controls, and empty states should stay in component/vendor files.
 */

.top-page {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 200px;
}

/* Source: 05-pages-product.css */
/*
 * Tiara CSS architecture: product page.
 * Page-specific product layout only. Shared product cards and buttons should
 * stay in component files.
 */

/* Source: 05-pages-account.css */
/*
 * Tiara CSS architecture: account pages.
 * Account dashboard, profile, wishlist page context, orders, rewards, and
 * auth page layout belong here when migrated from legacy inline/main.css.
 */

/* Source: 05-pages-checkout.css */
/*
 * Tiara CSS architecture: checkout pages.
 * Checkout page layout and checkout-specific context belong here. Shared form
 * controls should stay in 03-forms-buttons.css.
 */

/* Source: 05-pages-info.css */
/*
 * Tiara CSS architecture: information pages.
 * About, delivery/payment, exchange/service, offer, contacts, and reusable
 * information page typography/layout belong here.
 */

/* Source: 06-utilities.css */
/*
 * Small storefront utilities used to replace legacy inline style attributes.
 * Prefer component/page ownership for new UI; keep this file limited to generic primitives.
 */

.tiara-u-hidden {
  display: none;
}

.tiara-u-display-flex {
  display: flex;
}

.tiara-u-display-block {
  display: block;
}

.tiara-u-full-width {
  width: 100%;
}

.tiara-u-w-50 {
  width: 50%;
}

.tiara-u-w-third {
  width: 33.3%;
}

.tiara-u-w-20px {
  width: 20px;
}

.tiara-u-max-200 {
  max-width: 200px;
}

.tiara-u-max-680 {
  max-width: 680px;
}

.tiara-u-clear-sentinel {
  clear: both;
  height: 1px;
  width: 100%;
}

.tiara-u-justify-center {
  justify-content: center;
}

.tiara-u-align-center {
  align-items: center;
}

.tiara-u-flex-center-y {
  align-items: center;
  display: flex;
}

.tiara-u-text-center {
  text-align: center;
}

.tiara-u-nowrap {
  white-space: nowrap;
}

.tiara-u-semibold {
  font-weight: 600;
}

.tiara-u-relative {
  position: relative;
}

.tiara-u-absolute-sticker-corner {
  left: unset;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

.tiara-u-margin-top-0 {
  margin-top: 0;
}

.tiara-u-label-pad-0 {
  padding-left: 0;
}

.tiara-u-inline-image-gap {
  display: inline-block;
  margin-right: 3px;
}

.tiara-u-checkbox-auto {
  width: auto;
}

.tiara-u-file-note {
  margin-top: 3px;
  max-width: 200px;
}

.tiara-u-svg-sprite {
  left: -9999px;
  position: absolute;
}

.tiara-u-svg-fill-current {
  fill: currentColor;
}

.tiara-u-svg-enable-bg {
  enable-background: new 0 0 512 512;
}

.tiara-u-social-svg-reset {
  fill-rule: nonzero;
  opacity: 1;
  stroke: none;
  stroke-dasharray: none;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 10;
  stroke-width: 0;
}

.tiara-u-social-svg-path {
  fill-rule: nonzero;
  opacity: 1;
  stroke: none;
  stroke-dasharray: none;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 10;
  stroke-width: 1;
}

.tiara-u-line-through {
  text-decoration: line-through;
}

.tiara-u-breadcrumb-text {
  color: #000;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: initial;
}

.tiara-u-dynamic-color {
  color: var(--tiara-dynamic-color);
}

.checkout-col-left,
.checkout-col-fix-right {
  width: var(--tiara-opc-column-width);
}

.free-ship-bar-fill,
.rating-container-top-full,
.product-reviews-rating-line-value {
  width: var(--tiara-progress-width);
}

.faq_list {
  order: var(--tiara-faq-order);
}

.product__item--stickers {
  left: var(--tiara-product-stickers-left);
}

.first-color,
.second-color {
  background-color: var(--tiara-swatch-color);
}

.ocf-value-color {
  background-color: var(--tiara-ocf-color);
}

.ocf-value-image {
  background-image: var(--tiara-ocf-image);
}

.box-info-category {
  background: var(--tiara-box-category-bg, transparent);
}

/* Source: 90-vendor-overrides.css */
/*
 * Tiara CSS architecture: vendor overrides.
 * Scoped overrides for Bootstrap, OCFilter, Select2, Swiper, intlTelInput,
 * Magnific, Slick, and module CSS belong here.
 */

/* Source: 98-template-extracted.css */
/*
 * Static CSS extracted from storefront Twig <style> blocks.
 * Do not add new rules here by hand; move stable component rules into 04/05 Tiara files during cleanup.
 */


/* Source: catalog/view/theme/default/template/account/address_list.twig:64 */
.group-item input {
      background: #fff !important;
    }

    .group__items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 10px;
    }

    .action-address a {
      height: 24px;
      border: none;
      padding: 0;
      box-shadow: none;
      display: flex;
      align-items: center;
      color: rgb(142, 145, 146);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      line-height: 15px;
      text-align: left;
    }

    .action-address a svg {
      margin-left: 10px;
    }

    .action-address {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .item-address {
      padding-bottom: 33px;
      border-bottom: 1px solid rgb(64, 171, 53);
      margin-bottom: 17px;
    }

    .item-address:last-child {
      border:0;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    a.btn.btn-add-address {
      width: 100%;
      box-sizing: border-box;
      border: 1px solid rgb(248, 248, 248);
      border-radius: 5px;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 37px;
      color: rgb(142, 145, 146);
      font-family: Montserrat;
      font-size: 12px;
      line-height: 15px;
    }

    .btn.btn-add-address svg {
      margin-left: 10px;
    }

    #account-address {
      border-bottom: 1px solid rgb(248, 248, 248);
    }

    #account__info .form-horizontal .form-group {
      width: auto;
    }

    @media(min-width: 992px) {
      #account-address {
        margin-bottom: 40px;
      }
    }


/* Source: catalog/view/theme/default/template/account/edit.twig:449 */
.row__account {
    display: flex;
    gap: 14px;
}

.mobile .row__account {
    flex-direction: column;
    gap: 5px;
}


#column-left {
    margin-left: 0;
    padding: 0;
    display: block !important;
}

.row__account #content {
    width: max-content;
}

.mobile .row__account #content {
    width: 100%;
}
.error-account-phone {
    color: red;
    font-weight: 600;
}

    .account-btn{
        width: 136px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #3A3227;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        color: #fff;
        cursor: pointer;
        font-family: var(--main-font);
        border-radius: 5px;
    }
    .default-input{
        display: flex;
        height: 54px;
        padding: 14.667px 20px 14.667px 26.667px;
        align-items: center;
        border-radius: 12px;
        background: var(--Black-5, #F4F4F4);
    }
    body.account-edit .form-group {
        margin-bottom: 30px;
    }

    body.account-edit .form-group:last-child {
        margin-bottom: 0px;
    }

    body.mobile.account-edit .form-group .col-sm-12 {
        padding: 0;
    }

    body.account-edit label {
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        color: #1e1e1e;
        margin-bottom: 0;
        font-family: var(--main-font);
    }
    body.account-edit fieldset{
        padding: 0;
    }
    body.account-edit .buttons{
        margin: 0;
    }
    body.account-edit .form-control{
        padding: 11px 0;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #1e1e1e;
        background-color: transparent;
        height: auto;
        box-shadow: none;
        font-family: var(--main-font);
    }

    .otp-verification { display: none; margin-top: 16px; }
    .otp-step { display: flex; align-items: center; gap: 12px; }
    .otp-hint { margin: 0; font-size: 13px; color: #777; font-family: var(--main-font); }
    .otp-btn {
        width: auto; height: 40px; padding: 0 20px;
        font-size: 12px; white-space: nowrap;
        transition: opacity 0.2s;
    }
    .otp-btn:disabled { opacity: 0.6; cursor: default; }
    .otp-code-input {
        width: 140px !important; max-width: 140px;
        text-align: center; font-size: 18px; letter-spacing: 6px;
        font-family: var(--main-font);
    }
    .otp-status { margin-top: 8px; font-size: 13px; min-height: 20px; }
    .otp-error-msg { color: #c0392b; }
    .otp-info-msg { color: #777; }
    .otp-verified {
        display: none; margin-top: 8px;
        color: #27ae60; font-weight: 600; font-size: 14px;
        font-family: var(--main-font);
    }
    @media (max-width: 640px) {
        .otp-step { flex-direction: column; align-items: stretch; gap: 8px; }
        .otp-code-input { width: 100% !important; max-width: 100%; }
        .otp-btn { width: 100%; }
    }

    body.mobile .form-control {
        width: 100%;
    }

    body.account-edit legend {
        font-family: var(--main-font);
        font-weight: 600;
        font-size: 18px;
        line-height: 133%;
        color: #090a0a;
        border-bottom: 0;
        margin: 0;
    }

    body.mobile.account-edit legend {
        padding: 0;
    }

    @media(min-width: 992px){
        .default-input{
            width: 335px;
        }
    }
	@media(max-width: 640px){
    .wrapper-page {
      flex-direction: column;
    }
    #content, #column-left{
      width: 100%;
    }

  }


  @media (max-width: 991.98px) {
  .row__account {
    flex-direction: column;
    gap: 5px;
  }


   .wrapper-page #content {
      flex-direction: column;
      width: 100%;
    }

  .row__account #content {
    width: 100%;
  }

  body.account-edit .form-group .col-sm-12 {
    padding: 0;
  }

  body .form-control {
    width: 100%;
  }

  body.account-edit legend {
    padding: 0;
  }
}


/* Source: catalog/view/theme/default/template/account/edit.twig:631 */
body.account-edit #account-edit #content {
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body.account-edit .wrapper-page {
    display: grid !important;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 34px !important;
  }

  body.mobile.account-edit .wrapper-page {
    display: flex !important;
    flex-direction: column;
    gap: 24px !important;
  }

  body.account-edit legend {
    margin-bottom: 22px !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }


/* Source: catalog/view/theme/default/template/account/modal_forgotten.twig:38 */
#modal-forgotten .modal-dialog{
        max-width: 100%;
        width: 370px;
        border-radius: 0;
        overflow: hidden;
    }
    .forgotten .form-control {
        height: 35px;
        color: #8E9192;
        font-family: var(--main-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.8;
        border: 1px solid #F8F8F8;
        border-color: #F8F8F8 !important;
        border-radius: 0;
        box-shadow: none;
    }

    .forgotten fieldset {
        padding: 0;
    }

    .forgotten label {
        padding-bottom: 10px;
    }

    .forgotten .pull-right {
        float: none !important;
    }

    /* .forgotten__label {
        color: #52555A;
        font-size: 14px;
        font-family: "Gilroy-Bold";
        font-weight: 700;
        position: relative;
    } */

    .forgotten__label::after {
        content: '* ';
        color: #F00;
        font-weight: bold;
    }

    .forgotten__wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .forgotten__inner form {
        margin-bottom: 0;
    }

    .forgotten__inner legend {
        margin-bottom: 10px;
        padding: 0;
        border: none;
    }

    .forgotten__clouse-svg {
        width: 13px;
        height: 13px;
    }

    .forgotten__btn {
        top: 23px;
        right: 30px;
    }

    .forgotten__title {
        font-family: var(--main-font);
        font-weight: 600;
        font-size: 20px;
        line-height: 22px;
        max-width: 320px;
        color: #0D0802;
        margin-top: 0;
    }

    .forgotten__inner {
        margin: 0 auto;
        max-width: 332px;
        padding: 20px 0;
    }

    #send-forgotten {
        margin-top: 20px;
        width: 100%;
        height: 35px;
        font-weight: 600;
        font-size: 12px;
        color: #fff;
        line-height: 1;
        padding: 0 45px;
        text-align: center;
        background-image: none;
        background-color: #1e1e1e;
        position: relative;
        border-radius: 0;
        text-shadow: none;
        box-shadow: none;
        border: 1px solid #1e1e1e;
        overflow: hidden;
        font-family: var(--main-font);
    }


/* Source: catalog/view/theme/default/template/account/modal_login.twig:139 */
#modal-login .modal-dialog{
            width: 320px;
        }
        .login_wrapper {
            padding: 20px;
        }
        .login_wrapper form {
            margin-bottom: 0;
        }
        .login__eye-btn{
            top: 10px;
        }

        .login__clouse-svg {
            position: absolute;
            height: 20px;
            width: 20px;
        }

        .login .title-page {
            font-size: 48px;
        }
        #form-login > div > label{
            display: none;
        }
        .login__wrapper {
            position: relative;
        }

        .login .form-horizontal .form-group {
            margin: 0;
            display: block;
        }
        .login .form-horizontal .form-group + .form-group {
            margin-top: 15px;
            display: block;
        }
        .login__inner {
            padding: 0 !important;
        }
        .user-session {
            margin: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .login__clouse {
            position: relative;
            top: 27px;
            right: 20px;
        }
        .login #content {
            min-height: auto;
        }
        .modal-header {
            position: relative;
            border: 0;
        }
        .modal-header .close {
            position: absolute;
            right: 20px;
        }
        .form-login {
            margin-left: 0;
            width: 100% !important;
        }

        .form-group {
            position: relative;
        }

        .login .forgotten-link {
            /* margin: 15px 0px; */
            white-space: nowrap;
        }
        .user-session input{
            display: none;
        }
        .input-remember {
            position: relative;
            cursor: pointer;
            margin-bottom: 0;
            padding-left: 25px; /* Задаємо відступ для тексту */
            font-family: var(--main-font);
            font-weight: 400;
            font-size: 12px;
        }
        .input-remember::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            border: 1px solid #dedede; /* Кастомізуємо рамку */
            background-color: #fff; /* Заливка */
        }
        .input-remember::after {
            /*
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            */
            width: 15px;
            height: 15px;
        }
        .user-session input[type="checkbox"]:checked + .input-remember::after {
            opacity: 1; /* Показуємо позначку галочки, коли чекбокс відмічено */
        }
        input[type="checkbox"]:checked + .input-remember::after {
            position: absolute;
            content: "✔";
            top: -1px;
            left: 2px;
            color: #1e1e1e;
            font-size: 14px;
            /*
            background-image: url('/image/check.svg');
            background-color: #1e1e1e;
            background-repeat: no-repeat;
            background-position: center;
            */
        }
        .login .btn {
            width: 100%;
            height: 37px;
            color: #fff;
            background: #1e1e1e;
            border: 1px solid #1e1e1e;
            padding: 9px 86px;
            font-size: 12px;
            font-family: var(--main-font);
            font-weight: 600;
            min-height: 32px;
            border-radius: 3px;
        }

        .login__btn {
            position: absolute;
            background: transparent;
            z-index: 10;
            right: 6px;
            top: 7px;
        }
        #form-login input#input-email-modal, #form-login input#input-password-modal {
            border: 1px solid #F8F8F8 !important;
            height: 35px;
            border-radius: 3px;
            box-shadow: none;
            font-size: 16px !important;
        }
        .login__inner {
            margin: 0 auto;
            max-width: 500px;
            margin-bottom: 50px;
            padding: 40px;
            border-radius: 4px;
        }

        .view_pass {
            background: transparent;
        }

        body.account-login {
            background: #fff;
            overflow-x: hidden;
        }

        /*ul.breadcrumb {
         display: none;
        }*/

        .flex-container>div {
            flex-grow: 0;
        }

        .bg-page::before {
            content: "";
            position: absolute;
            width: 100vw;
            height: 60%;
            left: 50%;
            margin-left: -50vw;
            top: 0;
            z-index: -1;
            background: #F6F5EE;
        }


        .simpleregister-button-block {
            padding: 0;
        }

        .account-login .form-horizontal .form-group {
            margin: 0 0 17px;
        }

        .account-login .form-horizontal .form-group .forgotten-link {
            float: right;
            margin-top: 0;
            display: inline-block;
        }

        .account-login .form-horizontal .form-group .forgotten-link:hover {
            color: #1e1e1e;
            text-decoration: underline;
        }

        .account-login .simpleregister-block-content {
            padding: 0;
            margin-left: -15px;
            margin-right: -15px;
            margin-bottom: 30px;
        }

        .title-modal {
            font-family: var(--main-font);
            font-weight: 600;
            font-size: 20px;
            line-height: 22px;
            max-width: 320px;
            color: #0D0802;
            margin-top:0;
        }
        .simpleregister-have-account {
            text-align: center;
            color: #64748B;
            font-size: 16px;
            line-height: 24px;
            font-family: var(--main-font);
            font-weight: 600;
            margin-top: 20px !important;
        }

        .simpleregister-have-account a {
            color: #1e1e1e;
            -webkit-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
            font-size: 12px;
            font-family: var(--main-font);
            font-weight: 600;
        }

        .account-simpleregister fieldset.form-horizontal>div {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .account-login .form-horizontal .control-label {
            text-align: left;
            margin-bottom: 6px;
            width: 100%;
            color: #191D23;
            font-family: var(--main-font);
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            line-height: normal;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .account-login .form-horizontal input.btn {
            margin-top: 10px;
            color: #fff;
            font-family: var(--main-font);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            margin-top: 15px;
            padding: 12px 20px;
            width: 100%;
            min-height: 48px;
            background: #1E1E1E;
            border-radius: 8px;
            box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
            -webkit-transition: all 0.3s ease 0s;
            -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
        }

        .account-login .form-horizontal input.btn.focus,
        .account-login .form-horizontal input.btn:focus,
        .account-login .form-horizontal input.btn:hover {
            color: unset;
            background-color: unset;
            outline: none;
        }

        .account-login .form-horizontal .form-group>div {
            width: 100%;
        }

        .flex-container {
            display: flex;
            background: #fff;
        }

        .img-register {
            flex-grow: 0;
            max-width: 530px;
        }

        .img-register img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .forgotten-link {
            color: #1e1e1e;
            font-family: var(--main-font);
            font-style: normal;
            font-weight: 400;
            font-size: 12px;
            line-height: normal;
            text-align: right;
            cursor: pointer;
        }
        .forgotten-link:hover{
            color: #1e1e1e;
        }
        .img-register {
            position: relative;
        }

        #modal-login .control-label::after {
            content: ' *';
            color: #F00;
            font-weight: bold;
        }

        @media(min-width: 1280px) {
            .form-login {
                /*   margin-left: 70px; */
                width: 400px;
            }
        }

        @media(max-width: 1200px) {
            .flex-container {
                flex-direction: column;
                margin-top: 0;
            }

            .form-login {
                margin-left: 0px;
                width: 100%;
            }

            .img-register img {
                width: 100%;
            }

            .title-page {
                font-size: 36px;
            }

            .form-login {
                padding-top: 0;
            }

            #content {
                padding-bottom: 30px;
                min-height: auto;
            }

            .img-register {
                display: none;
            }
        }

        @media(max-width: 768px) {
            .login__inner {
                padding: 30px;
            }

            .registe__clouse {
                top: -8px;
                right: -10px;
            }
        }

        @media(max-width: 320px) {
            #content {
                padding-bottom: 12px;
            }

            .account-login .form-horizontal input.btn-yellow {
                margin-top: 22px;
            }
        }

        #modal-login {
            background: rgba(13, 13, 13, 0.78);
        }

        #modal-login .modal-dialog {
            width: min(320px, calc(100vw - 24px));
            margin: 10px auto;
        }

        #modal-login .modal-content {
            border: 0;
            border-radius: 4px;
            box-shadow: none;
            background: #fff;
            overflow: hidden;
        }

        #modal-login .modal-header {
            min-height: 0;
            padding: 0;
        }

        #modal-login .modal-body {
            padding: 0;
        }

        #modal-login .login_wrapper {
            padding: 20px 20px 22px;
        }

        #modal-login .title-modal {
            margin: 0 38px 12px 0;
            font-family: var(--main-font, Arial, sans-serif);
            font-size: 20px;
            line-height: 1.2;
            font-weight: 600;
            color: #000;
            text-align: left;
        }

        #modal-login .login__clouse {
            top: 18px;
            right: 20px;
            width: 18px;
            height: 18px;
            padding: 0;
            opacity: 1;
            background: transparent;
        }

        #modal-login .login__clouse svg {
            display: block;
            width: 13px;
            height: 13px;
        }

        #modal-login .login .form-horizontal .form-group,
        #modal-login .form-horizontal .form-group {
            margin: 0;
        }

        #modal-login .login .form-horizontal .form-group + .form-group,
        #modal-login .form-horizontal .form-group + .form-group {
            margin-top: 16px;
        }

        #modal-login #form-login input#input-email-modal,
        #modal-login #form-login input#input-password-modal {
            height: 35px;
            padding: 0 12px;
            border: 1px solid #f0f0f0 !important;
            border-radius: 2px;
            background: #fff;
            box-shadow: none;
            color: #1e1e1e;
            font-family: var(--main-font, Arial, sans-serif);
            font-size: 16px !important;
            font-weight: 400;
        }

        #modal-login #form-login input#input-password-modal {
            padding-right: 42px;
        }

        #modal-login #form-login input::placeholder {
            color: #9ca3af;
        }

        #modal-login #form-login input:focus {
            border-color: #d8d8d8 !important;
            outline: 0;
        }

        #modal-login .login__btn {
            top: 5px;
            right: 7px;
            width: 26px;
            height: 26px;
            padding: 0;
            border: 0;
        }

        #modal-login .login__btn svg {
            width: 22px;
            height: 22px;
        }

        #modal-login .user-session {
            margin: 15px 0 16px;
            gap: 12px;
        }

        #modal-login .input-remember,
        #modal-login .forgotten-link {
            font-family: var(--main-font, Arial, sans-serif);
            font-size: 12px;
            line-height: 15px;
            font-weight: 400;
            color: #0d0802;
        }

        #modal-login .input-remember {
            padding-left: 25px;
        }

        #modal-login .input-remember::before {
            width: 15px;
            height: 15px;
            border-color: #dedede;
            border-radius: 0;
        }

        #modal-login input[type="checkbox"]:checked + .input-remember::after {
            top: -1px;
            left: 2px;
            color: #1e1e1e;
            font-size: 13px;
            line-height: 15px;
        }

        #modal-login .login .btn,
        #modal-login #send-login {
            width: 100%;
            height: 37px;
            min-height: 37px;
            margin: 0;
            padding: 0 20px;
            border: 1px solid #1e1e1e;
            border-radius: 3px;
            background: #1e1e1e;
            color: #fff;
            font-family: var(--main-font, Arial, sans-serif);
            font-size: 12px;
            line-height: 37px;
            font-weight: 600;
            text-align: center;
        }

        #modal-login .modal-login-social {
            margin-top: 6px;
        }

        #modal-login .modal-login-social:empty {
            display: none;
        }

        #modal-login .modal-login-social .popup-social,
        #modal-login .modal-login-social .social_block {
            padding: 0;
            margin: 0;
        }

        #modal-login .modal-login-social .social_block {
            display: block;
        }

        #modal-login .modal-login-social .soc_ico.google,
        #modal-login .modal-login-social .social-container-box {
            width: 100%;
            min-height: 38px;
            border: 1px solid #ededed;
            border-radius: 3px;
            background: #fff;
            box-shadow: none;
        }

        #modal-login .simpleregister-have-account {
            margin: 45px 0 0 !important;
            line-height: 1;
        }

        #modal-login .simpleregister-have-account a {
            font-size: 12px;
            font-weight: 600;
            color: #000;
        }

        @media (max-width: 480px) {
            #modal-login .modal-dialog {
                margin-top: 10px;
            }
        }


/* Source: catalog/view/theme/default/template/account/modal_register.twig:10 */
.modal-header {
        border: 0 !important;
    }

    fieldset.form-horizontal {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


/* Source: catalog/view/theme/default/template/account/modal_register.twig:145 */
.registe__clouse{
                                position: relative;
                                top: 27px;
                                right: 30px;
                            }
                            .modal-header {
                                position: relative;
                            }
                            .wrapper-box {
                                width: 100%;
                            }

                            .register__log {
                                text-decoration: underline;
                            }

                            .register .modal_login {
                                font-size: 14px;
                            }

                            .simpleregister-have-account a:hover {
                                color: #52555A !important;

                            }
                            #agreement_checkbox .checkbox a,
                            #agreement_checkbox .checkbox label {
                                font-size: 10px;
                            }
                            .login .forgotten-link:hover {
                                color: #C64747;
                            }
                            #agreement_checkbox .checkbox label {
                                color:#0D0802;
                                font-family: 'Gilroy', sans-serif;
                                font-weight: 400;
                                line-height: 1.5;
                            }
                            .register .form-horizontal input, .form-horizontal select{
                                padding-left: 10px;
                                border: 1px solid #F8F8F8 !important;
                                height: 35px;
                                font-size: 12px;
                                border-radius: 0;
                            }

                            .register .form-horizontal .control-label {
                                margin-bottom: 6px;
                                color: #344054;
                                font-family: 'Gilroy', sans-serif;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 14px;
                                line-height: 1;
                                text-align: left;
                            }

                            .register .form-control {
                                padding: 12px 16px;
                                height: 48px;
                                font-family: 'Gilroy', sans-serif;
                                font-style: normal;
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 1;
                                color: #101828;
                                border-radius: 4px;
                                border: 1px solid #64748b;
                                box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
                            }

                            .has-error .form-control {
                                border-color: #ff0000;
                            }

                            body.account-simpleregister {
                                background: #fff;
                                overflow-x: hidden;
                            }

                            span#agreement_checkbox .checkbox input {
                                display: none;
                            }
                            .simple-content.flex-container {
                                display: flex;
                                background: #fff;
                            }

                            .simple-content.flex-container>div {
                                flex-grow: 0;
                            }

                            .bg-page:before {
                                content: "";
                                position: absolute;
                                width: 100vw;
                                height: 60%;
                                left: 50%;
                                margin-left: -50vw;
                                top: 0;
                                z-index: -1;
                                background: #F6F5EE;
                            }

                            .form-register {
                                width: 100% !important;
                            }
                            .form-register form {
                                margin-bottom: 0;
                            }
                            #simpleregister .simpleregister-block-content label{
                                display: none;
                            }
                            .simpleregister-button-block {
                                padding: 0;
                                text-align: left;
                            }
                            .form-horizontal .form-group{
                                width: 100% !important;
                            }
                            .account-simpleregister .form-horizontal .form-group {
                                margin: 0;
                            }
                            span#agreement_checkbox {
                                margin-right: 0;
                                margin-bottom: 15px;
                            }
                            .simpleregister-block-content {
                                padding: 0 !important;
                            }
                            span#agreement_checkbox label{
                                padding: 0;
                            }
                            .account-simpleregister .simpleregister-block-content {
                                padding: 0 !important;
                                margin-bottom: 30px;
                            }
                            span#agreement_checkbox a {
                                color: #1e1e1e;
                                text-decoration: underline;
                            }
                            .title-modal {
                                font-family: "Gilroy";
                                font-weight: 600;
                                font-size: 20px;
                                line-height: 22px;
                                max-width: 320px;
                                color: #0D0802;
                                margin-top:0;
                                margin-bottom: 10px;
                            }

                            .simpleregister-have-account {
                                text-align: center;
                                color: #64748B;
                                font-size: 16px;
                                line-height: 24px;
                                font-family: "Gilroy";
                                font-weight: 600;
                            }

                            .simpleregister-have-account a {
                                color: #1e1e1e;
                                text-decoration: underline;
                                -webkit-transition: all 0.3s ease 0s;
                                -o-transition: all 0.3s ease 0s;
                                transition: all 0.3s ease 0s;
                            }

                            #simpleregister a.button_oc.btn{
                                font-size: 12px;
                                height: 35px;
                                min-height: 35px;
                                line-height: 1;
                                justify-content: center;
                                border-radius: 0;
                            }
                            #simpleregister a.button_oc.btn:hover{
                                color: #fff;
                            }
                            .account-simpleregister fieldset.form-horizontal>div {
                                display: flex;
                                flex-direction: column;
                                width: 100%;
                            }

                            .account-simpleregister fieldset.form-horizontal>div.row-register_field21 {
                                flex-direction: row-reverse;
                            }

                            .account-simpleregister .form-horizontal .control-label {
                                color: #191D23;
                                text-align: left;
                                margin-top: 10px;
                                margin-bottom: 6px;
                                width: 100%;
                                font-family: 'Gilroy', sans-serif;
                                font-style: normal;
                                font-weight: 600;
                                font-size: 14px;
                                line-height: normal;
                                text-overflow: ellipsis;
                                white-space: nowrap;
                            }

                            .account-simpleregister .form-horizontal input {
                                border: 1px solid #64748B;
                                background: #FFFFFF;
                                box-shadow: none;
                                border-radius: 4px;
                                width: 100%;
                                height: 48px;
                                padding: 12px 16px;
                                font-weight: 400;
                                font-size: 16px;
                                line-height: 24px;
                            }

                            .account-simpleregister .form-horizontal .checkbox input {
                                height: auto;
                            }

                            .account-simpleregister .form-horizontal .form-group>div {
                                width: 100%;
                            }

                            .button.btn {
                                width: 100%;
                                font-weight: 400;
                                font-size: 16px;
                                color: #fff;
                                line-height: 51px;
                                padding: 0 45px;
                                text-align: center;
                                border-radius: 25px;
                                background-image: none;
                                background-color: #1e1e1e;
                                position: relative;
                                overflow: hidden;
                                text-shadow: none;
                                box-shadow: none;
                                border: none;
                                border-radius: 26px;
                                overflow: hidden;
                            }


                            .img-register {
                                flex-grow: 0;
                                max-width: 530px;
                            }

                            .img-register img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }

                            .simpleregister-block-content .has-error input {
                                border-color: #EF4444;
                            }

                            .form-horizontal .checkbox {
                                display: flex;
                                align-items: center;
                            }

                            .form-control {
                                position: relative;
                            }
                            .simpleregister-block-content{
                               margin-left: -15px;
                                margin-right: -15px;
                            }

                            .simpleregister-button-block.buttons {
                                margin: 0;
                            }

                            .simpleregister-button-block.buttons .simpleregister-button {
                                margin-top: 0;
                            }

                            .wrapper-box {
                                display: flex;
                                justify-content: center;
                                margin-top: 0;
                            }
                            .modal-header .close{
                                position: absolute;
                            }
                            .view_pass {
                                top: 6px;
                            }
                            .register .view_pass {
                                right: 22px;
                            }
                            @media(min-width: 1280px) {
                                .form-register {
                                    width: 512px;
                                }
                            }

                            @media(max-width: 1200px) {
                                .simple-content.flex-container {
                                    justify-content: center;
                                }

                                .form-register {
                                    margin-left: 0;
                                    padding-top: 0;
                                    width: 100%;
                                }

                                .img-register img {
                                    width: 100%;
                                }

                                /*.title-modal {
                                    font-size: 36px;
                                    line-height: 42px;
                                }*/

                                .img-register {
                                    display: none;
                                }
                            }

                            @media (max-width: 650px) {
                                /* .title-modal {
                                    margin-top: 14px;
                                } */
                            }

                            @media (max-width: 550px) {
                                .modal-header .close {
                                    top: 20px;
                                    right: 20px;
                                }
                            }


/* Source: catalog/view/theme/default/template/account/order_info.twig:232 */
.order_details {
    display: flex;
    color: #667085;
    margin-bottom: 37px;
  }
  .order_details .order_details--block:not(:last-child) {
    margin-right: 100px;
  }
  .order_details--item{
    margin-top:17px;
    line-height: 24px;
  }
  .order_details--item p {
    line-height: 24px;
    margin:0;
  }
  .table-order a {
    color: #0D0802;
  }
  span.method-payment-order {
    color: #112e27;
    text-decoration: underline;
  }

  .title-ttn {
    background: #000;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 63px;
    height: 40px;
    border-radius: 5px 0 0 5px;
  }
  td.text-left.table__cell {
    font-size: 14px;
    vertical-align: middle;
  }

  .reorder button {
    border-radius: 5px;
    background: rgb(50, 45, 45);
    color: #fff;
    width: 200px;
    height: 40px;
    line-height: 24px;
  }
  a.btn.btn-more {
    background: #E7EAEE;
    border-radius: 4px;
    min-width: 117px;
    border: 1px solid transparent;
    font-size: 14px;
    color: #64748B;
    box-shadow: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  a.btn.btn-more:hover{
    background: #1E1E1E;
    color: #FFF;
  }
  .btn-paynet-order {
    border: none;
    background: none;
    box-shadow: none;
    padding: 8px 0;
    color: #000;
    line-height: 17px;
  }
  /* table */
  .table-order .table-bordered>thead>tr>td {
    border:1px solid transparent;
  }
  .table-order thead tr td {
    color: #64748B;
    border-bottom: 1px solid rgb(231, 234, 238);
    font-weight: 600;
    font-size: 14px;
  }
  /* table */
  .total-order {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .text-summ {
    font-size: 14px;
    color: #000;
    line-height: 26px;
  }
  .total-sum {
    color: #112e27;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
  }
  .order__info--top-block {
    margin-bottom: 13px;
    display: flex;
  }
  .order__info--top-block.order {
    font-weight: 700;
  }
  @media(max-width: 1200px){
    .order_details {
      flex-direction: column;
    }
    .order__info--top {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @media(max-width: 992px) {
    .table-order tr td:nth-child(2) {
      width: 50%;
    }
    .table-order tr td:nth-child(4) {
      width: 10%;
    }
    .table-order tr td:nth-child(5) {
      width: 20%;
    }
    .table-order tr td:nth-child(6) {
      width: 20%;
    }
    .table-order tr>td{
      white-space: wrap !important;
    }
    .list-link-account>a {
      height: 44px;
    }
  }


/* Source: catalog/view/theme/default/template/account/order_info.twig:369 */
#column-left{
    margin-left: 0;
    padding: 0;
    display: block !important;
  }
  .wrapper-page {
    display: flex;
    border-top: 1px solid #E9EAEC;
    padding-top: 30px;
  }
  .content-account{
    width: 100%;
  }
  @media(min-width: 1480px){
    #column-left{
      width: 282px;
      margin-right: 18px;
    }
    #content{
      width: calc(100% - 300px);
    }
    .row_.product__list{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media(min-width: 1280px) and (max-width: 1479px){
    #column-left{
      width: 282px;
      margin-right: 18px;
    }
    #content{
      width: calc(100% - 300px);
    }
    .row_.product__list{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media(min-width: 992px) and (max-width: 1279px){
    #column-left{
      width: 262px;
      margin-right: 18px;
    }
    #content{
      width: calc(100% - 260px);
    }
  }
  @media(max-width: 992px){
    #column-left{
      width: 262px;
      margin-right: 18px;
    }
    #content{
      width: calc(100% - 260px);
    }
    .row_.product__list{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media(max-width: 640px){
    .wrapper-page {
      flex-direction: column;
    }
    #content, #column-left{
      width: 100%;
    }
  }


/* Source: catalog/view/theme/default/template/account/order_list.twig:104 */
/* order */
    body.account-order #account-order #content {
      min-height: 700px !important;
      max-height: 700px !important;
    }

    .text_empty {
      border: none;
      margin: 0;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 16px;
      line-height: 133%;
      color: #090a0a;
      padding-top: 0;
      padding-bottom: 0;
    }

    .order__title {
      border: none;
      margin: 0;
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 18px;
      line-height: 133%;
      color: #090a0a;
      padding-top: 0;
      padding-bottom: 0;
    }
    .order__table {
      width: 100%;
    }
    .wrapper-page {
        display: flex;
        gap: 14px;
    }

    .mobile .wrapper-page {
      flex-direction: column;
      gap: 5px;
    }

    .order__table .table {
      margin-bottom: 0;
    }
    .order__table .table .table__head {
      font-size: 14px;
      text-align: left;
      color: #64748b;
      padding: 20px 0 20px 8px;
      width: 15.9%;
      height: 59px;
    }

    #account-order #content {
      overflow-y: auto;
    }

    .mobile #account-order #content {
      width: 100%;
      max-height: unset;
    }


    #account-order .table .table__head {
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 14px;
      text-align: left;
      color: #64748b;
    }


    .order__table .table .table__head.column-order-id {
      width: 17.4%;
    }
    .order__table .table .table__cell {
      font-size: 16px;
      color: #191d23;
      padding: 22px 0 22px 8px;
      /* height: 67px; */
      line-height: 24px;
    }


    #account-order .table .table__cell:first-child {
      padding-left: 32px;
    }

    #account-order .table .table__cell.table__cell--total {
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 16px;
      color: #191d23;
    }


    #account-order .table .table__cell {
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 16px;
      text-align: left;
      color: #191d23;
    }
    #account-order {
      overflow-x: hidden;
    }
    #account-order .order__info--top {
      display: flex;
      flex-direction: column;
      width: max-content;
    }
    #account-order .order_details {
      justify-content: flex-start;
      gap: 20px;
      width: max-content;
      color: #1E1E1E;
    }
    #account-order .order_details .order_details--item {
      display: flex;
      flex-direction: column;
    }
    #account-order .order_details .method-payment-order {
      text-decoration: none;
      color: #FFAB03;
    }
    #account-order .order__info--block-title {
      margin-right: 5px;
    }
    .order__info--top-block {
      display: flex;
    }
    .main__video--slider-wrapper{
      background:#fff;
    }


    @media screen and (max-width: 767px) {
      .table__cell--more,
      .column-count,
      .order__table .table-bordered thead>tr>td:last-child{
        display: none;
      }

      #account-order .table .table__head,
      #account-order .table .table__cell{
        width: 25%;
      }
      #account-order .table-responsive {
        width: 100%;
        border: none;
      }
      #account-order .order_details {
        width: 100%;
      }
      #account-order .order_details .order_details--mini-title {
        width: 100%;
        display: block;
      }
      .copyright {
        text-align: right;
      }
      span.price-new{
        margin-left: 0;
      }
      #account-order .table .table__head{
        font-size: 12px;
      }
      #account-order .table .table__cell{
        font-size: 12px;
      }
      #account-order .table .table__head,
      #account-order .table .table__cell{
        padding: 10px;
        height: auto;
      }
    }

    .order__table .table .table__cell.table__cell--status {
      font-size: 12px;
      line-height: 24px;
      margin: auto;
      color: #064e3b;
    }

    .order__table .table .table__cell.table__cell--status .status-text {
      background: #ecfdf5;
      color: #064e3b;
      font-family: var(--font4);
      font-weight: 600;
      font-size: 13px;
      border-radius: 4px;
      padding: 2px 10px;
    }
    .order__table .table .table__cell--more a, .account-order-info .table .table__cell--more a {
      border-radius: 4px;
      padding: 8px 20px;
      width: 124px;
      background: #e7eaee;
      font-size: 16px;
      text-align: center;
      color: #64748B;
      border: none;
      text-decoration: none;
      transition: 0.2s;
      /* display: flex;
      justify-content: center;
      align-items: center; */
    }

    .order__table .table .table__cell--more a:hover {
      color: #fff;
      background: #1e1e1e;
    }

    .account-order-info .table .table__cell--order_info a {
      padding: 0;
    }

    .order__table .table-bordered {
      border: none;
    }

    .order__table .table-bordered td, .table-bordered th {
      border: none;
      border-bottom: 1px solid #dee2e6;
    }

    .order__table .table-bordered tbody tr:last-child td {
      border-bottom: none;
    }


/* Source: catalog/view/theme/default/template/account/order_list.twig:338 */
.orders-acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.order-acc {
  border: 1px solid #e7eaee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

/* Head */
.order-acc__head {
  width: 100%;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0;
}

.order-acc__head-left {
  display: flex;
  align-items: center;
  gap: 70px;
  min-width: 0;
}

.mobile .order-acc__head-left {
    gap: 5px;
}

.order-acc__meta {
  display: flex;
  gap: 20px;
  height: 100%;
  flex-shrink: 0;
}

.mobile .order-acc__meta {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100px;
  height: 80px;
  background: #f6f6f682;
  border-radius: 10px;
}

.order-acc__id {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100px;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 20px;
  color: #64748b;
  background: #f6f6f682;
  border-radius: 10px;
}

.mobile .order-acc__id {
  height: max-content;
  width: max-content;
  background: transparent;
  font-size: 14px;
}

.order-acc__date {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  color: #778599;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile .order-acc__date {
  font-size: 10px;
}

.order-acc__thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border-radius: 5px;
  overflow: hidden;
  max-width: calc(100% - 300px);
}

.mobile .order-acc__thumbs {
  max-width: calc(100% - 105px);
}

.order-acc__thumbs picture {
  flex-shrink: 0;
}

.order-acc__thumbs img {
  width: 70px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.mobile .order-acc__thumbs img {
  width: 40px;
}


.order-acc__head-right {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 20px;
}

.mobile .order-acc__head-right {
  gap: 5px;
  padding-right: 10px;
}

.order-acc__status {
  background: #ecfdf5;
  color: #064e3b;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  font-family: var(--main-font);
}

.mobile .order-acc__status {
  font-size: 10px;
}

/* Chevron */
.order-acc__chev {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.order-acc__chev:before {
  content: "";
  position: absolute;
  inset: 0;

  width: 8px;
  height: 8px;
  margin: auto;

  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;

  transform: translate3d(0, 0, 0) rotate(45deg);
  transition: transform 0.25s ease;
}

.order-acc.is-open .order-acc__chev:before {
  transform: translate3d(0, 2px, 0) rotate(-135deg);
}

/* Body */
.order-acc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.order-acc__body-inner {
  display: flex;
  gap: 90px;
  padding: 20px 25px 40px;
  border-top: 0;
}

.mobile .order-acc__body-inner {
  flex-direction: column;
  padding: 15px;
  gap: 0;
}

.order-acc__products {
  flex: 1;
  min-width: 0;
}

/* Order item */
.order-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;

  padding: 12px 0;
}

.order-item:last-child {
  border-bottom: 0;
}

.order-item__left {
  display: flex;
  align-items: start;
  gap: 45px;
  min-width: 0;
}

.mobile .order-item__left {
    gap: 15px;
    align-items: center;
}

.order-item__left img {
  border-radius: 12px;
  object-fit: cover;
  width: 70px;
  border-radius: 5px;
}

.order-item__info {
  min-width: 0;
}

.mobile .order-item__info {
  max-width: 145px;
}

.order-item__name {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #000;
  margin-bottom: 15px;
  max-width: 300px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Ліміт у 2 рядки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 37px;
}

.mobile .order-item__name {
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  margin-bottom: 10px;
  max-height: 32px;
}


.order-item__sku {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #778599;
}

.mobile .order-item__sku {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 10px;
  line-height: 200%;
  color: #778599;
}

.order-item__total {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: right;
  color: #000;
}

.mobile .order-item__total {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 167%;
  text-align: right;
  color: #000;
}


/* Side */
.order-acc__side {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile .order-acc__side {
  width: calc(100% + 30px);
  padding:  23px 30px 0;
  margin: 23px -15px 0;
  border-top: 1px solid #e7eaee;
}

.order-acc__side .mobile_total {
  display: none;
}

.mobile .order-acc__side .mobile_total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.mobile .mobile_total .order_acc_label {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  color: #000;
}

.mobile .mobile_total .order_acc_total {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: right;
  color: #000;
}


.order-acc__side-block {
  background: #fff;
}

.order-acc__side-title {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}

.order-acc__side-row {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #667085;
}

.order-acc__side-row span:first-child {
  color: #64748b;
}

.order-acc__side-text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #667085;
}

/* Footer */
.order-acc__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 97px;
  width: calc(100% - 390px);
  margin-left: 25px;
  border-top: 1px solid #e7eaee;
}

.order-acc__footer-label {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  color: #000;
  margin-left: 120px;
  margin-right: auto;
}

.order-acc__footer-total {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 83%;
  text-align: right;
  color: #000;
}

.order-acc__view {
  border-radius: 8px;
  padding: 8px 14px;
  background: #e7eaee;
  color: #64748b;
  text-decoration: none;
  transition: 0.2s;
}

.order-acc__view:hover {
  background: #1e1e1e;
  color: #fff;
}

@media (max-width: 1700px) {
  .order-acc__body-inner {
    gap: 40px;
  }

  .order-item__info {
    max-width: 270px;
  }
}

@media (max-width: 1400px) {
  .order-item__info {
    max-width: 168px;
  }
}


@media (max-width: 860px) {
  .order-acc__footer {
    display: none;
  }

  #column-left {
    display: block !important;
  }
}

@media (max-width: 860px) {
  .wrapper-page {
    flex-direction: column;
    gap: 5px;
  }

  #account-order #content {
    width: 100%;
    max-height: unset;
  }

  .order-acc__head-left {
    gap: 5px;
  }

  .order-acc__meta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100px;
    height: 80px;
    background: #f6f6f682;
    border-radius: 10px;
  }

  .order-acc__id {
    height: max-content;
    width: max-content;
    background: transparent;
    font-size: 14px;
  }

  .order-acc__date {
    font-size: 10px;
  }

  .order-acc__thumbs {
    max-width: calc(100% - 105px);
  }

  .order-acc__thumbs img {
    width: 40px;
  }

  .order-acc__head-right {
    gap: 5px;
    padding-right: 10px;
  }

  .order-acc__status {
    font-size: 10px;
  }

  .order-acc__body-inner {
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }

  .order-item__left {
    gap: 15px;
    align-items: center;
  }

  .order-item__info {
    max-width: 145px;
  }

  .order-item__name {
    font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    margin-bottom: 10px;
    max-height: 32px;
  }

  .order-item__sku {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 10px;
    line-height: 200%;
    color: #778599;
  }

  .order-item__total {
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 167%;
    text-align: right;
    color: #000;
  }

  .order-acc__side {
    width: calc(100% + 30px);
    padding: 23px 30px 0;
    margin: 23px -15px 0;
    border-top: 1px solid #e7eaee;
  }

  .order-acc__side .mobile_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile_total .order_acc_label {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 138%;
    color: #000;
  }

  .mobile_total .order_acc_total {
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    text-align: right;
    color: #000;
  }

  #column-left {
    display: block !important;
  }
}


/* Source: catalog/view/theme/default/template/account/order_list.twig:974 */
body.account-order #account-order #content {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body.account-order .wrapper-page {
    display: grid !important;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 34px !important;
  }

  body.mobile.account-order .wrapper-page {
    display: flex !important;
    flex-direction: column;
    gap: 24px !important;
  }

  body.account-order .order__title {
    margin-bottom: 22px !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }


/* Source: catalog/view/theme/default/template/account/password.twig:48 */
.wrapper-page {
    display: flex;
    gap: 14px;
    width: 100%;
  }

  .wrapper-page #content {
    width: max-content;
  }

  .mobile .wrapper-page #content {
    width: 100%;
  }


  #column-left {
      margin-left: 0;
      padding: 0;
      display: block !important;
  }
      .account-btn{
          width: 136px;
          height: 45px;
          display: flex;
          justify-content: center;
          align-items: center;
          background: #3A3227;
          font-weight: 600;
          font-size: 14px;
          text-transform: uppercase;
          color: #fff;
          font-family: var(--main-font);
          border-radius: 5px;
      }
      .default-input{
          display: flex;
          height: 54px;
          padding: 14.667px 20px 14.667px 26.667px;
          align-items: center;
          border-radius: 12px;
          background: var(--Black-5, #F4F4F4);
      }

      body.account-password .form-group {
          margin-bottom: 30px;
      }



      body.mobile .form-control {
        width: 100%;
    }

      body.mobile .form-group .col-sm-12 {
        padding: 0;
    }

      body.account-password label {
          font-weight: 600;
          font-size: 14px;
          text-transform: uppercase;
          color: #1e1e1e;
          margin-bottom: 0;
          font-family: var(--main-font);
      }
      body.account-password fieldset{
          padding: 0;
      }
      body.account-password .buttons{
          margin: 0;
      }
      body.account-password .form-control{
          padding: 11px 0;
          border: none;
          border-radius: 0;
          border-bottom: 1px solid #1e1e1e;
          background-color: transparent;
          height: auto;
          box-shadow: none;
          font-family: var(--main-font);
      }

      body.account-password .form-control::placeholder {
        font-family: var(--main-font);
      }

      body.account-password legend {
          border: none;
          margin: 0;
          font-family: var(--main-font);
          font-weight: 600;
          font-size: 18px;
          line-height: 133%;
          color: #090a0a;
          padding-top: 0;
          padding-bottom: 0;
      }

      body.mobile.account-password legend {
        padding: 0;
      }

      @media(min-width: 992px){
          .default-input{
              width: 335px;
          }
      }
    @media(max-width: 640px){
      .wrapper-page {
        flex-direction: column;
      }
      #content, #column-left{
        width: 100%;
      }

    }

    @media (max-width: 860px) {
      .wrapper-page #content {
        flex-direction: column;
        width: 100%;
      }
    }


/* Source: catalog/view/theme/default/template/account/password.twig:174 */
body.account-password #account-password #content {
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body.account-password .wrapper-page {
    display: grid !important;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 34px !important;
  }

  body.mobile.account-password .wrapper-page {
    display: flex !important;
    flex-direction: column;
    gap: 24px !important;
  }

  body.account-password legend {
    margin-bottom: 22px !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }


/* Source: catalog/view/theme/default/template/account/reward.twig:206 */
.hint{
  position: relative;     /* щоб кнопка була "якорем" */
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

/* Сам тултіп */
.hint.is-open::after{
  content: attr(data-hint);
  position: absolute;
  z-index: 99999;

  /* координати ставимо з JS */
  right: 0;
  top: calc(100% + 5px);

  width: 280px;
  padding: 10px 12px;
  border-radius: 5px;

  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  white-space: pre-wrap;     /* дозволяє перенос рядків */
  pointer-events: none;      /* щоб не заважав клікам */
  opacity: 1;
}

/* Показ */
.ui-tooltip.is-open {
  opacity: 1;
}


.no_coupons {
  font-family: var(--main-font);
  margin-bottom: 10px;
}

  #account-reward {
    min-height: 600px;
  }

  .order__title {
      border: none;
      margin: 0;
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 18px;
      line-height: 133%;
      color: #090a0a;
      padding-top: 0;
      padding-bottom: 0;
      margin-bottom: 30px;
    }

    .mobile .order__title {
      margin-bottom: 20px;
    }

    #account-reward .columns {
      display: flex;
      gap: 15px;
    }

    .mobile #account-reward .columns {
      flex-direction: column;
      gap: 10px;
    }

    #account-reward .columns .left_column {
      width: 210px;
      flex-shrink: 0;
    }

    .mobile #account-reward .columns .left_column {
      width: 100%;
    }


    #account-reward .columns .left_column .bonus_reward,
    #account-reward .columns .left_column .personal_sale,
    #account-reward .columns .right_column {
      background: #f6f6f6;
      padding: 10px 10px 20px 20px;
      border-radius: 10px;
    }

    .mobile #account-reward .columns .left_column .bonus_reward,
    .mobile #account-reward .columns .left_column .personal_sale {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 20px;
    }

    #account-reward .columns .left_column .bonus_reward {
      margin-bottom: 10px;
    }

    #account-reward .columns .column_header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 12px;
      line-height: 200%;
      color: #64748b;
      margin-bottom: 10px;
    }

    .mobile #account-reward .columns .left_column .column_header {
      margin-bottom: 0;
    }

    .mobile #account-reward .columns .left_column .column_header svg {
      margin-left: 25px;
    }


    #account-reward .columns .column_text {
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 24px;
      line-height: 100%;
      color: #000;
    }

    #account-reward .columns .right_column {
      width: 100%;
      height: min-content;
      padding: 10px 10px 10px 20px;
    }

    #account-reward .columns .right_column .coupons_list .coupon_item {
      display: flex;
      align-items: center;
      gap: 10%;
      padding-bottom: 15px;
    }

    #account-reward .columns .right_column .coupons_list .coupon_item:not(:first-child) {
      border-top: 1px solid #e7eaee;
      padding-top: 15px;
    }

    #account-reward .columns .right_column .coupons_list .coupon_item .coupon_code {
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 24px;
      line-height: 100%;
      color: #ffa91e;
      width: 140px;
      position: relative;
    }

    #account-reward .columns .right_column .coupons_list .coupon_item .coupon_name {
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 12px;
      color: #64748b;
    }


.coupon_code .copy-tooltip{
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(6px);
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.2;
  background: #090a0a;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.coupon_code .copy-tooltip:after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #090a0a;
}

.coupon_code.is-copied .copy-tooltip{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Source: catalog/view/theme/default/template/account/reward.twig:412 */
body.account-reward #account-reward #content {
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body.account-reward .wrapper-page {
    display: grid !important;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 34px !important;
  }

  body.mobile.account-reward .wrapper-page {
    display: flex !important;
    flex-direction: column;
    gap: 24px !important;
  }

  body.account-reward .order__title {
    margin-bottom: 22px !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }


/* Source: catalog/view/theme/default/template/account/simpleedit.twig:88 */
.input-group.date {
      width: 100%;
      position: relative;
    }

    button.btn-calendar {
      position: absolute;
      right: 10px;
      background: none;
      z-index: 9;
      top: 5px;
    }

    .input-group.date input {
      border-radius: 5px !important;
    }

    li.picker-switch.accordion-toggle {
      display: none;
    }

    th.picker-switch, th.dow {
      text-align: center;
      color:#40AB35;
      cursor:pointer;
    }

    .datepicker-days {
      padding: 10px;
    }

    .datepicker-days td {
      cursor:pointer;
    }

    td.day.active, .bootstrap-datetimepicker-widget td span.active, .bootstrap-datetimepicker-widget td span.active {
      background:#40AB35;
    }

  /* .datepicker-months .table-condensed td {
    display: flex;
    flex-direction: column;
    cursor:pointer;
  } */


/* Source: catalog/view/theme/default/template/account/wishlist.twig:58 */
.wishlist_row {
    display: flex;
    gap: 14px;
    min-height: 60vh;
  }

  .product-layout.product-list .product__item{
    width: 100%;
  }
  #column-left{
    margin-left: 0;
    padding: 0;
    display: block !important;
  }
  .page__title h1{
    border: none;
    margin: 0;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
  color: #090a0a;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .wishlist_row {
    display: flex;
    gap: 14px;
  }

  .mobile .wishlist_row {
    flex-direction: column;
    gap: 5px;
  }

  .product__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    width: 100%;
  }

	  .wishlist-empty-message {
	    width: 100%;
	    min-height: 250px;
	    margin: 4px 0 0;
	    padding: 22px 0 36px;
	    border: 0;
	    background: transparent;
	    color: #1e1e1e;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
    justify-content: center;
    text-align: center;
  }

	  .wishlist-empty-message__icon {
	    width: 78px;
	    height: 78px;
	    margin-bottom: 22px;
	    border-radius: 999px;
	    background: transparent;
	    color: #1e1e1e;
	    display: flex;
	    align-items: center;
    justify-content: center;
  }

  .wishlist-empty-message__icon svg {
    width: 72px;
    height: 72px;
  }

  .wishlist-empty-message__copy {
    max-width: 450px;
  }

  .wishlist-empty-message__label {
    margin: 0 0 8px;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8b857f;
  }

  .wishlist-empty-message h2 {
    margin: 0 0 10px;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
    color: #111;
  }

  .wishlist-empty-message__copy p:not(.wishlist-empty-message__label) {
    margin: 0;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.55;
    color: #707070;
  }

	  .wishlist-empty-message__button {
	    min-height: 44px;
	    margin-top: 24px;
	    padding: 13px 34px 12px;
	    border: 1px solid #1e1e1e;
	    background: #1e1e1e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    transition: background .16s ease, border-color .16s ease, color .16s ease;
  }

  .wishlist-empty-message__button:hover,
  .wishlist-empty-message__button:focus {
    background: #000;
    border-color: #000;
    color: #fff;
    text-decoration: none;
  }

  .product__list.mini_list {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile .product__list.mini_list,
  .mobile .product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

	  .mobile .wishlist-empty-message {
	    min-height: 232px;
	    padding: 18px 0 30px;
	  }

  .mobile .wishlist-empty-message__icon {
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
  }

  .mobile .wishlist-empty-message__icon svg {
    width: 64px;
    height: 64px;
  }

  .mobile .wishlist-empty-message h2 {
    font-size: 22px;
  }

	  .mobile .wishlist-empty-message__button {
	    width: 100%;
	    max-width: 272px;
	  }

  @media (max-width: 1400.98px) {
    .product__list {
      grid-template-columns: repeat(4, 1fr);
    }
    .product__list.mini_list {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 1000.98px) {
    .product__list {
      grid-template-columns: repeat(3, 1fr);
    }
    .product__list.mini_list {
      grid-template-columns: repeat(2, 1fr);
    }
  }


/* Source: catalog/view/theme/default/template/account/wishlist.twig:248 */
body.account-wishlist #account-wishlist #content {
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body.account-wishlist .wishlist_row {
    display: grid !important;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 34px !important;
  }

  body.mobile.account-wishlist .wishlist_row {
    display: flex !important;
    flex-direction: column;
    gap: 24px !important;
  }

  body.account-wishlist .page__title h1 {
    margin-bottom: 22px !important;
    font-size: clamp(24px, 3vw, 36px) !important;
    line-height: 1.12 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
  }


/* Source: catalog/view/theme/default/template/checkout/simplecheckout_cart.twig:181 */
.simplecheckout-cart col.model,
.simplecheckout-cart th.model,
.simplecheckout-cart td.model {
display: none;
}


/* Source: catalog/view/theme/default/template/common/currency.twig:41 */
.btn-currency-arrow {
    margin-left: 8px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .btn-currency.active .btn-currency-arrow {
    transform: rotate(180deg);
  }

  .btn-currency-icon {
    margin-right: 8px;
    width: 24px;
    flex-shrink: 0;
  }


/* Source: catalog/view/theme/default/template/common/footer_variant1.twig:132 */
footer {
      margin-top: 30px;
      padding-top: 49px;
      flex: 1 1 auto;
      color: #fff;
      background-color: #141414;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 18px;
      line-height: 1.3;
    }

    footer a {
      margin-top: 7px;
      margin-bottom: 7px;
      padding: 14px 40px;
      display: inline-block;
      color: #fff;
      background-color: #3d3d3d;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 18px;
      line-height: 1.3;
      border-radius: 134px;
      white-space: nowrap;
      overflow: hidden;
      transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
    }

    footer a:hover {
      color: #fff;
      background-color: #7e7e7e;
    }

    footer .phone {
      line-height: 1.4;
    }

    .footer-logo {
      margin-bottom: 25px;
    }

    .footer__row {
      padding-top: 40px;
      padding-bottom: 40px;
      border-top: 2px solid #525252;
    }

    .footer__row.bottom .footer__columns {
      justify-content: space-between;
      color: #a9a9a9;
    }

    .footer__row.bottom a {
      margin-top: 0;
      margin-bottom: 0;
      padding: 0;
      display: unset;
      color: #a9a9a9;
      background-color: transparent;
      line-height: 1;
      border-radius: 0;
    }

    .footer__row.bottom a:hover {
      color: #fff;
      background-color: transparent;
    }

    .footer__columns {
      display: flex;
      align-items: center;
    }

    .footer__column ul {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer__columns .footer__column:first-child {
      width: 200px;
      flex-shrink: 0;
    }

    .footer__column-title {
      margin-right: 40px;
      color: #a9a9a9;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 18px;
      line-height: 1.3;
    }

    .footer__column address a {
      display: flex;
      align-items: center;
      white-space: normal;
    }

    .footer__column address a:hover {
      background-color: #3d3d3d;
    }

    .footer__column address a svg {
      margin-right: 14px;
      flex-shrink: 0;
    }

    .footer__column a:not(:last-child) {
      margin-right: 14px;
    }

    .footer-messenger {
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style-type: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
    }

    .footer-messenger .footer-item:not(:last-child) {
      margin-right: 14px;
    }

    .footer-messenger .footer-item a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-messenger .footer-item a img {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .footer-messenger .footer-item a svg,
    .footer-messenger .footer-item a img {
      margin-right: 14px;
    }

    .footer__teragroup {
      display: flex;
      align-items: center;
    }

    .footer__teragroup a svg {
      flex-shrink: 0;
    }

    .footer__teragroup a svg path {
      -webkit-transition: fill 0.3s ease 0s;
      -o-transition: fill 0.3s ease 0s;
      transition: fill 0.3s ease 0s;
    }

    .footer__teragroup a:hover svg path {
      fill: #f57c27;
    }

    .footer__teragroup span {
      margin-right: 10px;
    }

    .footer__pay--icons {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      user-select: none;
      pointer-events: none;
    }

    .footer__pay--icons .footer__pay--icon:not(:last-child) {
      margin-right: 16px;
    }

    @media (max-width: 991.98px) {
      footer {
        padding-top: 11px;
      }
    }

    @media (max-width: 649.98px) {
      footer img {
        margin-left: auto;
        margin-right: auto;
      }

      footer a {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 16px;
        line-height: 1.7;
      }

      footer .footer__row:nth-of-type(2) .footer__columns {
        border-top: 0;
      }

      .footer-logo {
        margin-top: 0;
        margin-bottom: 0;
      }

      .footer__row {
        padding-top: 25px;
        padding-bottom: 0;
        border-top: 0;
      }

      .footer__columns {
        padding-top: 26px;
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px solid #3D3D3D;
      }

      .footer__column-title {
        margin-right: 0;
      }

      .footer-messenger {
        margin: 0;
      }

      .footer__columns .footer__column:first-child {
        margin-bottom: 17px;
        width: 100%;
      }

      .footer__column a:not(:last-child) {
        margin-right: 7px;
      }

      .footer__row.bottom .footer__columns {
        padding-top: 38px;
        padding-bottom: 44px;
      }

      .footer-messenger .footer-item:not(:last-child) {
        margin-right: 7px;
      }

      .footer__row.bottom .footer__columns ul {
        margin-bottom: 13px;
      }

      .footer__teragroup {
        margin-bottom: 20px;
      }
    }

    @media (max-width: 389.98px) {
      footer a {
        font-size: 14px;
      }
    }


/* Source: catalog/view/theme/default/template/common/footer_variant2.twig:180 */
footer {
      margin-top: 30px;
      padding-top: 33px;
      flex: 1 1 auto;
      color: #b3b3b3;
      background-color: #1e1e1e;
    }

    footer hr {
      margin-top: 0;
      margin-bottom: 41px;
      border-top: none;
      border-bottom: 1px solid #2c2c2c;
    }

    footer a {
      color: #b3b3b3;
      line-height: 1.8;
    }

    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }

    footer .images-col {
      max-width: 217px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    footer .links_icon.liqpay {
      user-select: none;
      pointer-events: none;
    }

    footer .links_icon.liqpay img {
      max-width: 102px;
    }

    footer .images-col #logo-footer {
      margin-bottom: 21px;
    }

    footer .messenger {
      margin-bottom: 15px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    footer .footer_social {
      margin-bottom: 6px;
    }

    footer .footer_social:not(:last-child) {
      margin-right: 6px;
    }

    footer .title-col {
      margin-bottom: 12px;
      color: #f9f9f9;
      font-family: var(--main-font);
      font-weight: 700;
      font-size: 16px;
      line-height: 1;
    }

    footer .content-col ul {
      margin-bottom: 0;
    }

    footer .col-open {
      margin-bottom: 15px;
      line-height: 1.8;
    }

    .footer__pay--icons {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      user-select: none;
      pointer-events: none;
    }

    .footer__pay--icons .item_icon {
      margin-bottom: 15px;
    }

    .footer__pay--icons .item_icon:not(:last-child) {
      margin-right: 16px;
    }

    .seti_wrapper {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .seti_wrapper span.seti-item {
      margin-right: 11px;
      margin-bottom: 11px;
    }

    .footer-teragroup {
      margin-top: 40px;
      padding-top: 12px;
      padding-bottom: 16px;
      color: #fff;
      font-weight: 400;
      border-top: 1px solid #2c2c2c;
    }

    .footer-teragroup a {
      color: #fff;
      font-family: var(--main-font);
      font-weight: 700;
      font-size: 14px;
      line-height: 1;
    }

    .footer-teragroup a:hover {
      color: #f57c27;
      text-decoration: none;
    }

    @media (max-width: 991.98px) {
      footer .container {
        margin-left: 5px;
        margin-right: 5px;
      }

      footer hr {
        margin-top: 41px;
        margin-bottom: 27px;
      }

      footer .col-contacts {
        margin-top: 26px;
      }

      footer .col-open {
        margin-bottom: 52px;
      }

      footer .images-col {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 767.98px) {
      footer .col-information {
        margin-top: 26px;
      }
    }


/* Source: catalog/view/theme/default/template/common/footer_variant3.twig:105 */
footer {
      flex: 1 1 auto;
      margin-top: 30px;
      padding-top: 30px;
      background-color: #fff;
      border-top: 1px solid #ddd;
      color: #e2e2e2;
    }

    footer .messenger {
      margin-bottom: 15px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    footer .footer_social {
      margin-bottom: 6px;
    }

    footer .footer_social:not(:last-child) {
      margin-right: 6px;
    }

    footer .col-open {
      color: #7b544e;
    }

    .footer__wrapper {
      display: flex;
      /* justify-content: space-between; */
      justify-content: space-evenly;
    }

    .footer__right {
      padding-right: 150px;
      display: flex;
    }

    .footer__right--block {
      padding: 0 30px;
      max-width: 320px;
    }

    .footer__block--title {
      margin-bottom: 12px;
      color: #6d6d6d;
      font-weight: 700;
      font-size: 16px;
      line-height: 100%;
    }

    .footer__right>.footer__right--block>ul>li,
    .footer__right>.footer__right--block>ul>li>a {
      color: #727272;
      font-weight: 400;
      font-size: 14px;
      line-height: 179%;
    }

    .footer__logo {
      margin-bottom: 21px;
    }

    .footer__pay--icons {
      margin-top: 30px;
      display: flex;
      align-items: center;
      user-select: none;
      pointer-events: none;
    }

    .footer__pay--icons .item_icon {
      margin-bottom: 15px;
      max-width: 80px;
    }

    .footer__pay--icons .item_icon:not(:last-child) {
      margin-right: 15px;
      max-width: 50px;
    }

    .footer-messenger {
      padding: 0;
      margin: 40px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      list-style: none;
    }

    .footer__creator {
      color: #1e1e1e;
      text-align: center;
    }

    .footer__creator a {
      color: #1e1e1e;
      font-weight: 700;
    }

    @media (max-width: 1023.98px) {
      .footer__wrapper {
        flex-wrap: wrap;
      }

      .footer__logo {
        text-align: center;
      }

      .footer__logo img {
        max-width: 280px;
        max-width: 100%;
        height: auto;
      }

      .footer__left {
        width: 100%;
        margin: 0 auto 30px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
    }

    @media (max-width: 1199.98px) {
      .footer__right {
        padding-right: 0;
      }
    }

    @media (max-width: 767.98px) {
      .footer__right {
        flex-wrap: wrap;
      }
    }


/* Source: catalog/view/theme/default/template/error/not_found.twig:29 */
#error-not-found {
        max-width: none;
        padding: 118px max(24px, calc((100vw - 1440px) / 2)) 64px;
      }

      body.error-not_found footer,
      body.error-not_found #footer,
      body.error-not_found #footer_variant4,
      body.error-not_found .tiara-footer,
      body.error-not_found .footer__mobile,
      body.error-not_found .footer-teragroup {
        display: none !important;
      }

      #error-not-found > .row {
        margin: 0;
      }

      #error-not-found #content {
        float: none;
        width: 100%;
        min-height: 0;
        padding: 0;
      }

      .tiara-404 {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 220px);
        text-align: center;
      }

      .tiara-404__content {
        max-width: 560px;
      }

      .tiara-404 h1 {
        margin: 0 0 18px;
        color: #111;
        font-family: var(--second-font);
        font-weight: 300;
        font-size: clamp(42px, 5vw, 82px);
        line-height: 1.02;
        letter-spacing: 0;
      }

      .tiara-404__text {
        max-width: 430px;
        margin: 0 auto;
        color: #3a3227;
        font-family: var(--main-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 1.58;
      }

      .tiara-404__text span {
        display: block;
        color: #111;
        font-weight: 600;
      }

      .tiara-404__ornament {
        width: min(100%, 220px);
        height: 18px;
        margin: 0 auto 34px;
        position: relative;
      }

      .tiara-404__ornament::before,
      .tiara-404__ornament::after {
        content: "";
        position: absolute;
        top: 50%;
        width: calc(50% - 18px);
        height: 1px;
        background: rgba(58, 50, 39, 0.22);
      }

      .tiara-404__ornament::before {
        left: 0;
      }

      .tiara-404__ornament::after {
        right: 0;
      }

      .tiara-404__ornament span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 11px;
        height: 11px;
        border: 1px solid rgba(58, 50, 39, 0.42);
        background: rgba(255, 255, 255, 0.44);
        transform: translate(-50%, -50%) rotate(45deg);
      }

      .tiara-404__btn {
        min-height: 52px;
        padding: 0 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #111;
        border-radius: 0;
        font-family: var(--main-font);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      }

      .tiara-404__btn--primary {
        background: #111;
        color: #fff;
      }

      .tiara-404__btn--primary:hover {
        background: #3a3227;
        border-color: #3a3227;
        color: #fff;
      }

      .tiara-404__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
      }

      @media (max-width: 991.98px) {
        #error-not-found {
          padding: 92px 16px 48px;
        }

        .tiara-404 {
          min-height: 0;
        }

        .tiara-404__content {
          max-width: none;
        }

      }

      @media (max-width: 560px) {
        #error-not-found {
          padding-top: 84px;
          padding-bottom: 36px;
        }

        .tiara-404 h1 {
          font-size: 38px;
        }

        .tiara-404__ornament {
          width: 180px;
          margin-bottom: 28px;
        }

        .tiara-404__text {
          font-size: 14px;
        }

        .tiara-404__btn {
          width: 100%;
        }

        .tiara-404__actions {
          display: grid;
          grid-template-columns: 1fr;
        }
      }


/* Source: catalog/view/theme/default/template/extension/module/account.twig:150 */
.wrapper {
    background-color: #F6F6F6;
    min-height: 100vh;
  }

  .wrapper-page {
    display: flex;
    gap: 14px;
    min-height: 60vh;
  }

  .mobile .wrapper-page {
    flex-direction: column;
    gap: 5px;
  }

  #common-success {
    padding-top: 15px;
  }

  #column-left {
    width: 370px !important;
    padding: 20px 25px 43px 14px !important;
    background-color: #FFFFFF;
    border-radius: 10px;
    height: max-content;
  }

  .mobile #column-left {
    width: 100% !important;
  }

  #column-left .module-account-menu__title {
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    color: #090a0a;
    margin-bottom: 30px;
  }

  #column-left .module-account-menu__row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
  }

  #column-left .module-account-menu__row:hover {
    color: #000;
  }

  #column-left .module-account-menu__row .module-account-menu__icon svg path {
    transition: stroke 0.3s ease;
  }

  #column-left .module-account-menu__row:hover .module-account-menu__icon svg path {
    stroke: #000;
  }

  #column-left .module-account-menu__row .module-account-menu__balance {
    display: flex;
    align-items: center;
    background: #0AC714;
    margin-left: auto;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
  }

  #column-left .module-account-menu__row .module-account-menu__balance .module-account-menu__balance-text {
    padding-top: 1px;
  }


  #column-left .module-account-menu__row > span > svg {
    margin-right: 15px;
  }

  #column-left .module-account-menu__row .module-account-menu__balance svg {
    margin-right: 15px;
  }

  #column-left .module-account-menu__row .wishlist-count {
    padding: 2px 3px;
    min-width: 20px;
    height: 20px;
    background-color: #FFA91E;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-left: 20px;
  }

  #column-left .module-account-menu-settings {
    padding-top: 20px;
    border-top: 1px solid #e7eaee;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-head {
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 171%;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-head svg {
    margin-right: 15px;
  }

  .module-account-menu__section-links ul {
    margin-left: 39px;
    list-style: none;
    padding: 0;
  }

  .module-account-menu__section-links ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-links a {
    color: #64748b;
    display: inline-flex;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-links a:hover {
    color: #000;
  }


  #column-left .module-account-menu-settings .module-account-menu__section-links a:not(:last-child) {
    margin-bottom: 10px;
  }



  .list-link-account{
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 280px;
  }

  .discount_wrapp {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background-color: #7AC146;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    height: 50px;
    border-radius: 25px;
    gap: 5px;
  }

  .mobile .discount_wrapp {
    width: calc(100% - 40px);
    margin: auto;
  }


  .mobile .list-link-account {
    width: 100%;
    margin-bottom: 20px;
  }

  .form-control {

  }

  body[class*="account-"] #content {
    background: #fff;
    padding: 21px 28px;
    border-radius: 10px;
    height: max-content;
    min-height: 0;
  }

  body.mobile[class*="account-"] #content {
    padding: 30px 15px 20px;
  }

  .title-account-box{
    font-family: var(--main-font);
    color: var(--Ink-Darkest, #090A0A);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    margin-bottom: 12px;
  }
  .list-link-account>a span{
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #090a0a;
  }
  .list-link-account>a {
    height: 56px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .list-link-account>a span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .list-link-account>a svg {
    margin-right: 12px;
  }
  .arrow-item {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 24px;
  }
  .arrow-item svg {
    right: 0;
  }
  .list-link-account>a:hover span {
    text-decoration: underline;
  }
  .list-link-account>a span:hover {
    color: #4d4d4d;
  }
  .title-account-box, .list-link-account>a {
    padding-left: 24px;
  }

  @media (max-width: 1199px) {
    #column-left {
      width: 256px !important;
    }

    body[class*="account-"] #content {
      width: calc(100% - 266px);
    }
  }

  @media(max-width: 992px) {
    .list-link-account>a {
    height: 44px;
  }

  @media (max-width: 860px) {
    #column-left {
      width: 100% !important;
    }

    body[class*="account-"] #content {
      width: 100%;
      padding: 30px 15px 20px;
    }

    .wishlist_row {
      flex-direction: column;
    }

    .wrapper-page {
      flex-direction: column;
      width: 100%;
    }
  }
}

  .module-account-menu__customer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.12);
  }

  .module-account-menu__avatar {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(30, 30, 30, 0.35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--main-font);
    font-size: 13px;
    letter-spacing: 0;
    color: #111;
    background: #f7f5f1;
    flex: 0 0 44px;
  }

  .module-account-menu__hello,
  .module-account-menu__subline {
    display: block;
    font-family: var(--main-font);
    letter-spacing: 0;
  }

  .module-account-menu__hello {
    color: #111;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
  }

  .module-account-menu__subline {
    color: rgba(17, 17, 17, 0.58);
    font-size: 11px;
    line-height: 1.35;
    margin-top: 3px;
  }

  #column-left {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 24px 0 0 !important;
  }

  #column-left .module-account-menu {
    border-right: 1px solid rgba(30, 30, 30, 0.12);
    padding-right: 22px;
  }

  #column-left .module-account-menu__title {
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.62);
  }

  #column-left .module-account-menu__row {
    gap: 12px;
    min-height: 42px;
    margin: 0;
    padding: 9px 0;
    color: rgba(17, 17, 17, 0.66);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: none;
  }

  #column-left .module-account-menu__icon {
    display: none;
  }

  #column-left .module-account-menu__row + .module-account-menu__row {
    border-top: 1px solid rgba(30, 30, 30, 0.08);
  }

  #column-left .module-account-menu__row:hover,
  #column-left .module-account-menu__row.is-active,
  #column-left .module-account-menu-settings .module-account-menu__section-links a.is-active {
    color: #111;
  }

  #column-left .module-account-menu__row .module-account-menu__icon svg,
  #column-left .module-account-menu-settings .module-account-menu__section-head svg {
    margin: 0;
  }

  #column-left .module-account-menu__row .module-account-menu__icon svg path,
  #column-left .module-account-menu__row:hover .module-account-menu__icon svg path {
    stroke: currentColor;
  }

  #column-left .module-account-menu__row .module-account-menu__balance {
    background: #111;
    border-radius: 999px;
    color: #fff;
    padding: 5px 9px;
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
  }

  #column-left .module-account-menu__row .module-account-menu__balance svg {
    display: none;
  }

  #column-left .module-account-menu__row .wishlist-count {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-left: auto;
    padding: 0;
    background: #111;
    color: #fff;
    font-size: 10px;
  }

  #column-left .module-account-menu-settings {
    border-top: 1px solid rgba(30, 30, 30, 0.12);
    padding-top: 18px;
    margin-top: 12px;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-head {
    margin-bottom: 10px;
    color: rgba(17, 17, 17, 0.62);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-head .module-account-menu__icon {
    display: none;
  }

  .module-account-menu__section-links ul {
    margin: 0;
  }

  .module-account-menu__section-links ul li:not(:last-child) {
    margin-bottom: 0;
  }

  #column-left .module-account-menu-settings .module-account-menu__section-links a {
    display: block;
    padding: 8px 0;
    color: rgba(17, 17, 17, 0.66);
    font-size: 13px;
    font-weight: 400;
  }

  @media (max-width: 860px) {
    #column-left {
      padding: 0 !important;
    }

    #column-left .module-account-menu {
      border-right: 0;
      border-bottom: 1px solid rgba(30, 30, 30, 0.12);
      padding: 0 0 16px;
    }
  }


/* Source: catalog/view/theme/default/template/extension/module/banner.twig:65 */
.banner,
    .banner .swiper-slide {
      border-radius: 55px;
      overflow: hidden;
    }

    .banner {
      position: relative;
      margin-bottom: 69px;
    }

    .banner .swiper-wrapper {
      height: auto;
    }

    .banner .swiper-pagination {
      position: relative;
      margin-top: 20px;
    }

    /* Mobile */
    .mobile .banner,
    .mobile .banner .swiper-slide {
      border-radius: 30px;
    }

    .mobile .banner {
      margin-bottom: 38px;
      margin-left: 10px;
      margin-right: 10px;
      display: block;
    }

    .mobile .main-banner a {
      display: block;
    }


/* Source: catalog/view/theme/default/template/extension/module/box_category.twig:190 */
.main_category_half{
        flex-basis: 100%;
    }
    .main_categoryrow{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .main_category_half{
        flex-basis: calc(50% - 5px);
        height: 270px;
        margin-bottom: 15px;
    }
    .main_category_half .row{
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .main_category_half .col-sm-6,
    .main_category_half .col-sm-12{
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .box-info-category{
        width: 100%;
        height: 100%;
        padding: 10px;
        border-radius: 10px;
        overflow: hidden;
        transition: .3s;
    }
    .crew{
        font-size: 11px;
        color: #648B68;
    }
    .item.text-center{
        border-right: 1px solid #E5E9EB;
    }
    .item.text-center img,
    .box-info-category span,
    .box-info-category img{
        transition: .3s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
    }
    .item.text-center img:hover,
    .box-info-category:hover{
        transition: .3s;
    }
    .item.text-center img:hover,
    .box-info-category:hover span,
    .box-info-category:hover img{
        transition: .3s;
        transform: scale(.95);
        -webkit-transform: scale(.95);
        -moz-transform: scale(.95);
        -ms-transform: scale(.95);
        -o-transform: scale(.95);
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
    }

    .big_item{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .big_item img{
        max-width: 370px;
        max-height: 300px;
    }
    .col-sm-6.small_item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .col-sm-6.medium_item {
        width: calc(50% - 5px);
    }
    .col-sm-6.medium_item .box-info-category{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .col-sm-6.medium_item img{
        max-width: 290px;
        max-height: 190px;
    }
    .col-sm-6.medium_item span{
        color: #1E1E1E;
        font-size: 20px;
        line-height: 2;
        margin-top: 40px;
    }
    .col-sm-12.big_item {
        width: 100%;
        display: block;
    }
    .medium_row {
        display: flex;
        justify-content: space-between;
    }
    .col-sm-6.small_item a {
        height: calc(50% - 5px);
        display: flex;
        flex-direction: column;
    }
    .col-sm-6.medium_item {
        width: calc(50% - 5px);
    }
    .col-sm-6.small_item {
        width: calc(50% - 5px);
    }
    @media (max-width: 1365px) {
        .col-sm-6.small_item .box-info-category span,
        .big_item span,
        .col-sm-6.medium_item span{
            font-size: 16px;
        }
        .col-sm-6.small_item .box-info-category img{
            max-width: 130px;
            max-height: 130px;
        }
        .col-sm-6.medium_item img{
            max-width: 200px;
            max-height: 130px;
        }
        .big_item img {
            max-width: 270px;
            max-height: 200px;
        }
        .main_category_half{
            height: 250px;
        }
        .col-sm-6.medium_item span{
            margin-top: 10px;
        }
    }


/* Source: catalog/view/theme/default/template/extension/module/list_product.twig:248 */
.product__item.swiper-slide {
            padding: 5px;
            width: 390px;
        }


/* Source: catalog/view/theme/default/template/extension/module/list_product_3in1.twig:392 */
#content.product__carousel .nav-tabs::before {
      display: none;
    }

    .product__carousel {
      position: relative;
      padding-top: 70px;
      padding-bottom: 57px;
      background-color: #fafafa;
    }

    .product__carousel--top {
      margin-bottom: 70px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
    }

    .product__carousel .section_title {
      margin-right: 107px;
      color: #000;
      font-family: var(--second-font);
      font-weight: 300;
      font-size: 32px;
      line-height: 140%;
    }

    .product__carousel--heading-wrapper {
      margin-right: auto;
    }

    .product__carousel--description {
      max-width: 527px;
      color: #a3a5af;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 14px;
      line-height: 140%;
    }

    .product__carousel .tab-pane {
      position: relative;
    }

    #content .product__carousel .nav-tabs {
      margin: 0;
      margin-block-start: 0;
      margin-block-end: 0;
      padding: 0;
      padding-inline-start: 0;
      border: none;
      display: flex;
      flex-wrap: wrap;
      list-style: none;
    }

    #content .product__carousel .tab-link {
      display: inline-flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      background: transparent;
      border: 0;
      padding: 0;
    }

    #content .product__carousel .tab-pane {
      display: none;
    }

    #content .product__carousel .tab-pane.active {
      display: block;
    }

    #content .product__carousel .tab-pane[hidden] {
      display: none !important;
    }

    #content .product__carousel .nav-tabs::before {
      display: none;
    }

    #content .product__carousel .nav-tabs .nav-item {
      position: relative;
      margin-right: 30px;
      margin-bottom: 0;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      list-style: none;
    }

    #content .product__carousel .nav-tabs .nav-item::after {
      position: absolute;
      content: '';
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #000;
      transition: width 0.35s ease;
    }

    #content .product__carousel .nav-tabs .nav-item.active::after {
      width: 56%;
    }

    #content .product__carousel .nav-tabs li > a, #content .product__carousel .nav-tabs li.active > a {
      padding-left: 0;
    }

    #content .product__carousel .nav-tabs li > a {
      position: relative;
      display: inline-block;
      border-radius: 30px;
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 14px;
      line-height: 120%;
      color: #a3a5af;
      white-space: nowrap;
    }

    #content .product__carousel .nav-tabs li > a:focus {
      outline: none;
      outline-offset: 0;
    }

    #content .product__carousel .nav-tabs li.active > a {
      font-family: var(--main-font);
      font-weight: 600;
      font-size: 14px;
      line-height: 120%;
      color: #000;
      border-radius: 0;
    }

    #content .product__carousel .nav-tabs .nav-item.sale .tab-link::after {
      position: absolute;
      content: '';
      top: -2px;
      right: -5px;
      width: 8px;
      height: 8px;
      background-color: #ff3030;
      border-radius: 50%;
      overflow: hidden;
    }

    #content .product__carousel .nav-tabs li > a svg {
      margin-right: 5px;
    }

    #content .product__carousel .product__item--image {
      border: none;
      background-color: #fffdfb;
    }

    #content .product__carousel .product__item,
    #content .product__carousel .product__item--info,
    #content .product__carousel .product__item.has-sizes .product__item--sizes,
    #content .product__carousel .product__item .product__item--options,
    #content .product__carousel .product__item .product__item--options::before {
      background-color: #fbfaf8;
    }

    #content .product__carousel .product-swiper-pagination {
      width: 100%;
      height: 10px;
      position: absolute;
      left: unset;
      top: -40px;
      right: 120px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      width: max-content;
    }

    .product-swiper-button {
      position: absolute;
      top: -46px;
    }

    .new-swiper-button-prev.product-swiper-button,
    .sale-swiper-button-prev.product-swiper-button,
    .best-swiper-button-prev.product-swiper-button {
      right: 64px;
    }

    .new-swiper-button-next.product-swiper-button,
    .sale-swiper-button-next.product-swiper-button,
    .best-swiper-button-next.product-swiper-button {
      right: 0;
    }

    .product__loadmore--button {
      margin-top: 40px;
      min-height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
    }

    .product__loadmore--button > button {
      display: flex;
      align-items: center;
    }

    .product__loadmore--button .load__more {
      display: flex;
      align-items: center;
      height: 48px;
      padding-left: 20px;
      gap: 20px;
      width: max-content;
      border: 1px solid #0f0f0f;
      background-color: #fff;
      color: #0f0f0f;
      font-family: var(--main-font);
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      display: flex;
      justify-content: center;
      align-items: center;
      letter-spacing: -0.16px;
      border-radius: 100px;
      overflow: hidden;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      margin: 0 auto;
    }

    .product__loadmore--button > button:hover {
      background-color: #0f0f0f;
      color: #fff;
    }

    .product__loadmore--button .loadmore-icon {
      margin-left: 0;
    }

    .product__loadmore--button .loadmore-icon rect,
    .product__loadmore--button .loadmore-icon path {
      transition: fill 0.3s ease, opacity 0.3s ease;
    }

    .product__loadmore--button .loadmore-icon rect {
      fill: #0f0f0f;
    }

    .product__loadmore--button .loadmore-icon path {
      fill: #fff;
    }


    /* 3 крапки */
    .product__loader {
      display: none;
    }

    .product__loader span {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #000;
      margin: 0 2px;
      opacity: 0.4;
      animation: loader-bounce 0.8s infinite ease-in-out;
    }

    .product__loader span:nth-child(1) {
      animation-delay: 0s;
    }

    .product__loader span:nth-child(2) {
      animation-delay: 0.15s;
    }

    .product__loader span:nth-child(3) {
      animation-delay: 0.3s;
    }

    @keyframes loader-bounce {
      0%,
      80%,
      100% {
        transform: translateY(0);
        opacity: 0.4;
      }
      40% {
        transform: translateY(-4px);
        opacity: 1;
      }
    }

    @media (max-width: 991.98px) {
      .product-swiper-button {
        display: none;
      }

      .product__loadmore--button {
        margin-top: 23px;
      }

      .product__loadmore--button > button span {
        font-size: 12px;
      }

      .product__carousel {
        padding-top: 26px;
        padding-bottom: 27px;
      }

      .product__carousel .section_title {
        margin-right: 0;
      }

      .product__carousel--top {
        margin-bottom: 25px;
        flex-direction: column;
        align-items: baseline;
        gap: 3px;
      }

      #content .product__carousel .nav-tabs {
        margin-right: 0;
      }

      #content .product__carousel .product-swiper-pagination {
        top: unset;
        bottom: -20px;
        right: 0;
        width: 100%;
        justify-content: center;
      }
    }

    /* Module list_product = START */
    .product_slide {
      position: relative;
      padding-top: 58px;
      padding-bottom: 30px;
    }

    .product_slide--body {
      padding: 0 10px 50px;
      width: 100%;
      overflow: hidden;
    }

    .products__grid--wrapper {
      display: grid;
    }

    #content .products__grid--wrapper a {
      text-decoration: none;
    }

    /*
    #content .products__grid--wrapper a:hover {
      text-decoration: underline;
    }
    */

    .product__carousel--pagination {
      margin-top: 0;
      text-align: center;
    }

    .product__carousel--body {
      padding-bottom: 40px;
    }

    .block__title-wrap {
      padding-left: 0;
    }

    h2.block__title,
    h2.block__title span {
      font-size: 24px;
    }

    h2.block__title {
      margin: 0;
    }

    h2.block__title span {
      margin-right: auto;
      padding-left: 0;
    }

    .list-product-special h2.block__title {
      font-weight: 700;
    }

    .block__extra {
      margin-bottom: 8px;
      color: #000;
      font-family: var(--second-font);
      font-weight: 400;
      font-size: 12px;
      line-height: 1.3;
    }

    .page-title-link {
      margin-left: auto;
      margin-right: 20px;
      padding: 17px 15px;
      min-width: 181px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      border: 1px solid #000;
      user-select: none;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
    }

    .page-title-link:hover,
    .page-title-link:hover span {
      color: #ff92f2;
    }

    .page-title-link:hover {
      border-color: #ff92f2;
    }

    .page-title-link svg {
      -webkit-transition: transform 0.3s ease 0s;
      -o-transition: transform 0.3s ease 0s;
      transition: transform 0.3s ease 0s;
    }

    .page-title-link:hover svg {
      transform: translate(0) rotate(-135deg);
    }

    .page-title-link span {
      color: #1e1e1e;
      font-family: var(--second-font);
      font-weight: 400;
      font-size: 14px;
      line-height: normal;
      text-transform: lowercase;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
    }

    .page-title-link svg {
      margin-left: 26px;
      flex-shrink: 0;
    }

    .mobile.product_slide {
      margin-top: 19px;
    }

    .mobile.list-product-latest {
      margin-top: 10px;
      margin-bottom: 12px;
    }

    @media (min-width: 1480px) {
      .products__grid--wrapper {
        grid-template-columns: repeat(5, 1fr);
        grid-row-gap: 10px;
        grid-column-gap: 10px;
      }
    }
    @media (min-width: 1280px) and (max-width: 1479px) {
      .products__grid--wrapper {
        grid-template-columns: repeat(4, 1fr);
        grid-row-gap: 10px;
        grid-column-gap: 10px;
      }
    }

    @media (min-width: 992px) and (max-width: 1279px) {
      .products__grid--wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 10px;
        grid-column-gap: 10px;
      }
    }

    @media (max-width: 1023.98px) {
      .product_slide {
        padding-top: 40px;
        padding-bottom: 40px;
      }
    }

    @media (max-width: 991.98px) {
      .product__carousel--description {
        display: none;
      }

      .products__grid--wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 4px;
        grid-column-gap: 4px;
      }
    }

    @media (max-width: 599.98px) {
      .products__grid--wrapper {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    /* Module list_product = END */


/* Source: catalog/view/theme/default/template/extension/module/ltr_rtl.twig:64 */
.ltr_rtl__content .ltr_rtl__item:not(:last-child) {
      margin-bottom: 113px;
    }

    .ltr_rtl__image img {
      border-radius: 20px;
    }

    .ltr_rtl__information_box {
      margin-top: 60px;
    }

    .ltr .ltr_rtl__information_box {
      margin-left: 63px;
    }

    .rtl .ltr_rtl__information_box {
      margin-right: 63px;
    }

    .ltr_rtl__title_item {
      margin-bottom: 33px;
      color: #5d5d5d;
      font-family: "Inter Tight", sans-serif;
      font-weight: 600;
      font-size: 24px;
      line-height: normal;
      overflow: hidden;
    }

    .ltr_rtl__description_item {
      color: #5d5d5d;
      font-family: "Inter Tight", sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
    }

    @media(max-width: 991.98px) {
      .ltr_rtl__content .ltr_rtl__item:not(:last-child) {
        margin-bottom: 0;
      }

      .ltr_rtl__image {
        margin-bottom: 10px;
      }

      .ltr_rtl__image img {
        margin-left: auto;
        margin-right: auto;
      }

      .ltr_rtl__information_box {
        margin-top: 0;
      }

      .ltr .ltr_rtl__information_box {
        margin-left: 0;
      }

      .rtl .ltr_rtl__information_box {
        margin-right: 0;
      }

      .ltr_rtl__title_item {
        margin-bottom: 10px;
        font-size: 20px;
      }
    }


/* Source: catalog/view/theme/default/template/extension/module/main_imgcategory.twig:1 */
.main_imgcategory--buttons.is-hidden,
  .main_imgcategory__swiper .swiper-pagination {
    display: none !important;
  }

  .main_imgcategory {
    padding: 0;
    overflow: hidden;
  }

  .main_imgcategory__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
  }

  .mobile .main_imgcategory__wrap {
    margin-bottom: 5px;
  }

  .main_imgcategory__block-info {
    min-width: 1px;
  }

  /* ==== SWIPER WRAP (clip only left/right, allow top/bottom) ==== */
  .main_imgcategory__swiper {
    position: relative;
    clip-path: inset(-220px 0 -220px 0);
  }

  .main_imgcategory__swiper .swiper-wrapper {
    align-items: stretch;
  }

  .main_imgcategory__swiper .swiper-slide {
    height: auto;
  }

  /* ==== CARD ==== */
  .main_imgcategory__link {
    display: block;
    height: 100%;
    text-decoration: none;
  }

  .main_imgcategory__category {
    height: 100%;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* background: var(--cat-fill, #fdf6ef); */
    background-color: #f6f6f6;
    transition: border-bottom-left-radius 0.35s ease;

    position: relative;

  }

  .main_imgcategory__category::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    border-radius: inherit;

    /* background-image: var(--cat-bg); */
    background-repeat: no-repeat;
    background-size: 129px;
    background-position: left top;

    background-color: inherit; /* підкладка така ж, як фон картки */
  }

  /* контент поверх картинки */
  .main_imgcategory__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Перший (активний/лівий) item: нижній лівий border = 75px */
  /*
  .main_imgcategory__swiper .swiper-slide-active .main_imgcategory__category {
    border-bottom-left-radius: 75px;
    background: #fdf6ef;
  }
  */

  .main_imgcategory__category:hover {
    background-color: #fdf6ef;
    border-bottom-left-radius: 75px;
  }

  .main_imgcategory__category_image {
    width: 100%;
    height: 157px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }

  .main_imgcategory__category_image picture {
    width: 100%;
    height: 100%;
    display: block;
  }

  .main_imgcategory__category_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
  }

  .main_imgcategory__category_body {
    padding: 18px 15px 21px 11px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .main_imgcategory__category_name {
    margin-bottom: 8px;
    color: #3a3227;
    font-family: var(--second-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .main_imgcategory__category_short_description {
    margin-bottom: 3px;
    color: #bdbdbd;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .main_imgcategory__category_button {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 10px;
  }

  /* ==== PAGINATION ==== */
  .main_imgcategory__footer {
    margin-top: 18px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .main_imgcategory__pagination {
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .main_imgcategory__pagination-current,
  .main_imgcategory__pagination-total {
    min-width: 20px;
    color: #999894;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
  }

  .main_imgcategory__pagination-line {
    position: relative;
    height: 2px;
    width: 184px;
    background: #999894;
    border-radius: 999px;
    overflow: visible;
  }

  .main_imgcategory__pagination-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    background: #3a3227;
    border-radius: 999px;
    transition: width 0.25s ease;
  }

  .main_imgcategory__brand {
    margin-right: auto;
  }

  .main_imgcategory--buttons {
    display: flex;
    align-items: center;
    gap: 11px;
    user-select: none;
  }

  .main_imgcategory--prev,
  .main_imgcategory--next {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 549.98px) {
    .main_imgcategory--buttons {
      display: none;
    }

    .main_imgcategory__footer {
      margin-bottom: 18px;
      justify-content: space-between;
    }

    .main_imgcategory__brand {
      margin-right: 0;
    }
  }


/* Source: catalog/view/theme/default/template/extension/module/main_video.twig:121 */
.main_video {
      position: relative;
      width: 100%;
      margin: 0 auto;
    }

    .main_video::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: #fff;
      z-index: 1;
    }

    .main_video__inner {
      position: relative;
      width: 100%;
      overflow: hidden;

      /* Пропорція 1920x700 для десктопа */
      aspect-ratio: 1920 / 700;
    }

    .main_video__video {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .main_video__video-el {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .main_video__overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      cursor: pointer;
    }

    .main_video__overlay--with-poster {
      background-color: #000;
    }

    .main_video__poster {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .main_video__overlay--only-button {
      background: transparent;
    }

    .main_video__play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);

      width: 84px;
      height: 84px;

      padding: 0;
      border: none;
      border-radius: 50%;
      background: transparent;

      cursor: pointer;
    }

    .main_video__play img {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Обгортка для соцмереж, щоб вони були в .container і поверх відео */
    .main_video__socials-wrap {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 18px;
      pointer-events: none; /* щоб кліки проходили крізь область, де немає іконок */
      z-index: 3;
    }

    .main_video__socials-wrap .container {
      position: relative;
    }

    #content .main_video__socials {
      margin-block-start: 0;
      margin-block-end: 0;
      padding-inline-start: 0;
      max-height: 210px;
      flex-wrap: wrap;
    }

    #content .main_video__socials li:last-child,
    #content .main_video__socials li:not(:last-child) {
      margin-right: 13px;
      margin-bottom: 13px;
    }

    #content .main_video__socials li {
      list-style: none;
    }

    .main_video__socials {
      pointer-events: auto; /* самі іконки клікабельні */
      display: inline-flex;
      flex-direction: column;
    }

    .main_video__social {
      width: 56px;

      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      text-decoration: none;
      transition: transform 0.2s ease;
      overflow: hidden;
    }

    .main_video__social img {
      display: block;
      max-width: 56px;
    }

    .main_video__social-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #222;
    }

    .main_video__social:hover {
      transform: translateY(-3px);
    }

    /* Мобілка */
    @media (max-width: 767.98px) {
      .main_video {
        width: 100%;
        max-width: 100%;
        margin: 0;
      }

      .main_video__inner {
        width: 100%;
        max-width: 100%;
        height: 680px;
        aspect-ratio: unset;
      }

      .main_video__socials-wrap {
        bottom: 25px;
      }
    }


/* Source: catalog/view/theme/default/template/extension/module/one_banner.twig:16 */
.one_banner {
      margin-bottom: 34px;
    }

    .mobile .one_banner {
      margin-bottom: 10px;
    }

    .one_banner__image img {
      border-radius: 10px;
    }


/* Source: catalog/view/theme/default/template/extension/module/slideshow.twig:65 */
.slideshow {
      position: relative;
    }

    .slideshow .swiper-wrapper {
      height: auto;
    }

    .slideshow .swiper-pagination {
      position: relative;
      margin-top: 20px;
    }

    @media (max-width: 991.98px) {
      .slideshow {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 10px;
        overflow: hidden;
        display: block;
      }

      .main-slide a {
        display: block;
      }

      .slideshow .swiper-slide {
        border-radius: 10px;
        overflow: hidden;
      }
    }


/* Source: catalog/view/theme/default/template/extension/module/sociallogin/countryform.twig:67 */
.iti--inline-dropdown .iti__dropdown-content {position: fixed !important;}


/* Source: catalog/view/theme/default/template/extension/module/sociallogin/sl_shortcode.twig:72 */
.popup-social .social_block {display:flex;flex-wrap:wrap;margin:4px auto;}


/* Source: catalog/view/theme/default/template/extension/module/sociallogin/social_page.twig:37 */
.popup-social .social_block {display:flex;flex-wrap:wrap;margin:4px auto;}


/* Source: catalog/view/theme/default/template/extension/module/video_banner.twig:1 */
.video_banner {
    margin-bottom: 13px;
    position: relative;
  }

  /* =========================
    DESKTOP LAYOUT
    ========================= */
  .video_banner--desktop .video_banner__grid {
    display: flex;
    gap: 9px;
    width: 100%;
    overflow: hidden;
  }

  .video_banner--desktop .video_banner__left,
  .video_banner--desktop .video_banner__right {
    position: relative;
    height: 490px;
    overflow: hidden;
  }

  .video_banner--desktop .video_banner__left {
    flex-shrink: 0;
    width: 390px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  .video_banner--desktop .video_banner__right {
    flex: 1 1 auto;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }

  /* =========================
    MOBILE LAYOUT
    ========================= */
  .video_banner--mobile {
    margin-bottom: 6px;
  }

  .video_banner--mobile .video_banner__stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .video_banner--mobile .video_banner__tile--video,
  .video_banner--mobile .video_banner__tile--banner {
    position: relative;
    overflow: hidden;
  }

  .video_banner--mobile .video_banner__tile--video {
    height: 490px;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }

  .video_banner--mobile .video_banner__tile--banner {
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  /* =========================
    VIDEO BASE
    ========================= */
  .video_banner__video {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .video_banner__video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* =========================
    OVERLAY + POSTER + PLAY
    ========================= */
  .video_banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
  }

  .video_banner__overlay::before,
  .video_banner__right-link::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.20);
    z-index: 1;
  }

  .video_banner__overlay--with-poster {
    background-color: #000;
  }

  .video_banner__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video_banner__overlay--only-button {
    background: transparent;
  }

  .video_banner__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    cursor: pointer;
    z-index: 1;
  }

  /* =========================
    BANNER TEXT + BUTTON
    ========================= */
  .video_banner__content {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    padding: 47px 70px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    z-index: 2;
  }

  .video_banner__title {
    margin-bottom: 27px;
    font-family: var(--second-font);
    font-weight: 300;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.64px;
    text-transform: uppercase;
  }

  .video_banner__description {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 10px;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .video_banner__right-link {
    position: relative;
    display: block;
    height: 100%;
  }

  .video_banner__banner-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video_banner__btn {
    padding: 12px 20px;
    color: #fff;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.12px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    background-color: #0f0f0f;
    border-radius: 100px;
    overflow: hidden;
  }

  /* =========================
    SOCIALS
    ========================= */
  #content .video_banner__socials {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    max-height: 210px;
    flex-wrap: wrap;
  }

  #content .video_banner__socials li:last-child,
  #content .video_banner__socials li:not(:last-child) {
    margin-right: 13px;
    margin-bottom: 13px;
  }

  #content .video_banner__socials li {
    list-style: none;
  }

  .video_banner__socials {
    pointer-events: auto;
    display: inline-flex;
    flex-direction: column;
  }

  .video_banner__social {
    width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: transform 0.2s ease;
    overflow: hidden;
  }

  .video_banner__social img {
    display: block;
    max-width: 56px;
  }

  .video_banner__social-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #222;
  }

  .video_banner__social:hover {
    transform: translateY(-3px);
  }

  /* Соцмережі: прикріпляємо до лівого відео-блоку */
  .video_banner__socials-abs {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    pointer-events: none;
  }

  .video_banner__socials-abs .video_banner__socials {
    pointer-events: auto;
  }

  /* Мобілка — трохи менші відступи для тексту та кнопки */
  .video_banner--mobile .video_banner__content {
    position: relative;
    padding: 40px 16px 16px 40px;
  }

  .video_banner--mobile .video_banner__title-wrap {
    padding-bottom: 31px;
  }



  @media (max-width: 835px) {
  .video_banner {
    margin-bottom: 6px;
  }

  .video_banner .video_banner__grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .video_banner .video_banner__left,
  .video_banner .video_banner__right {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .video_banner .video_banner__left {
    height: 490px;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .video_banner .video_banner__right {
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .video_banner .video_banner__content {
    position: relative;
    padding: 40px 16px 16px 40px;
  }

  .video_banner .video_banner__title-wrap {
    padding-bottom: 31px;
  }
}


/* Source: catalog/view/theme/default/template/information/contact_variant1.twig:3 */
.information-contact .our_stores__description {
    display: none;
  }

  .information-contact {
    background-color: #f6f6f6;
  }

  .information-contact .our_stores {
    padding-top: 0;
    padding-bottom: 68px;
  }

  .information-contact .our_stores__image img {
    aspect-ratio: 526 / 358;
    object-fit: cover;
  }

  .information-contact footer {
    margin-top: 0;
  }

  .contact {
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    position: absolute;
    content: '';
    top: 45px;
    left: 7px;
    width: 316px;
    height: 356px;
    background: url("/image/template/contact-bg-icon.svg") no-repeat;
    user-select: none;
    pointer-events: none;
  }

  .contact__title {
    margin-top: 0;
    margin-bottom: 45px;
    color: #000;
    font-family: var(--second-font);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.2;
  }

  .contact__cols {
    margin-bottom: 61px;
    display: grid;
    grid-template-columns: minmax(180px, 200px) minmax(180px, 200px) max-content max-content;
    justify-content: start;
    align-items: end;
    column-gap: 61px;
    row-gap: 23px;
  }

  .contact__label {
    margin-bottom: 10px;
    color: #727272;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
  }

  .contact_phone,
  .contact__item-links {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
  }

  .contact_phone a,
  .contact__item-links .email,
  .contact__btn {
    color: #161616;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .contact_phone a:hover,
  .contact__item-links .email:hover {
    color: #4d4d4d;
    text-decoration: underline;
  }

  .contact__btn {
    text-align: left;
    text-decoration: underline;
  }

  .contact .socials {
    margin-bottom: 0;
    padding-left: 0;
    display: grid;
    grid-auto-flow: column;
    justify-self: start;
    align-items: center;
    gap: 11px;
    list-style: none;
  }

  .contact__socials-col {
    min-width: 0;
  }

  .contact-item {
    border-radius: 50%;
    overflow: hidden;
  }

  .contact .socials li a img {
    max-width: 30px;
  }

  @media (max-width: 1199.98px) {
    .contact .socials {
      grid-auto-flow: row;
      grid-template-columns: repeat(3, 30px);
    }
  }

  @media (max-width: 991.98px) {
    .contact::before {
      display: none;
    }

    .information-contact .contact__body > .container,
    .information-contact .our_stores > .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .contact__title {
      margin-top: 75px;
      margin-bottom: 23px;
      font-size: 36px;
    }

    .contact__cols {
      grid-template-columns: 1fr 1fr;
      column-gap: 31px;
      align-items: start;
    }
  }

  @media (max-width: 767.98px) {
    .information-contact .our_stores {
      padding-bottom: 56px;
    }

    .information-contact .our_stores__head {
      margin-bottom: 22px;
    }

    .information-contact .our_stores__swiper {
      overflow: visible;
    }

    .information-contact .our_stores__swiper .swiper-wrapper {
      display: grid !important;
      grid-template-columns: 1fr;
      gap: 28px;
      transform: none !important;
    }

    .information-contact .our_stores__swiper .swiper-slide {
      width: 100% !important;
      margin-right: 0 !important;
    }

    .information-contact .our_stores__image {
      margin-bottom: 14px;
    }

    .information-contact .our_stores__body address {
      margin-bottom: 10px;
      font-size: 13px;
      line-height: 1.35;
    }

    .information-contact .our_stores__map-btn a {
      font-size: 11px;
    }

    .contact__title {
      margin-top: 56px;
      margin-bottom: 30px;
      font-size: 34px;
    }

    .contact__cols {
      margin-bottom: 58px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 22px;
      row-gap: 28px;
    }

    .contact__item-col {
      min-width: 0;
    }

    .contact__item-col:nth-of-type(3) {
      grid-column: 1 / -1;
    }

    .contact__socials-col {
      grid-column: 1 / -1;
    }

    .contact .socials {
      grid-auto-flow: column;
      grid-template-columns: repeat(4, 30px);
      justify-content: start;
      gap: 12px;
    }
  }

  @media (max-width: 399.98px) {
    .contact_phone a,
    .contact__item-links .email,
    .contact__btn {
      font-size: 14px;
    }
  }

  @media (max-width: 359.98px) {
    .contact__cols {
      grid-template-columns: 1fr;
    }
  }


/* Source: catalog/view/theme/default/template/information/contact_variant1.twig:410 */
.messanger {
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      list-style-type: none;
      user-select: none;
    }

    .messanger .footer_social, .messanger .footer_tel {
      margin-bottom: 6px;
    }

    .messanger .footer_social:not(:last-child),
    .messanger .footer_tel:not(:last-child) {
      margin-right: 6px;
    }

    .contact {
      margin-bottom: -30px;
    }

    .contact,
    .contact a,
    .contact address {
      color: #000;
      font-feature-settings: 'salt' on;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 16px;
      line-height: 1.5;
      letter-spacing: -0.32px;
    }

    .contact a:hover {
      text-decoration: underline;
      white-space: nowrap;
    }

    .contact address {
      margin-bottom: 30px;
    }

    .contact__title {
      margin-top: 66px;
      margin-bottom: 58px;
      color: #000;
      leading-trim: both;
      text-edge: cap;
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 48px;
      line-height: 1.1;
      display: flex;
    }

    .contact__columns,
    .contact__items-wrap {
      display: flex;
    }

    .contact__column {
      width: 50%;
      background-color: #e7e7e7;
    }

    .contact__columns .contact__column:first-child {
      padding: 30px 82px 60px 20px;
    }

    .contact__container {
      margin-left: auto;
      padding-bottom: 88px;
      width: 74%;
      height: 100%;
      display: flex;
      justify-content: end;
    }

    .contact__items .contact__item {
      max-width: 215px;
    }

    .contact__items-wrap .contact__item:not(:last-child) {
      margin-right: 60px;
    }

    .contact__label {
      margin-bottom: 15px;
      color: rgba(0, 0, 0, 0.40);
      font-feature-settings: 'salt' on;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 1;
      letter-spacing: -0.28px;
    }

    .contact__item-links {
      margin-bottom: 0;
      padding-left: 0;
      list-style: none;
    }

    .contact__item-block {
      margin-bottom: 30px;
      min-height: 77px;
    }

    .contact__items .contact__item:first-child .contact__item-block:last-child {
      margin-bottom: 0;
    }

    .contact__items .contact__item:last-child .contact__item-block,
    .contact .messenger {
      margin-bottom: 30px;
    }

    .contact .additional_messengers {
      min-height: 22px;
    }

    .contact__btn {
      padding: 16px 40px;
      height: 45px;
      color: #fff;
      background-color: #000;
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 14px;
      line-height: 1;
      letter-spacing: -0.28px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      border: 1px solid #000;
      user-select: none;
      white-space: nowrap;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
    }

    .contact__btn:hover {
      color: #2c2c2c;
      background-color: transparent;
      border-color: #000;
    }

    .contact-map {
      width: 100%;
      height: 100%;
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
    }

    .contact__comment {
      margin-top: 30px;
    }

    .contact .messanger .footer_social,
    .contact .messanger .footer_tel {
      margin-bottom: 6px;
    }

    .contact .messanger .footer_social:not(:last-child),
    .contact .messanger .footer_tel:not(:last-child) {
      margin-right: 25px;
    }

    .contact .footer_social a img,
    .contact .footer_tel a img {
      width: 30px;
    }

    .contact .socials {
      margin-bottom: 16px;
      display: grid;
      grid-template-columns: repeat(4, minmax(30px, max-content));
      gap: 10px;
      align-items: center;
      list-style: none;
    }

    .contact-item {
      border-radius: 50%;
      overflow: hidden;
    }

    .contact .socials li a img {
      max-width: 30px;
    }

    @media (max-width: 1439.98px) {
      .contact__container {
        width: 100%;
      }
    }

    @media (max-width: 991.98px) {
      .contact__columns {
        flex-direction: column;
      }

      .contact__column {
        width: 100%;
      }

      .contact__columns .contact__column:first-child {
        padding: 30px 20px 60px;
      }

      .contact__container {
        padding-bottom: 0;
        justify-content: center;
      }

      .contact__title {
        margin-top: 0;
        margin-bottom: 30px;
      }

      .contact-map {
        height: 315px;
      }
    }

    @media (max-width: 519.98px) {
      .contact__container {
        justify-content: left;
      }

      .contact__items {
        width: 100%;
      }

      .contact__items-wrap {
        flex-direction: column-reverse;
      }

      .contact__items .contact__item {
        max-width: 100%;
      }

      .contact__items-wrap .contact__item:last-child {
        margin-bottom: 30px;
      }

      .contact__items-wrap .contact__item:not(:last-child) {
        margin-right: 0;
      }

      .contact__item-block {
        min-height: auto;
      }
    }


/* Source: catalog/view/theme/default/template/information/contact_variant2.twig:117 */
.contact {
      position: relative;
      margin-bottom: -30px;
      padding-top: 79px;
      padding-bottom: 175px;
      height: calc(100vh - 110px);
    }

    .contact-map {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
    }

    .messanger {
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      list-style-type: none;
      user-select: none;
    }

    .messanger .footer_social, .messanger .footer_tel {
      margin-bottom: 6px;
    }

    .messanger .footer_social:not(:last-child),
    .messanger .footer_tel:not(:last-child) {
      margin-right: 6px;
    }

    .contact,
    .contact a,
    address {
      color: #151515;
      font-family: 'Manrope', sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: -0.4px;
    }

    .contact a:hover {
      text-decoration: underline;
      white-space: nowrap;
    }

    .contact address {
      margin-bottom: 30px;
    }

    .contact__title {
      margin-top: 0;
      margin-bottom: 31px;
      color: #151515;
      font-family: "Inter Tight", sans-serif;
      font-weight: 600;
      font-size: 64px;
      line-height: 1;
    }

    .contact__items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 60px;
    }

    .contact__column {
      position: relative;
      padding: 70px 60px;
      max-width: 692px;
      border-radius: 20px;
      background-color: rgba(255, 255, 255, 0.70);
      backdrop-filter: blur(15px);
      z-index: 1;
    }

    .contact__label {
      margin-bottom: 10px;
      color: rgba(0, 0, 0, 0.40);
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 1;
      letter-spacing: -0.28px;
    }

    .contact__item-links {
      margin-bottom: 0;
      padding-left: 0;
      list-style: none;
    }

    .contact__items .contact__item .contact__item-block {
      margin-bottom: 40px;
    }

    .contact__btn {
      padding: 16px 40px;
      width: 100%;
      height: 58px;
      color: #fff;
      background-color: #78c619;
      font-family: 'Inter Tight', sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 1;
      letter-spacing: -0.4px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 100px;
      border: 1px solid #78c619;
      user-select: none;
      white-space: nowrap;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
    }

    .contact__btn:hover {
      color: #78c619;
      background-color: transparent;
      border-color: #78c619;
    }

    .contact__comment {
      margin-top: 30px;
    }

    .contact__socials {
      margin-top: 33px;
      display: grid;
      grid-template-columns: repeat(3, minmax(30px, max-content));
      gap: 9px;
      align-items: center;
      list-style: none;
    }

    .contact-item {
      border-radius: 50%;
      overflow: hidden;
    }

    .contact__socials img {
      max-width: 30px;
    }

    @media (max-width: 991.98px) {
      .contact {
        padding-top: 30;
        padding-bottom: 0;
        height: auto;
      }

      .contact, .contact a, address {
        font-size: 16px;
      }

      .contact__column {
        padding: 0 0 20px;
        width: 100%;
      }

      .contact__title {
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 48px;
      }

      .contact-map {
        position: relative;
        height: 315px;
      }
    }

    @media (max-width: 519.98px) {
      .contact__items {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
      }

      .contact__items .contact__item:last-child {
        margin-bottom: 0;
      }

      .contact__items .contact__item:not(:last-child) {
        margin-right: 0;
      }
    }


/* Source: catalog/view/theme/default/template/information/information.twig:2 */
html body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8),
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #information-information,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content {
    background-color: #f6f6f6;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) .wrapper {
    padding-top: var(--header-space, 80px);
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #information-information {
    padding-top: 0;
    padding-bottom: 78px;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content {
    max-width: 1040px;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content p,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content li,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content span {
    color: #161616 !important;
    font-family: var(--main-font) !important;
    font-size: 15px !important;
    font-weight: 400;
    line-height: 1.65 !important;
    letter-spacing: 0 !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h1 {
    margin: 42px 0 28px;
    color: #000;
    font-family: var(--second-font);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h2,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h3,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h4 {
    margin: 44px 0 16px !important;
    color: #000 !important;
    font-family: var(--second-font) !important;
    font-size: 30px !important;
    font-weight: 300 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h2 span,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h3 span,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h4 span {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content p {
    margin: 0 0 16px !important;
    max-width: 980px;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content [class*="Mso"],
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content [align="center"],
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content div[style*="text-align: center"] {
    text-align: left !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content o\:p {
    display: none;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content p:empty,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content p:has(> br:only-child),
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content p:has(> b[style*="font-weight:normal"]),
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content b[style*="font-weight:normal"] {
    display: none;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content strong,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content b,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content strong span,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content b span,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content span[style*="font-weight:700"] {
    color: #000 !important;
    font-weight: 700 !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content > p[style*="margin-left: 30pt"] {
    margin: 28px 0 34px !important;
    padding: 22px 26px;
    max-width: 980px;
    background-color: #fff;
    border-left: 2px solid #161616;
  }

  body.information-information-6 #content .service-info__locations {
    padding-left: 28px !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content ul,
  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content ol {
    margin: 14px 0 28px !important;
    padding-left: 28px !important;
    max-width: 930px;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content li {
    margin-bottom: 12px;
    padding-left: 4px;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content li::marker {
    color: #161616;
    font-weight: 600;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content li p {
    margin-bottom: 0 !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content hr {
    margin: 42px 0 0;
    border: 0;
    border-top: 1px solid rgba(22, 22, 22, 0.08);
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content > p:last-child {
    margin-top: 36px !important;
    color: #000 !important;
    font-weight: 700 !important;
  }

  body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) footer {
    margin-top: 0;
  }

  @media (max-width: 991.98px) {
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #information-information {
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 58px;
    }

    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content {
      max-width: none;
    }

    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h1 {
      margin-top: 54px;
      margin-bottom: 22px;
      font-size: 34px;
    }

    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h2,
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h3,
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content h4 {
      margin-top: 38px !important;
      margin-bottom: 14px !important;
      font-size: 26px !important;
    }

    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content,
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content p,
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content li,
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content span {
      font-size: 14px !important;
      line-height: 1.6 !important;
    }

    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content > p[style*="margin-left: 30pt"] {
      margin: 24px 0 32px !important;
      padding: 18px 16px;
    }

    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content ul,
    body:is(.information-information-5, .information-information-6, .information-information-7, .information-information-8) #content ol {
      padding-left: 22px !important;
    }
  }


/* Source: catalog/view/theme/default/template/information/information_about_us.twig:3 */
html body.information-information-4,
  body.information-information-4 .wrapper,
  .about-page {
    background-color: #f6f6f6;
  }

  .about-page {
    padding-bottom: 78px;
  }

  .about-hero {
    padding-top: 32px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 48px;
    align-items: center;
  }

  .about-hero__content {
    margin-bottom: 70px;
  }

  .about-hero__title {
    margin: 0 0 43px;
    color: #3a3227;
    font-family: var(--second-font);
    font-weight: 400;
    font-size: 76px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .about-hero__text {
    margin-bottom: 24px;
    max-width: 964px;
    color: #000;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .about-quote {
    max-width: 671px;
    display: flex;
  }

  .about-quote__mark {
    margin-top: 6px;
    margin-right: 32px;
    flex-shrink: 0;
  }

  .about-quote__text {
    color: #676660;
    font-family: var(--main-font);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
  }

  .about-hero__image {
    position: relative;
    justify-self: end;
    user-select: none;
    pointer-events: none;
  }

  .about-hero__image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
  }

  .about-features {
    padding: 34px 0 10px;
  }

  .about-features__title {
    margin: 0 0 69px;
    max-width: 373px;
    color: #000;
    font-family: var(--second-font);
    font-weight: 300;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .about-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .about-feature__line {
    margin-bottom: 40px;
    height: 1px;
    background-color: rgba(21, 21, 21, 0.40);
  }

  .about-feature__title {
    margin-bottom: 40px;
    color: #151515;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .about-feature__text {
    color: rgba(21, 21, 21, 0.60);
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
  }

  .about-follow {
    margin-top: 64px;
    padding-top: 65px;
    padding-bottom: 25px;
    display: grid;
    grid-template-columns: 1.5fr auto 1fr;
    align-items: center;
    gap: 32px;
    border-top: 1px solid #9c9c9c;
  }

  .about-follow__title {
    color: #000;
    font-family: var(--second-font);
    font-weight: 300;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .about-follow__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    justify-content: center;
    align-items: flex-start;
  }

  .about-social__link {
    width: 82px;
    min-height: 76px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #3A3227;
    text-align: center;
    text-decoration: none;
  }

  .about-social__icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
  }

  .about-social__link img {
    width: 50px;
    display: block;
  }

  .about-social__label {
    color: #3A3227;
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 11px;
    line-height: 1.15;
  }

  .about-follow__text {
    margin-left: 53px;
    max-width: 370px;
    color: rgba(21, 21, 21, 0.60);
    font-family: var(--main-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
  }

  @media (max-width: 1199.98px) {
    .about-hero {
      grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
      gap: 28px;
    }

    .about-hero__title {
      font-size: 52px;
    }

    .about-hero__text {
      font-size: 20px;
    }

    .about-hero__content {
      margin-bottom: 20px;
      font-size: 32px;
    }

    .about-features__title {
      margin-bottom: 20px;
    }

    .about-features__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .about-feature__line {
      margin-bottom: 20px;
    }

    .about-feature__title {
      margin-bottom: 20px;
      font-size: 32px;
    }
  }

  @media (max-width: 767.98px) {
    .about-page {
      padding-bottom: 58px;
    }

    .about-page > .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    .about-hero__image {
      display: none;
    }

    .about-hero {
      grid-template-columns: 1fr;
      gap: 18px;
      padding-top: 28px;
    }

    .about-hero__content {
      margin-bottom: 44px;
    }

    .about-hero__text {
      max-width: none;
      font-size: 18px;
      line-height: 1.45;
    }

    .about-quote__text {
      font-size: 16px;
      line-height: 1.45;
    }

    .about-quote__mark {
      margin-right: 18px;
    }

    .about-hero__title {
      font-size: 34px;
      line-height: 1.12;
      margin-bottom: 24px;
    }

    .about-features {
      padding-top: 26px;
    }

    .about-features__title {
      margin-bottom: 28px;
      font-size: 30px;
      line-height: 1.25;
    }

    .about-features__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .about-follow {
      margin-top: 20px;
      padding-top: 30px;
      grid-template-columns: 1fr;
      text-align: left;
      gap: 14px;
    }

    .about-follow__title {
      font-size: 30px;
      line-height: 1.25;
    }

    .about-feature__line {
      margin-bottom: 18px;
    }

    .about-feature__title {
      margin-bottom: 14px;
      font-size: 28px;
      line-height: 1.18;
    }

    .about-feature__text {
      font-size: 15px;
      line-height: 1.55;
    }

    .about-follow__icons {
      justify-content: flex-start;
    }

    .about-follow__text {
      margin-left: 0;
      padding-top: 10px;
      justify-self: start;
      max-width: 100%;
    }
  }


/* Source: catalog/view/theme/default/template/product/gallery.twig:172 */
.section-list {
    display: flex;
    flex-direction: column;
  }

  .gallery__page {
    padding-top: 45px;
    padding-bottom: 30px;
  }

  .gallery__page .container {
    max-width: 1624px;
  }

  .gallery__page--wrapper {
    display: flex;
    align-items: flex-start;
    gap: 55px;
  }

  .gallery__page--text {
    width: 350px;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    top: 130px;
    height: auto;
  }

  .gallery__page--text h1 {
    margin-bottom: 5px;
    color: #111;
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.774px;
    text-transform: uppercase;
  }

  .gallery__page--description {
    margin-bottom: 24px;
    color: #828282;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
  }

  .galleries ul {
    padding-right: 5px;
    height: calc(80vh - 200px);
    overflow: hidden; /* Сховати елементи, що виходять за межі */
    transition: height 0.5s ease-out; /* Плавний перехід висоти */
  }

  .galleries ul::-webkit-scrollbar {
    width: 3px;
  }

  .galleries > ul li {
    display: block; /* Усі елементи будуть блоками */
  }

  .galleries > ul li:first-child {
    display: block; /* Перший елемент завжди видимий */
  }

  .galleries a {
    padding-top: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #c1c1c1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #c1c1c1;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.32px;
  }

  .galleries a svg {
    margin-left: 20px;
    flex-shrink: 0;
  }

  .galleries a:hover,
  .galleries a:focus,
  .galleries a:active,
  .galleries .active a {
    color: #151515;
  }

  .galleries a:hover svg path,
  .galleries a:focus svg path,
  .galleries a:active svg path,
  .galleries .active a svg path {
    stroke: #151515;
  }

  .gallery__page--images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
  }

  .gallery__image {
    transition: opacity 0.4s; /* Плавний перехід */
    opacity: 1; /* Початкова непрозорість */
  }

  .gallery__page--images:hover> :not(:hover) {
    opacity: 0.7; /* Напівпрозорість всіх елементів при наведенні на контейнер */
  }

  @media (max-width: 1365px) {
    .gallery__page--text{
      width: 320px;
    }
  }

  @media (max-width: 1080px) {
    .gallery__page {
      padding-top: 39px;
    }

    .gallery__page--images {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }

  @media (max-width: 992px) {
    .gallery__page--text {
      position: unset;
    }

    .gallery__page--wrapper {
      flex-direction: column;
      gap: 30px;
    }

    .gallery__page--text {
      width: 100%;
    }

    .gallery__page--text h1 {
      font-size: 40px;
    }

    .gallery__page--description {
      font-size: 16px;
    }

    .galleries>ul {
      display: flex;
      flex-direction: column;
      height: 71px;
      overflow: hidden;
    }

    .galleries>ul.expand {
      height: auto;
    }

    .galleries>ul>li.active {
      order: -1;
    }
  }


/* Source: catalog/view/theme/default/template/product/search.twig:3 */
@media (max-width: 991.98px) {
    .category__text-sort {
      display: none;
    }

    #product-search h1 {
      margin-top: 10px;
      margin-bottom: 10px;
      font-size: 32px;
    }

    .search__heading {
      height: 50px;
    }

    .search__heading {
      margin: 20px 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  }

/* Source: 99-legacy-bridge.css */
/*
 * Tiara CSS architecture: temporary legacy bridge.
 * Use only while migrating legacy CSS. Any !important here needs a comment
 * explaining which legacy rule is being bridged and when it can be removed.
 */

/*
 * Bridge: mobile header grid extracted from header_mobile.twig.
 * Legacy header rules in main.css still use high specificity and !important,
 * so this block keeps the current visual contract until header CSS is fully
 * migrated into 04-components-header.css.
 */
@media (max-width: 840px) {
  body.mobile header .container-header {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    height: var(--tiara-mobile-header-height, 64px) !important;
    min-height: var(--tiara-mobile-header-height, 64px) !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  body.mobile header #logo {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 2 !important;
    width: 166px !important;
    max-width: 166px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
  }

  body.mobile header #logo img {
    width: 166px !important;
    max-width: 166px !important;
    height: auto !important;
  }

  body.mobile header .menu_wrapp {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 28px 24px minmax(166px, 1fr) 24px 24px !important;
    column-gap: clamp(12px, 4vw, 18px) !important;
    align-items: center !important;
    height: var(--tiara-mobile-header-height, 64px) !important;
    margin: 0 !important;
  }

  body.mobile header .catalog,
  body.mobile header #mobile-search,
  body.mobile header #wishlist-total,
  body.mobile header .header__cart {
    width: 100% !important;
    height: var(--tiara-icon-touch, 44px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    grid-row: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.mobile header #mobile-search svg,
  body.mobile header #wishlist-total svg,
  body.mobile header .header__cart svg {
    display: block !important;
    flex: 0 0 auto !important;
  }

  body.mobile header #wishlist-total .head-ico,
  body.mobile header #cart .head-ico {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
  }

  body.mobile header #show_categories_btn {
    width: 28px !important;
    height: var(--tiara-icon-touch, 44px) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.mobile header #show_categories_btn .burger {
    margin: 0 !important;
  }

  body.mobile header .catalog {
    grid-column: 1 !important;
    order: initial !important;
  }

  body.mobile header #mobile-search {
    grid-column: 2 !important;
    order: initial !important;
  }

  body.mobile header #mobile-search::before {
    top: 13px !important;
  }

  body.mobile header #mobile-search::after {
    top: 24px !important;
  }

  body.mobile header #wishlist-total {
    grid-column: 4 !important;
    order: initial !important;
  }

  body.mobile header .header__cart {
    grid-column: 5 !important;
    order: initial !important;
  }
}

/*
 * Bridge: disable legacy preloaders that were extracted from old header Twig.
 * Mobile header had active .loader-wrapper markup without the matching loaded
 * script, which could leave a white loading screen over the storefront.
 * Remove this after the extracted loader CSS is fully deleted from
 * 98-template-extracted.css and all modification caches are regenerated.
 */
.loader-wrapper,
#preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
