:root {
    --color-black: #000000;
    --color-gray-lighten: #f9f9f9;
    --color-gray-light: #efefef;
    --color-gray: #d3d3d3;
    --color-gray-dark: #777777;
    --color-primary: #cc0000;
    --color-primary-hover: #c15c5c;
    --color-primary-active: #cf2e2e;
    --color-secondary: var(--color-gray-dark);
  
    --color-body: var(--color-black);
    --font-family: "Montserrat", sans-serif;
  }
  
  html {
    height: 100%;
  }
  
  @media (min-width: 992px) {
    body {
      min-height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  
    .s-footer {
      margin-top: auto;
    }
  }
  
  body {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-body);
    min-width: 320px;
    overflow-x: hidden;
  }
  
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* General */
  .row,
  .f-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > *,
  .f-row > * {
    padding-left: 10px;
    padding-right: 10px;
    float: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
  }
  
  .justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    width: 100%;
  }
  
  .col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  
  @media (min-width: 992px) {
    .col-md-auto {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
  }
  
  .col_product_image,
  .col_product_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  @media (min-width: 768px) {
    .col_product_image {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
      flex: 0 0 45%;
      max-width: 45%;
    }
  
    .col_product_right {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
      flex: 0 0 55%;
      max-width: 55%;
    }
  }
  
  .row-mb-10 > * {
    margin-bottom: 10px !important;
  }
  
  .row-mb-20 > * {
    margin-bottom: 20px !important;
  }
  
  .mt-0 {
    margin-top: 0 !important;
  }
  
  .mb-0 {
    margin-bottom: 0 !important;
  }
  
  .mb-20 {
    margin-bottom: 20px !important;
  }
  
  .ml-auto {
    margin-left: auto !important;
  }
  
  .ml-10 {
    margin-left: 10px;
  }
  
  .show-desktop-lg {
    display: none;
  }
  
  @media (min-width: 1200px) {
    .show-desktop-lg {
      display: block;
    }
  }
  
  /* Table */
  .table > tbody > tr > td,
  .table > tbody > tr > th,
  .table > tfoot > tr > td,
  .table > tfoot > tr > th,
  .table > thead > tr > td,
  .table > thead > tr > th {
    border-color: #dee2e6;
  }
  
  .table > tbody > tr:first-child > td {
    border-top: none;
  }
  
  /* Modal */
  .modal-content {
    border-radius: 0;
    width: 100%;
  }
  
  .modal-content .alert {
    font-size: 13px;
  }
  
  .modal-top-space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 60px);
  }
  
  .modal-full-height {
    position: absolute;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 100%;
    margin: 0;
  }
  
  .modal-full-height.modal-left {
    left: 0;
  }
  
  .modal-full-height.modal-right {
    right: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  
  .fade .modal-dialog.modal-left {
    -webkit-transform: translate(-25%, 0);
    -ms-transform: translate(-25%, 0);
    transform: translate(-25%, 0);
  }
  
  .fade .modal-dialog.modal-right {
    -webkit-transform: translate(25%, 0);
    -ms-transform: translate(25%, 0);
    transform: translate(25%, 0);
  }
  
  .in .modal-dialog.modal-left,
  .in .modal-dialog.modal-right {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  
  .modal-full-height .modal-content {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    outline: 0;
  }
  
  .modal-full-height.modal-right .modal-content {
    border: 0;
    border-left: 1px solid #dee2e6;
  }
  
  .modal-full-height .modal-body {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 0.5rem;
  }
  
  .modal-full-height .modal-header .close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
    font-size: 31px;
    text-shadow: none;
    padding-right: 1px;
  }
  
  .modal-full-height .modal-header {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-gray-light);
  }
  
  .modal-full-height .modal-footer {
    border-top: 1px solid var(--color-gray-light);
    padding-top: 15px;
  }
  
  .modal-full-height .modal-title {
    font-size: 18px;
  }
  
  @media (min-width: 568px) {
    .modal-content {
      padding: 15px;
    }
    .modal-full-height .modal-content {
      padding: 0;
    }
  }
  
  .modal-header {
    text-align: center;
    border-bottom: none;
    position: relative;
  }
  
  .modal-header .close {
    position: absolute;
    top: -2px;
    right: -5px;
    background: #fff;
    color: var(--color-primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    padding-left: 1px;
    filter: alpha(opacity=80);
    opacity: 0.8;
  }
  
  .modal-header .close:focus,
  .modal-header .close:hover {
    color: #4c4c4c;
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  
  .modal-title {
    font-size: 22px;
    font-weight: 500;
  }
  
  @media (max-width: 767.98px) {
    .modal-title {
      font-size: 17px;
    }
  }
  
  .modal-footer {
    text-align: center;
    border-top: none;
    padding-top: 0;
  }
  
  @media (min-width: 768px) {
    .modal-sm {
      width: 450px;
    }
  }
  
  /* Btn */
  .btn {
    border-radius: 3px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  
  .btn-primary {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .btn-primary:hover,
  .btn-primary.focus,
  .btn-primary:focus {
    color: #fff;
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    outline: none;
  }
  .btn-primary.disabled,
  .btn-primary.disabled.active,
  .btn-primary.disabled.focus,
  .btn-primary.disabled:active,
  .btn-primary.disabled:focus,
  .btn-primary.disabled:hover,
  .btn-primary[disabled],
  .btn-primary[disabled].active,
  .btn-primary[disabled].focus,
  .btn-primary[disabled]:active,
  .btn-primary[disabled]:focus,
  .btn-primary[disabled]:hover,
  fieldset[disabled] .btn-primary,
  fieldset[disabled] .btn-primary.active,
  fieldset[disabled] .btn-primary.focus,
  fieldset[disabled] .btn-primary:active,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary:hover,
  .btn-primary.active,
  .btn-primary:active,
  .open > .dropdown-toggle.btn-primary,
  .btn-primary.active.focus,
  .btn-primary.active:focus,
  .btn-primary.active:hover,
  .btn-primary:active.focus,
  .btn-primary:active:focus,
  .btn-primary:active:hover,
  .open > .dropdown-toggle.btn-primary.focus,
  .open > .dropdown-toggle.btn-primary:focus,
  .open > .dropdown-toggle.btn-primary:hover {
    color: #fff;
    background-color: var(--color-gray-dark);
    border-color: var(--color-gray-dark);
    outline: none;
  }
  .btn-link {
    color: var(--color-primary);
  }
  .btn-link:focus,
  .btn-link:hover {
    color: var(--color-primary-hover);
    text-decoration: none;
    outline: none;
  }
  .btn-link:focus,
  .btn-link:active:focus {
    color: var(--color-gray-dark);
  }
  a {
    color: var(--color-primary);
  }
  a:focus,
  a:hover {
    color: var(--color-gray-dark);
    text-decoration: none;
  }
  a:focus,
  .btn.active.focus,
  .btn.active:focus,
  .btn.focus,
  .btn:active.focus,
  .btn:active:focus,
  .btn:focus {
    outline: none;
  }
  
  .nav-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  /* Form */
  .s-headSearch .form-control {
    border-color: var(--color-primary);
    border-radius: 0;
    height: 42px;
    font-size: 15px;
  }
  
  .s-headSearch .form-control:focus {
    border-color: var(--color-primary);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
      0 0 8px rgba(204, 0, 0, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 0, 0, 0.6);
  }
  
  .form-control {
    height: 40px;
    font-size: 13px;
    border-radius: 0;
    border-color: #d0d0d0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: background-color ease 0.25s;
    -o-transition: background-color ease 0.25s;
    transition: background-color ease 0.25s;
  }
  
  .form-control:hover,
  .form-control:focus {
    background: #efefef;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .form-control:focus {
    border-color: var(--color-gray);
  }
  
  .input-group .btn {
    height: 42px;
  }
  
  .s-input-group {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .s-input-group__label,
  .s-input-group__btn {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #fff;
    line-height: 18px;
  }
  
  .s-input-group__label {
    margin-right: 10px;
    font-weight: 400;
  }
  
  .s-input-group__btn {
    display: block;
    font-weight: bold;
  }
  
  .s-input-group__btn:hover,
  .s-input-group__btn:focus {
    opacity: 0.7;
    color: #fff;
  }
  
  .s-input-group__btn:active,
  .s-input-group__btn.active {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .s-dropdown-menu {
    min-width: 70px;
  }
  
  .s-dropdown-menu__limit {
    left: auto;
    right: 0;
  }
  
  .s-dropdown-menu .btn {
    display: block;
    width: 100%;
    border-radius: 0;
    font-size: 13px;
  }
  .s-dropdown-menu li + li {
    margin-top: 1px;
  }
  .s-dropdown-menu .btn.active {
    background-color: var(--color-primary);
    color: #fff;
    pointer-events: none;
  }
  
  /* Heading */
  .s-headingTitle {
    margin-bottom: 10px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .s-headingTitle__text {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
  }
  
  .s-headingTitle__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    color: var(--color-primary);
  }
  
  .s-headingTitle__icon::before,
  .s-headingTitle__icon::after {
    content: "";
    display: block;
    width: 40px;
    border-top: 1px solid var(--color-primary);
  }
  
  .s-headingTitle__icon .icon {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .p-heading {
    background-color: var(--color-gray-lighten);
    border-bottom: 1px solid var(--color-primary);
    padding: 25px 0;
    margin-bottom: 20px;
  }
  
  .p-heading__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
  }
  
  @media (min-width: 768px) {
    .p-heading__title,
    .s-headingTitle__text {
      font-size: 20px;
    }
  }
  
  @media (min-width: 992px) {
    .p-heading__title,
    .s-headingTitle__text {
      font-size: 25px;
    }
  }
  
  .s-description {
    margin-bottom: 40px;
    line-height: 21px;
    color: #333;
  }
  
  /* Breadcrubs */
  .s-breadcrumb {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
  }
  
  .s-breadcrumb__item .icon {
    vertical-align: middle;
    margin-top: -2px;
    display: inline-block;
    color: var(--color-primary);
    padding-right: 7px;
  }
  
  .s-breadcrumb__item + .s-breadcrumb__item {
    margin-left: 9px;
  }
  
  .s-breadcrumb__link {
    font-weight: 500;
    color: var(--color-black);
  }
  
  span.s-breadcrumb__link {
    font-weight: 800;
  }
  
  /* Pagination */
  .s-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style-type: none;
    margin: 0 0 10px;
    padding: 0;
  }
  
  .s-pagination li a,
  .s-pagination li span {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-primary);
    line-height: 18px;
  }
  
  .s-pagination li a:hover {
    color: var(--color-gray-dark);
  }
  
  .s-pagination li.active span {
    font-weight: 800;
    text-decoration: underline;
  }
  
  .s-pagination li .icon {
    font-size: 15px;
    line-height: 15px;
  }
  
  .row-pagination__bottom .s-pagination {
    margin-bottom: 30px;
  }
  
  /* Header Top */
  .s-top__wrapper {
    background-color: var(--color-primary);
    padding: 10px 0;
  }
  
  .s-top__bg {
    background: url(../image/ornament-duble.png) repeat-x left center;
    height: 46px;
  }
  
  .s-top__link {
    display: block;
    padding: 4px 5px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
  }
  
  .language-select {
    text-transform: uppercase;
  }
  
  .s-top__link.active {
    opacity: 0.8;
  }
  
  .s-lang__list .s-top__link.active {
    pointer-events: none;
  }
  
  .s-top__link:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
  }
  
  .s-top__link:focus,
  .s-top__link:active:focus {
    color: #fff;
    opacity: 0.6;
  }
  
  .s-top__link:hover,
  .s-top__link:focus:hover,
  .s-top__link:focus,
  .s-top__link:active {
    outline: none;
  }
  
  .s-topLink__link {
    padding: 0 9px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
  }
  
  .s-iconsTop__link {
    display: block;
    margin-left: 5px;
    padding: 0 10px;
    font-size: 20px;
    color: #fff;
    line-height: 1;
    position: relative;
  }
  
  .s-iconsTop__link:hover,
  .s-topLink__link:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
  }
  
  .s-iconsTop__link:focus,
  .s-topLink__link:focus {
    text-decoration: none;
    color: #fff;
    opacity: 0.6;
  }
  
  .s-iconsTop__counter {
    position: absolute;
    top: -5px;
    right: 0px;
    background: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: var(--color-black);
    line-height: 16px;
    text-align: center;
    display: none;
  }
  
  .s-iconsTop__active .s-iconsTop__counter {
    display: block;
  }
  
  .s-iconsTop {
    margin-left: auto;
  }
  
  .s-iconsTop__list {
    margin-bottom: -1px;
  }
  
  .s-topLink
   {
    display: none;
  }
  
  .s-topLink
   {
    display: none;
  }
  
  .s-topLink.mobile
   {
    display: block;
  }
  
  .mobile .s-topLink__list {
    display: block;
    margin-bottom: 20px;
  }
  
  .mobile .s-topLink__link,
  .mobile .s-top__link {
    display: block;
    margin: 7px;
    color: var(--color-black);
    text-align: center;
  }
  
  .mobile .s-logo__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
  }
  
  .mobile .s-logo__text {
    max-width: 170px;
  }
  
  button.s-iconsTop__link {
    background-color: transparent;
    border: none;
  }
  
  @media (min-width: 768px) {
    .s-top__link {
      font-size: 16px;
    }
  
    .s-iconsTop__link {
      margin-left: 10px;
      font-size: 22px;
    }
  }
  
  @media (min-width: 992px) {
    .s-iconsTop {
      width: 20%;
    }
  
    .s-topLink,
    .s-topCurrency {
      display: block;
    }
  
    .s-iconsTop__burger {
      display: none;
    }
  }
  
  @media (max-width: 991px) {
    .s-topCurrency {
      display: block !important;
    }
  }
  
  .s-topCurrency {
    margin-left: auto !important;
    margin-right: 10px !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-end !important;
  }
  
  /* Search autocomplete */
  .s-h-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .s-h-product__content {
    display: block;
    padding-left: 10px;
    line-height: 1;
    white-space: normal;
  }
  
  .s-h-product__name {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
  }
  
  .s-h-product__author {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
    color: var(--color-gray-dark);
  }
  
  .s-h-product__price {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-primary);
  }
  
  .s-h-product__priceOld {
    margin-left: 15px;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-gray);
    text-decoration: line-through;
  }
  
  .s-headSearch .dropdown-menu {
    width: 100%;
  }
  
  .s-headSearch .dropdown-menu > li > a {
    padding: 3px;
  }
  
  /* Cart */
  .h-cart__image {
    width: 90px;
  }
  
  .h-cart__productName {
    display: block;
    color: var(--color-primary);
    line-height: 1.2;
  }
  
  .h-cart__productName:hover {
    color: var(--color-secondary);
  }
  
  .h-cart__option span {
    font-weight: 600;
    font-size: 11px;
  }
  
  .h-cart__option small {
    font-size: 12px;
  }
  
  .h-cart__options {
    margin-bottom: -5px;
  }
  
  .h-cart__price {
    margin-top: 5px;
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 600;
  }
  
  .h-cart__productTotal {
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
  }
  
  .h-cart__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .h-cart__remove {
    margin-left: auto;
    font-size: 18px;
    color: #de1919;
  }
  
  .h-cart__total {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .h-cart__totalStrong {
    font-size: 16px;
  }
  
  .h-cart__order {
    display: block;
    margin-bottom: 7px;
  }
  
  .h-cart__remove {
    margin-left: auto;
    font-size: 18px;
    color: #de1919;
    background-color: transparent;
    border-color: transparent;
  }
  
  .s-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .s-quantity__input {
    padding: 5px;
    min-width: 100px;
    border: 1px solid var(--color-secondary);
    text-align: center;
    font-size: 18px;
    line-height: 18px;
  }
  
  .s-quantity__btn {
    display: block;
    background-color: transparent;
    border-color: transparent;
    width: 30px;
    height: 17px;
    padding: 0 5px;
    font-size: 20px;
    color: var(--color-black);
  }
  
  .s-quantity__btn .icon {
    display: block;
    margin-top: -3px;
  }
  
  .s-quantity__btn.active.focus,
  .s-quantity__btn.active:focus,
  .s-quantity__btn.focus,
  .s-quantity__btn:active.focus,
  .s-quantity__btn:active:focus,
  .ak-p-quantity--btn:focus {
    outline: none;
  }
  
  /* Header Main */
  .s-header {
    padding: 5px 0;
    height: 143px;
  }
  
  @media (min-width: 768px) {
    .s-header {
      height: 96px;
    }
  }
  
  @media (min-width: 992px) {
    .s-header {
      height: 126px;
    }
  }
  
  .s-header__scroll {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 555;
  }
  
  .s-header .sticky {
    padding: 10px 0;
    position: fixed;
    -webkit-box-shadow: 0 0 10px 0 #111;
    box-shadow: 0 0 10px 0 #111;
  }
  
  .s-header .container {
    position: relative;
  }
  
  .s-logo__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-black);
  }
  
  .s-logo__link:hover {
    text-decoration: none;
    color: var(--color-black);
  }
  
  .s-logo__link img {
    width: 60px;
    height: 86px;
    -webkit-transition: width 0.3s, height 0.3s;
    -o-transition: width 0.3s, height 0.3s;
    transition: width 0.3s, height 0.3s;
  }
  .sticky .s-logo__link img {
    height: auto;
    width: 40px;
  }
  
  .s-logo__text {
    display: block;
    max-width: 200px;
    line-height: 1;
    margin-left: 15px;
  }
  
  .s-header__catalog {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .s-header__catalog,
  .s-header__writeUs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .s-header__writeUs .icon {
    font-size: 22px;
  }
  
  .s-header__catalog .icon,
  .s-header__writeUs .icon {
    margin-right: 5px;
  }
  
  .s-headSearch__btn {
    font-size: 22px;
    padding: 8px 10px;
  }
  
  @media (min-width: 992px) {
    .s-header__catalog {
      min-width: 180px;
    }
  
    .s-logo__link {
      font-size: 20px;
    }
  
    .s-logo__link img {
      width: 81px;
      height: 116px;
    }
  
    .s-logo__text {
      max-width: 220px;
    }
  }
  
  @media (max-width: 767.98px) {
    .s-header__logo {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
      flex: 0 0 60%;
      width: 60%;
      max-width: 100%;
    }
  
    .s-logo__link {
      font-size: 14px;
    }
  
    .s-header__colCatalog {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
      flex: 0 0 40%;
      width: 40%;
      max-width: 100%;
      text-align: right;
    }
  
    .s-header__catalog {
      font-size: 12px;
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .s-header__search {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
      margin-top: 5px;
    }
  }
  
  /* Nav catalog */
  .dropdown-menu {
    border-radius: 0;
    border-color: var(--color-gray-light);
  }
  
  .s-nav {
    padding: 25px 20px 5px;
  }
  
  .s-nav__item {
    margin-bottom: 20px;
    line-height: 1;
  }
  
  .s-nav__link {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 15px;
    color: var(--color-black);
  }
  
  .s-nav__children {
    margin-top: 15px;
  }
  
  .s-nav__child {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    color: var(--color-black);
  }
  
  .s-nav__children li + li .s-nav__child {
    margin-top: 10px;
  }
  
  @media (max-width: 767.98px) {
    .s-header__colCatalog .dropdown-menu {
      top: 70px;
    }
    .s-nav__link {
      font-size: 14px;
    }
    .s-nav__child {
      font-size: 13px;
    }
  }
  
  /* Footer */
  .s-footer {
    padding: 35px 0 15px;
  }
  
  .s-footerLogo {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-black);
    line-height: 1;
  }
  
  .s-footerLogo img {
    margin: 0 auto 20px;
  }
  
  .s-footer__link {
    display: block;
    padding: 3px 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-black);
  }
  
  .s-footer__link:hover {
    color: var(--color-primary);
  }
  
  .s-footer__writeUs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
  }
  .s-footer__writeUs .icon {
    font-size: 22px;
    margin-right: 5px;
  }
  
  .f-sn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  
  .f-sn__link {
    display: block;
    padding: 5px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 35px;
    font-size: 25px;
  }
  
  @media (max-width: 767.98px) {
    .s-footerLogo {
      font-size: 16px;
    }
  
    .s-footer__link {
      padding: 5px 0;
      font-size: 13px;
      line-height: 1.2;
    }
  
    .s-footer__info {
      text-align: center;
    }
  
    .f-sn {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  
  .s-error {
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .s-error__img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  
  .s-error__text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
  }
  
  /* Content */
  /* Card */
  .s-card {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .swiper-slide .s-card {
    margin: 10px;
  }
  
  .s-card__image {
    background-color: var(--color-gray-lighten);
    display: block;
    position: relative;
  }
  
  .s-card__bage {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    background-color: var(--color-primary);
    border-radius: 50%;
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    line-height: 38px;
    text-align: center;
  }
  
  .s-card__outlet {
    position: absolute;
    bottom: 20px;
    left: 10px;
    z-index: 3;
  }
  
  .s-card__outlet img {
    border-radius: 5px;
    max-width: 70px;
  }
  
  .s-card__body {
    padding: 10px;
    text-align: center;
  /*  margin: auto 0;*/
  }
  
  .s-card__specialText {
    font-size: 13px;
    color: var(--color-gray-dark);
    line-height: 1;
  }
  
  .product-list .s-card__specialText {
    margin-top: 10px;
  }
  
  .s-card__title-sm,
  .s-card__title {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .s-card__title-sm .s-card__titleLink,
  .s-card__titleLink {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-black);
    line-height: 1;
  }
  
  .s-card__title {
    height: 58px;
    margin-bottom: 10px;
  }
  
  .s-card__title .s-card__titleLink {
    max-height: 58px;
  }
  
  .s-card__titleLink:hover {
    color: var(--color-gray-dark);
  }
  
  .s-card__author {
    min-height: 20px;
    margin-bottom: 5px;
    font-size: 13px;
  }
  
  .s-card__link {
    color: var(--color-black);
  }
  
  .s-card__price {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 5px;
    height: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  
  .s-card__priceOld {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 13px;
    color: var(--color-black);
    text-decoration: line-through;
  }
  
  .s-card__btn {
    margin: 0 3px;
    padding: 10px;
    font-size: 20px;
  }
  
  .s-card__description {
    display: none;
  }
  
  @media (min-width: 992px) {
    .s-card__title-sm .s-card__titleLink,
    .s-card__titleLink {
      font-size: 16px;
    }
  
    .s-card__title {
      height: 63px;
    }
  
    .s-card__title .s-card__titleLink {
      max-height: 63px;
    }
  
    .s-card__author {
      font-size: 14px;
    }
  
    .s-card__priceOld {
      font-size: 15px;
    }
  
    .s-card__price {
      font-size: 17px;
    }
  
    .s-card__btn {
      font-size: 22px;
    }
  }
  
  @media (max-width: 767.98px) {
    .s-card__body,
    .s-card__btn {
      padding: 10px 5px;
    }
  }
  
  /* Homepage */
  .s-productsSlider {
    padding: 35px 0;
  }
  
  .s-newsletter {
    background-color: var(--color-primary);
    padding: 10px 0;
  }
  
  .s-newsletter__icon {
    padding: 10px 5px 10px 10px;
    font-size: 60px;
    color: #fff;
    line-height: 1;
  }
  
  .s-newsletter__content {
    max-width: 550px;
    padding: 10px 0;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  
  .s-newsletter__title {
    margin-bottom: 10px;
    font-size: 17px;
    text-transform: uppercase;
  }
  
  .s-newsletter__body {
    font-size: 14px;
  }
  
  .s-newsletter__btn {
    border-color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
  }
  
  .s-newsletter__btn:hover {
    border-color: #fff;
  }
  
  .s-newsletter__btn .icon {
    font-size: 24px;
    margin-right: 7px;
  }
  
  @media (min-width: 992px) {
    .s-newsletter__icon {
      font-size: 80px;
      padding-right: 10px;
    }
  
    .s-newsletter__content {
      padding: 10px 20px;
    }
  
    .s-newsletter__title {
      font-size: 20px;
      margin-bottom: 20px;
    }
  
    .s-newsletter__body {
      font-size: 16px;
    }
  
    .s-newsletter__btn {
      font-size: 17px;
    }
  }
  
  @media (min-width: 1200px) {
    .s-newsletter__icon {
      font-size: 100px;
      padding: 10px 20px;
    }
  
    .s-newsletter__title {
      font-size: 25px;
    }
  
    .s-newsletter__body {
      font-size: 20px;
    }
  
    .s-newsletter__btn {
      font-size: 20px;
    }
  }
  
  @media (max-width: 767.98px) {
    .s-newsletter__btns {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
      margin-top: 5px;
      text-align: center;
    }
  
    .s-newsletter__icon {
      padding-right: 0;
    }
  
    .s-newsletter__body {
      font-size: 13px;
    }
  }
  
  /* Category page */
  .s-categories {
    margin-top: 10px;
    padding-bottom: 20px;
  }
  
  .s-categories .row > div {
    margin-bottom: 20px;
  }
  
  .c-sort {
    background-color: var(--color-primary);
    margin-bottom: 30px;
    padding: 10px;
  }
  
  .c-sort .form-group {
    margin-bottom: 0;
  }
  
  .c-sort__display {
    padding: 4px 12px;
    font-size: 22px;
  }
  
  .c-sort__display.active {
    opacity: 0.7;
  }
  
  @media (min-width: 768px) {
    .product-list .s-card {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
    }
  
    .product-list .s-card__image {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      width: 25%;
    }
  
    .product-list .s-card__body {
      -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
      flex: 1 0 75%;
      width: 75%;
      padding-left: 35px;
      padding-right: 35px;
      text-align: left;
    }
  
    .product-list .s-card__title {
      height: auto;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  
    .product-list .s-card__titleLink {
      max-height: none;
    }
  
    .product-list .s-card__author {
      margin-bottom: 10px;
    }
  
    .product-list .s-card__description {
      margin-bottom: 15px;
    }
  
    .product-list .s-card__price {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
  
    .product-list .s-card__priceOld {
      margin-right: 15px;
    }
  
    .product-list .s-card__description {
      display: block;
    }
  }
  
  @media (max-width: 767.98px) {
    .c-sort__reload {
      margin-bottom: 10px;
    }
  }
  
  /* Product page */
  .s-product {
    padding-top: 20px;
  }
  
  .col_product_image {
    margin-bottom: 20px;
  }
  
  .col_product_image img {
    margin: auto;
  }
  
  .col_product_right {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .s-product__outlet {
    position: absolute;
    bottom: 30px;
    left: 15px;
    z-index: 100;
    max-width: 150px;
  }
  
  .s-product__outlet img {
    border-radius: 5px;
  }
  
  .s-product__text {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-black);
    line-height: 1;
  }
  
  .s-product__specialText {
      margin-bottom: 20px;
      margin-top: -10px;
      color: var(--color-secondary);
  }
  
  .s-product__contrast {
    margin-right: 10px;
    font-weight: 500;
    color: var(--color-primary);
  }
  
  .s-product__link {
    color: var(--color-black);
    text-decoration: underline;
  }
  
  .s-product__link:hover {
    text-decoration: none;
  }
  
  .s-product__topSpace {
    margin-top: 45px;
  }
  
  .s-product__option {
    min-height: 45px;
  }
  
  .s-product__price {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
  }
  
  .s-product__priceOld {
    font-weight: 600;
    font-size: 15px;
    text-decoration: line-through;
    margin-right: 15px;
  }
  
  .s-product__btns {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  #button-cart .icon {
    vertical-align: middle;
    margin-top: -3px;
    display: inline-block;
  }
  
  .s-product__btn,
  .s-product__btnI,
  .a2a_kit__btn {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
  }
  
  .s-product__btn,
  .s-product__btnI {
    padding: 10px 24px;
    height: 38px;
  }
  
  .s-product__btn,
  .s-product__btnI {
    margin-right: 15px;
  }
  
  .a2a_kit__btn + .a2a_kit__btn {
    margin-left: 15px;
  }
  
  .s-product__btn svg {
    vertical-align: middle;
    font-size: 14px;
  }
  
  .s-product__btnI {
    font-size: 22px;
    padding: 6px 12px 4px;
  }
  
  @media (max-width: 991.98px) {
    .s-product__fastOrder {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      margin-top: 10px;
    }
  }
  
  .a2a_kit__btn {
    width: 38px;
    height: 38px;
    padding: 6px 6px 4px;
    font-size: 24px;
  }
  
  .p-content__videoContainer {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 25px;
  }
  
  .p-content__videoContainer:last-child {
    margin-bottom: 0;
  }
  
  .p-content__videoIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .s-product__title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .s-product__attribute tbody > tr > td {
    border-top: 1px dotted #333;
  }
  
  .s-product__attribute tr:first-child > td {
    border-top: none;
  }
  
  .s-p-attribute__left {
    width: 25%;
  }
  
  .s-p-attribute__right {
    font-weight: 600;
  }
  
  .nav-tabs > li > a {
    border-radius: 0;
    padding: 20px 25px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black);
  }
  
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:focus,
  .nav-tabs > li.active > a:hover {
    border: 1px solid #d5d8dc;
    border-bottom-color: transparent;
    color: var(--color-primary);
  }
  
  .tab-content {
    border: 1px solid #d5d8dc;
    border-top: none;
    padding: 20px;
    line-height: 21px;
  }
  
  /* Page search */
  .p-search {
    padding: 30px 0;
  }
  
  @media (max-width: 767.98px) {
    .p-search {
      padding: 10px 0;
    }
  }
  
  .p-search #button-search {
    margin-bottom: 5px;
    height: 42px;
    font-weight: bold;
  }
  
  .p-search .checkbox-inline {
    font-weight: bold;
  }
  
  /* Page contact */
  .s-page__contact {
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Account */
  .s-account__btn {
    padding: 10px 30px;
    font-weight: 500;
    font-size: 14px;
    min-width: 200px;
  }
  
  /* Login */
  .s-account__deliver {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .s-account__deliver::before, .s-account__deliver::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--color-gray-dark);
    margin: 0 10px;
  }
  
  .required .text-danger,
  .s-link-forgotten {
    display: block;
    margin-top: 3px;
    font-size: 13px;
  }
  
  .s-accountLinks .btn {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    text-align: left;
  }
  
  /* Compare */
  .compareCategories__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
  }
  
  .compareCategories__item {
    margin-bottom: 5px;
  }
  
  .compareCategories__icon {
    color: var(--color-primary);
  }
  
  .compareCategories__link {
    margin-left: 5px;
    color: var(--color-black);
  }
  
  /* Product review */
  .s-product__review {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .s-product__reviewTitle {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
  }
  
  .p-p-review__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 25px;
  }
  
  .p-p-review__content {
    padding-left: 20px;
  }
  
  .p-p-review__title {
    margin-bottom: 5px;
  }
  
  .p-p-review__name {
    font-size: 14px;
  }
  
  .p-p-review__date {
    color: var(--color-gray-dark);
  }
  
  .p-p-review__rating {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 7px;
  }
  
  .p-p-review__text {
    font-style: italic;
  }
  
  .p-p-review__item:first-child {
    padding-top: 15px;
  }
  
  .p-p-review__item + .p-p-review__item {
    padding-top: 25px;
    border-top: 1px solid var(--color-gray-light);
  }
  
  .p-p-review__heading {
    margin-top: 15px;
    text-align: center;
    color: #777;
  }
  
  .s-topCurrency--desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
    #navbarMobile #form-currency {
    display: none !important;
  }

    #navbarMobile .s-topCurrency,
    #navbarMobile #form-currency {
    display: none !important;
  }

  /* Базовий стиль для посилання "Про нас" */
.s-aboutLink__link {
  color: #fff !important;            /* білий текст */
  font-weight: 600;                  /* завжди bold */
  text-decoration: none !important;  /* без підкреслення */
  display: flex;
  align-items: center;               /* вертикальне вирівнювання */
  justify-content: center;           /* горизонтальне вирівнювання */
  padding: 0 10px;
  line-height: 1;                    /* прибирає "підскок" */
  transition: color 0.2s ease;
}

/*
.s-aboutLink__link:hover,
.s-aboutLink__link:focus {
   color: #e0e0e0 !important;          світло-сірий при наведенні 
}
*/

.s-aboutLink__link:hover,
.s-aboutLink__link:focus {
  text-decoration: none;
  color: #fff !important;
  opacity: 0.8;
}

/* Контейнер для мобільного блоку "Про нас" */
.s-aboutLink--mobile {
  display: flex;
  justify-content: center;
  align-items: center;               /* вирівнює по вертикалі */
  text-align: center;
}

/* === Мови === */

.s-top__link.language-select.active {
  color: #000000 !important; /* чорний для вибраної */
}

/* === Валюти === */

.s-topCurrency--desktop .s-top__link.active {
  color: #000000 !important; /* чорний для вибраної */
}

.s-topCurrency .s-top__link.active {
  color: #000000 !important;
  font-weight: 600;            /* можна ще підкреслити жирністю */  
}

/* === Контейнер верхнього меню === */
.s-top__wrapper {
  display: flex;
  align-items: center;
}

/* Список лінків (Про нас, Акційні, Доставка, Контакти) */
.s-topLink__list {
  flex: 1;                        /* займає весь простір */
  display: flex;
  justify-content: center;        /* центрує блок */
  gap: 12px;
  white-space: nowrap;            /* не переносить слова */
}

/* Валюти праворуч */
.s-topCurrency--desktop {
  display: flex;
  gap: 6px;
  margin-left: auto;              /* відсуває вправо */
  flex-shrink: 0;                 /* не стискається */
}

@media (max-width: 768px) {
  .s-topCurrency--desktop {
    justify-content: flex-end; /* просто прижати вправо */
  }
}

/* Робимо контейнер flex */
#cart_coupon_submit .inputs {
  display: flex;
  align-items: center;
}

/* Прибираємо жорсткий inline‑розмір і розтягуємо поле */
#cart_coupon_submit input[name="coupon"] {
  flex: 1 1 auto;
    margin: 0 10px; /* однаковий відступ зліва і справа */
  min-width: 250px;
}

/* Слово "Купон" відокремлюємо */
#cart_coupon_submit .inputs strong,
#cart_coupon_submit .inputs label {
  margin-right: 10px; /* відстань між словом і полем */
}

/* Кнопка лишається компактною 
#cart_coupon_submit .inputs.buttons {
  flex: 0 0 auto;
}
*/

#cart_coupon_submit .inputs {
  font-weight: bold;
}