:root {
    /* colors */
    --black: #000000;
    --white: #ffffff;
    --transparent-white: #ffffff99;
    --border-line: #535353;
    --black-50: #00000050;
    --gold: #f8a401;
    /* --light-gray: #f2f2f2; */
    --light-gray: #f6f6f6;
    --gray: #9b9b9b;
    --red: #ed2647;
    --orange: rgb(255, 86, 20);
    --green: #009246;
    /* --accent-color: #aad536; */
    --accent-color: #f395a5;

    --dynamic-height: calc(var(--vh, 1vh) * 100);

    --container-padding: var(--col-gap);
    --row-padding: clamp(2em, 4vw, 4em);
    --col-padding: clamp(2em, 4vw, 4em);
    --row-gap: max(1.75em, 1.75vw);
    --col-gap: 2.75vw;

    --primary-color: #ed2647;
    --secondary-color: #1e2f39;
    --footer-color: #282828;

    --title-size: clamp(2.5rem, calc(2vh + 2vw), 3rem);
    --fs-xs: 0.775rem;

    --transition: all 0.15s linear;
    --transition-blur: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }


  @font-face {
    font-family: Mark Pro;
    src: url(/frontend/web/css/fonts/markProMedium.woff2);
    font-weight: 500;
    font-display: swap;
  }
  @font-face {
    font-family: Mark Pro;
    src: url(/frontend/web/css/fonts/markProBold.woff2);
    font-weight: 600;
    font-display: swap;
  }

  .container-fluid {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .container-fluid .row {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  .container {
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 100%;
  }
  .row {
    max-width: 100%;
    margin: 0 auto;
  }

  .col-padding-left {
    padding-left: calc(2 * var(--col-gap));
  }
  .col-padding-right {
    padding-right: calc(2 * var(--col-gap));
  }
  .col-padding-left-xs {
    padding-left: var(--col-gap);
  }
  .col-padding-right-xs {
    padding-right: var(--col-gap);
  }

  main {
    min-height: calc(100vh - 247px);
  }

  /* Typography */

  html {
    font-size: 16px;
  }
  body {
    font-family: 'Mark Pro', sans-serif;
    font-size: 1.1rem;
    color: #000;
  }

  body,
  .content-wrapper {
    overflow-x: clip;
  }

  h1 {
    font-size: var(--title-size);
    font-weight: 600;
    margin-bottom: 0;
  }
  h2 {
    font-size: calc(var(--title-size) * 0.618);
    font-weight: 600;
  }
  h3 {
    font-size: calc(var(--title-size) * 0.618);
  }

  p:last-of-type {
    margin-bottom: 0;
  }

  .section-title > * {
    font-size: calc(var(--title-size) * 0.518);
    font-weight: 600;
  }
  .section-title.xs > * {
    font-size: clamp(1.075rem, calc(var(--title-size) * 0.418), 1.075rem);
  }
  .section-title.md > * {
    font-size: clamp(1.075rem, calc(var(--title-size) * 0.518), 1.275rem);
  }


  b,
  strong {
    font-weight: 600;
  }
  a {
    color: #000;
    text-decoration: none !important;
    background-color: transparent;
    transition: all .2s linear;
  }
  a:hover {
    color: #000;
  }

  .fs-xs {
    font-size: var(--fs-xs);
  }


  /* Forms */
  .form-group:last-child {
    margin-bottom: 0;
  }
  .form-group.label_abs {
    position: relative;
  }
  .form-group.label_abs label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    transition: 0.15s ease-out;
    padding: 0 5px;
    pointer-events: none;
    color: rgb(155, 155, 155);
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
  }
  .form-group.label_abs.filled label {
    top: 0;
    font-size: 0.675rem;
    background: #fff;
    color: #000;
  }
  .form-control,
  .select2-selection--single {
    height: auto;
    border: 1px solid rgb(242, 242, 242) !important;
    background-color: var(--light-gray) !important;
    border-radius: 5px !important;
    font-size: 1rem;
    box-shadow: none !important;
    padding: 15px;
    min-height: 56px !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
  }
  .form-control:hover,
  .form-control:focus,
  .select2-selection--single:hover,
  .select2-selection--single:focus {
    border-color: #000 !important;
  }
  .form-group.label_abs.filled .form-control,
  .form-group.label_abs.filled .select2-selection--single {
    background: #fff !important;
    border-color: #000 !important;
  }

  .help-block-error {
    font-size: 0.875rem;
  }
  .helpers {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .helpers p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
  }
  .helpers a {
    color: #000;
  }

  .alert {
    z-index: 999999;
    height: fit-content;
    margin: auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
    opacity: 1!important;
    min-height: 75px;
    align-items: center;
    color: white;
    border: unset;
  }
  .alert-success {

    background: var(--green);
}

  .close {
    position: relative;
    bottom: 2px;
  }
  .text-danger {
    color: #dc3545 !important;
    font-size: 16px;
    font-family: var(--font-light);
}


  /* Globale */
  .overflow-hidden::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .blur {
    filter: blur(5px);
    transition: var(--transition);
  }

  .overlay {
    position: relative;
  }
  .overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
  }


  .card-header {
    padding: 0 !important;
  }
  .btn-link:active,
  .btn-link:focus {
    outline: unset !important;
    box-shadow:  unset !important;
  }

  .slick-dots li button:before {
    font-size: 18px;
  }

  .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: var(--primary-color);
  }




  /* UI elements */
  .btn {
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    padding: 0.8em calc(1 * var(--col-gap));
    transition: all .2s linear;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 3px;
  }
  .btn:focus,
  button:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  .module-button.dark .btn-secondary,
  .btn-secondary.dark {
    border-color: #000;
    color: #000;
  }
  .module-button.dark .btn-secondary:hover,
  .module-button.dark .btn-secondary:focus,
  .btn-secondary.dark:hover,
  .btn-secondary.dark:focus {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .btn-primary {
    color: #000;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: #fff;
  }
  .btn-primary:hover,
  .btn-primary:focus {
    background: var(--light-gray);
    border-color: #fff;
    color: #000;
    transform: translateY(-3px);
  }
  .btn-secondary {
    background: transparent;
    border-color: #fff;
  }
  .btn-secondary:hover,
  .btn-secondary:focus {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: translateY(-3px);
  }




    header {
      position: sticky;
      top: -80px;
      z-index: 999;
    }
    /* Header Sales */
    .header-sales {
      position: relative;
      align-items: center;
      justify-content: center;
      background: var(--accent-color);
      overflow: hidden;
    }
    .header-sales-inner {
      display: flex;
      flex: 1 1 0;
      justify-content: center;
      padding: 0.65rem 0;
    }
    .header-sales-inner .text {
      width: 100%;
      font-weight: 600;
      text-align: center;
      font-size: 1rem;
    }
    .header-sales-inner .icon {
      display: flex;
      align-items: center;
    }
    .header-sales .sale-icon {
      position: absolute;
      top: 0;
      left: 0;
      width: 100px;
      height: 100px;
      opacity: 0.15;
      transform: translate(-45%, -50%);
    }
    .header-sales .info {
      display: flex;
    }

    /* Header Contacts*/
    .header-contacts {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: var(--light-gray);
    }
    .header-contacts .nav-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--gray);
      padding: 0.3rem 10px;
      border-left: 1px solid #e5e5e5;
      border-right: 1px solid #e5e5e5;
    }
    .header-contacts .nav-item:hover {
      background: #e5e5e5;
    }
    .header-contacts .nav-item lord-icon {
      opacity: 0.3
    }
    .header-contacts .nav-item:hover {
      color: #000;
    }
    .header-contacts .nav-item:hover lord-icon {
      opacity: 1;
    }
    .header-contacts .right-side {
      display: flex;
      align-items: center;
    }
    .header-contacts .right-side .nav-item:last-of-type {
      border-left: none;
    }
    .dropdown.mega-item .dropdown-menu {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
      justify-content: flex-start;
      column-gap: 2rem;
      row-gap: 1rem;
      height: auto;
      position: absolute;
      top: 69px;
      left: calc(0px - var(--col-gap));
      width: 100vw;
      margin: 0;
      padding: calc(0.5 * var(--col-gap)) var(--container-padding);
      border-radius: 0;
      border: none;
      background-color: #fff;
      border-top: 1px solid rgb(242, 242, 242);
      border-bottom: 1px solid rgb(242, 242, 242);
      opacity: 0;
      pointer-events: none;
    }
    .header-menu .mega-item:hover .dropdown-menu {
      opacity: 1;
      pointer-events: all;
    }
    .header-menu .dropdown-menu .nav-link {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0;
    }
    .header-menu .dropdown-menu .nav-item:last-child .nav-link {
      justify-content: center;
      background: var(--light-gray);
      /* color: #fff; */
      border-radius: 10px;
    }
    .header-menu .dropdown-menu .nav-link:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: calc(100% + 10px);
      height: calc(100% + 10px);
      transform: translate(-50%, -50%);
      background: var(--light-gray);
      border-radius: 10px;
      opacity: 0;
      pointer-events: none;
      z-index: -1;
      transition: var(--transition);
    }
    .header-menu .dropdown-menu .nav-link:hover:before {
      opacity: 1;
    }
    .header-menu .dropdown-menu .nav-item-image {
      width: 100px;
      border-radius: 10px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .header-menu .dropdown-menu .nav-item-image-inner {
      position: relative;
      padding-top: 100%;
    }
    .header-menu .dropdown-menu .nav-item-image-inner img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    /* Header Menu */
    .header-menu-wrapper {
      background: #fff;
      border-bottom: 1px solid rgb(242, 242, 242);
    }
    .header-menu-inner {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }
    .header-menu {
      height: 100%;
    }
    .header-menu ul {
      display: flex;
      flex-direction: row;
      gap: 2.5rem;
      height: 100%;
    }
    .nav-link {
      padding: 1.5rem 0.5rem;
      height: 100%;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--gray);
    }
    .navbar-brand {
      margin-right: 0;
      max-width: 150px;
      padding: 0;
    }
    .navbar-brand img {
      width: 100%;
    }
    .header-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 2rem;
    }

    .search {
      background: var(--light-gray);
      padding: 8px 8px 8px 45px;
      height: auto;
      min-width: 300px;
    }
    .search::placeholder {
      font-size: var(--fs-xs);
    }
    .search-container {
      position: relative;
    }
    .search-wrapper {
      position: relative;
    }
    .search-wrapper .search-icon {
      display: flex;
      position: absolute;
      left: 5px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      /* background: #e5e5e5; */
      border-radius: 100%;
      padding: 6px;
      pointer-events: none;
    }
    .search-wrapper .close-icon {
      position: absolute;
      top: 50%;
      right: 10px;
      z-index: 99;
      transform: translateY(-50%);
      display: flex;
      opacity: 0;
      cursor: pointer;
      transition: var(--transition);
    }
    .svg_search:hover,
    .close_search:hover {
      cursor: pointer;
    }
    .search-loading {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
    }
    .search-loading .loader {
      width: 25px;
      height: 25px;
      margin: 0;
    }
    .search-results {
      top: 42px;
      width: 100%;
      position: absolute;
      max-height: 600px;
      overflow-y: auto;
      left: 0;
      padding: 1rem;
      background-color: #fff;
      border-radius: 0 0 5px 5px;
      box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
    }

    .search-results::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 6px;
    }

    .search-results::-webkit-scrollbar-button:increment,
    .search-results::-webkit-scrollbar-button {
        display: none;
    }
    .search-results::-webkit-scrollbar-thumb {
        background-color: var(--accent-color);
        border-radius: 20px;
        border: 2px solid #fff;
    }
    .search-results::-webkit-scrollbar-track {
        border-radius: 10px;
    }

    .results-inner {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .results-inner .message {
      font-size: 0.875rem;
      text-align: center;
      font-weight: 600;
      color: var(--gray);
    }
    .results-inner .results-item {
      display: flex;
      gap: 1rem;
    }
    .results-inner .img_search {
      position: relative;
      width: 70px;
      flex-shrink: 0;
      border-radius: 5px;
      overflow: hidden;
      background: var(--light-gray);
    }
    .results-inner .img_search a {
      width: 100%;
      padding-top: 140%;
      display: flex;
    }
    .results-inner .img_search a img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .results-inner .desc_search,
    .results-inner .desc_search a {
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.2em;
    }
    .results-inner .desc_search a {
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
    }
    .results-inner .desc_search {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .results-inner .container_price_add_to_cart {
      margin-bottom: 0;
    }
    .results-inner .old-price {
      font-weight: 500;
    }

    .header-right-icons {
      padding-left: 0;
      margin-bottom: 0;
      list-style-type: none;
      display: flex;
      gap: 1rem;
    }
    .header-right-icons li {
      position: relative;
      display: flex;
      align-items: center;
    }
    .nav-item-log-out svg,
    .nav-item-log-out svg path {
      fill: var(--accent-color);
    }
    .header-right-icons li > * {
      display: flex;
      align-items: center;
    }
    .header-right-icons svg {
      max-width: 23px;
      height: auto;
    }
    .header-right-icons .cart button {
      padding: 0;
      background: transparent;
      border: none;
      outline: none;
      box-shadow: none;
    }



    .navbar-toggler {
      top: unset !important;
      left: unset !important;
    }
    #main-navbar {
      position: relative;
      width: 100%;
      background: #ffff;
      z-index: 5000;
    }
    #main-navbar {
        transition: all .1s linear;
    }

    .intro-title-col {
      padding: calc(0.3 * var(--col-gap));
      margin: calc(0.5 * var(--col-gap)) 0;
    }

    .intro-categories {
      display: grid;
      grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
      gap: calc(0.5 * var(--col-gap));
      padding: 0;
    }
    .intro-categories .middle {
      grid-row: 1/3;
      grid-column: 3/4;
    }
    .intro-categories .middle .fickle-inner {
      height: 100%;
    }
    .intro-categories .middle .fickle-title {
      font-size: 1.6rem;
    }
    .intro-categories .middle .fickle-content {
      padding: 1.5rem 2rem;
    }
    /* .intro-categories .middle .fickle-text-description > * {
      font-size: .875rem;
    } */

    .intro-categories .fickle-inner {
      padding-top: 110%;
      position: relative;
      margin-bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      overflow: hidden;
    }
    .intro-categories .fickle-inner:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      opacity: 0.2;
      border: 1px solid #000;
      border-radius: 10px;
      pointer-events: none;
      z-index: 1;
      transition: var(--transition);
    }
    .intro-categories .fickle-inner:hover:before {
      opacity: 0.5;
    }
    .intro-categories .fickle-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin-bottom: 0;
    }

    .intro-categories .fickle-image img {
      height: 100%;
      max-height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .intro-categories .fickle-title {
      font-size: 1.3rem;
      margin-bottom: 0;
      color: #fff;
    }
    .intro-categories .dark-title .fickle-title {
      color: #000;
    }
    .intro-categories .fickle-title a {
      color: #fff;
    }
    .intro-categories .dark .fickle-title,
    .intro-categories .dark .fickle-title a {
      color: #000;
    }
    .intro-categories .fickle-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1rem;
      position: absolute;
      top: 0;
      padding: 1.5rem 1rem;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
    }
    .intro-categories .fickle-description {
      display: flex;
      justify-content: flex-start;
    }
    .intro-categories .fickle-text-description > * {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 0;
      border-radius: 30px;
      color: #000;
      background-color: #fff;
      border-color: #fff;
      padding: 0.6em calc(0.3 * var(--col-gap));
      font-size: 0.775rem;
      font-weight: 600;
    }

    .sale-arguments {
      padding: 0 !important;
    }
    .arguments-slider {
      padding: calc(0.3 * var(--col-gap)) 0;
    }
    .arguments-slider .module-fickle {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .arguments-slider .fickle-header > * {
      font-size: 0.675rem;
      text-transform: uppercase;
      font-weight: 600;
    }
    .arguments-slider .fickle-image {
      margin-bottom: 0;
    }
    .arguments-slider .module-fickle img {
      height: 40px;
      width: auto;
    }



    .logo {
    max-height: 70px;
    }




.cart {
  position: relative;
  }

.cart .cart-items {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    background: var(--accent-color);
    font-size: 0.675rem;
    font-weight: 600;
    transform: translate(50%,-5px);
    border-radius: 100%;
    color: #000;
}
.cart-checkout-btn {
  font-size: 25px;
}

/* Search */

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgb(69 68 52 / 25%);
}



  /* Homepage */
  .homepage_section_1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-position: bottom;
    background-size: cover;
    padding-bottom: calc(1.5 * var(--col-gap));
    text-align: center;
  }
  .homepage_section_1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
  }

  .hero_homepage_text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: flex-end;
    column-gap: calc(0.5 * var(--col-gap));
    max-width: 50rem;
  }
  .hero_homepage_text .module-text {
      grid-column: 1/3;
  }
  .hero_homepage_text .module-button {
    display: flex;
    margin-top: 1rem;
    justify-content: flex-end;
  }
  .hero_homepage_text .module-button:last-of-type {
    grid-column: 2/3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  /* section 3 (slider) */
  .arrows-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: calc(0.5 * var(--col-gap));
    margin-top: calc(0.5 * var(--col-gap));
  }
  .prev-arrow,
  .next-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transition: all .2s linear;
    border-radius: 3px;
}
.slick-arrow span {
    position: relative;
    padding-top: 100%;
    width: 100%;
    width: 50px;
}
.slick-arrow span svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
}


.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 30px;
  row-gap: 5rem;
}
.contact-details .module-fickle {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  padding: 3rem 2rem 1rem 2rem;
  text-align: center;
  border-radius: 10px;
}
.contact-details .module-fickle .fickle-additional-html-code {
  display: flex;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: var(--light-gray);
  border-radius: 100%;
  padding: 10px;
  border: 3px solid #fff;
}


.products-grid-section .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}



  /* Footer */
  .grid_footer {
    display: grid;
    grid-template-columns: minmax(20rem, 30%) auto auto auto;
    gap: var(--col-gap);
  }
  .logo-footer {
    display: grid;
    align-self: flex-start;
    row-gap: 1.2rem;
  }
  .menu-footer ul {
    flex-direction: column;
    justify-content: flex-end;
  }
  .menu-footer ul .nav-link {
    font-weight: 500;
  }
  .title_menu_footer > * {
    text-transform: uppercase;
    margin-bottom: 1rem !important;
    font-size: 1rem;
  }
  footer .nav-link {
    color: #000;
  }
  .footer-policies {
    background-color: var(--light-gray);
    font-size: 0.875rem;
  }
  .footer-policies .col-lg-12 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .footer-policies ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
  }
  .footer-policies .copyright {
    color: var(--gray);
    text-align: center;
  }

  footer .span_contact,
  .contact_page  .span_contact,
  .col-fickle-benefits .span_contact {
    display: block !important;
  }

  footer .nav-link {
    display: block;
    padding: 5px 0;
  }
  footer .nav-item {
    display: block;
    width: fit-content;
  }
  footer p {
    margin-bottom: 0;
  }



  .logo-footer .module-widget {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .footer-intro {
    grid-column: 1/3;
    font-size: var(--fs-xs);
    color: var(--gray);
  }



  .logo-footer .module-image {
    max-width: 130px;
  }

  .logo-footer ul {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }

  .footer-legal-col {
    display: grid;
    grid-template-columns: 8rem 8rem;
    column-gap: 1rem;
  }
  .footer-legal-col .stripe {
    grid-column: 1/3;
  }
  .footer-legal-col .stripe img {
    transform: scale(1.05);
  }
  .footer-legal-col .sol {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .footer-legal-col .sal {
    grid-column: 2/3;
    grid-row: 3/4;
  }


  /* .footer-payments {
    background: var(--light-gray);
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
  }
  .footer-payments .col-lg-12 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .footer-payments .module-image {
    display: flex;
    justify-self: center;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
  }
  .footer-payments img {
    max-width: 60px;
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(1);
  } */


  footer .address-before {
    align-items: unset !important;
  }
  footer .address-before:before {
    margin-top: 7px;
  }
  header .mail-before:before {
    margin-top: 3px;
  }
  @media(max-width: 1250px) {
    header .address-before,
    header .mail-before,
    header .tel-before {
      font-size: 14px;
    }
  }
  @media(max-width: 992px) {
    .menu_top_info .mail-before, .menu_top_info .tel-before, .menu_top_info .address-before {
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 0;
      padding: 0;
      background: #00000050;
      border-radius: 5px;
      height: 30px;
      width: 30px;
      justify-content: center;
      align-items: center;
  }
  .info_left {
    gap: 10px;
  }

}

  .contact-footer a {
    padding: 5px 0;
  }

  .sal-img,
  .sol-img {
    max-width: 70%;
    margin-top: 10px;
  }


  .categ-section-title {
    display: grid;
  }
  .categ-section-title .module-button {
    grid-column: 2/3;
    grid-row: 1/3;
    justify-self: flex-end;
  }


  /* View A Product loop */
  .categories-item-wrapper {
    position: relative;
    padding: 0.5rem;
  }
  .categories-item-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    opacity: 0;
    z-index: 99;
    transition: var(--transition);
  }
  .categories-item-wrapper:hover:before {
    opacity: 1;
  }
  .category-item {
    background-color: #fff;
    height: 100%;
    border-radius: 5px;
    max-width: 450px;
  }
  .categ-image-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }

  .categ-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition);
    opacity: 0;
  }
  .categ-video-wrapper .product-video {
    height: 100%;
  }
  .categ-video-wrapper .product-video video {
    object-fit: cover;
  }
  .categ-image-wrapper:hover .categ-video-wrapper {
    opacity: 1;
  }

  .add-to-cart > .btn {
    width: 100%;
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    text-transform: inherit;
  }
  .add-to-cart > .btn:focus,
  .add-to-cart > .btn:active {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #000 !important;
  }
  .categ-title {
    padding: 1rem;
  }
  .categ-title a {
    font-size: 1.075rem;
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-items: center;
    min-height: 42px;
  }

  .products-grid {
    width: 100%;
    flex-grow: 1;
    margin: 0;
  }
  .categ-image-wrapper figure {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
    margin-bottom: 0;
    background: var(--light-gray);
  }
  .has-bg .categ-image-wrapper figure {
    background: transparent;
    border-bottom: 1px solid var(--light-gray);
  }

  .categ-image-wrapper figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    object-fit: contain;
    object-position: center;
    transition: all .2s linear;
  }
  .categ-image-wrapper figure img:hover {
    transform: scale(1.03);
  }

  /* Reducere */

  .reducere {
    position: absolute;
    background-color: var(--orange);
    top: 15px;
    left: 15px;
    z-index: 2;
    color: #fff;
    padding: 0 10px;
    border-radius: 3px;
    pointer-events: none;
  }

  .price_container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .5rem;
  }
  .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.875rem;
  }

  .sale-price {
    color: rgb(231, 45, 52);
  }
  .sale-price.black {
    color: #000;
  }
  .price,
  .old_price,
  .sale-price {
    white-space: nowrap;
  }
  .price {
    font-size: 1rem;
    color: red;
    color: #000;
    text-decoration: none;
    margin-bottom: .5rem;
  }

  .add-to-cart.disabled:hover,
  .add-to-cart.disabled:focus {
    cursor: not-allowed;
  }
  .add-to-cart.disabled {
    opacity: 0.5;
  }



  /* View B product loop */
  .badge_view_new_prod {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 0;
    padding: 1rem;
    z-index: 2;
    pointer-events: none;
  }

  .compare_fav_div .add-to-fav-btn {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
  }
  .compare_fav_div .icon-add-to-fav {
    max-height: 20px;
  }

  .badge_view_new_prod .add-to-fav-btn {
    padding: 5px !important;
  }
  .badge_view_new_prod .add-to-fav-btn svg {
    width: 20px;
    height: 20px;
  }
  .badge_view_new_prod .badge-container {
    display: flex;
    pointer-events: all;
  }
  .badge-prod {
    color: #fff;
    padding: 2px 10px;
    pointer-events: none;
    font-size: var(--fs-xs);
    font-weight: 600;
    border-radius: 2px;
    pointer-events: none;
  }

  .red_label {
    background-color: var(--orange) !important;
  }
  .green_label {
    background-color: var(--accent-color);
    color: #000;
  }

  .stock_label {
    display: flex;
    align-items: center;
  }
  .stock_label .badge-prod {
    background: var(--light-gray);
  }
  .container_price_add_to_cart {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .container_price_add_to_cart .price_container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.container_price_add_to_cart .price {
  margin-bottom: 0;
  color: #fff;
  color: #008c43 !important;
}
.container_price_add_to_cart .sale-price {
  font-weight: 600;
}
.container_price_add_to_cart .button-wrapper {
  flex-grow: 1;
}


/* mobile version add to cart */
.btn_cart_container_mobile {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--transparent-white);
    border-radius: 5px;
}

  /* View Produse */
  .product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    overflow: hidden;
  }
  .product-gallery .featured-image {
    grid-column: 1/3;
    background: var(--light-gray);
  }
  .product-gallery figure {
    margin-bottom: 0;
  }
  .product-gallery figure img {
    width: 100%;
    object-fit: contain;
  }
  .product-logo {
    display: flex;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    max-width: 40px;
    overflow: hidden;
    pointer-events: none;
  }
  .product-logo svg {
    width: 100%;
    height: auto;
  }
  .product-video {
    position: relative;
    grid-column: 1/3;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
  }
  .product-video .play-video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    pointer-events: none;
    transition: var(--transition);
    /* display: none; */
  }
  .product-video .play-video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: var(--transition);
  }



/* breadcrumbs */
.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 5px 0;
  column-gap: 5px;
}
.breadcrumb li a {
  text-decoration: none;
  color: var(--gray);
}
.breadcrumb li a:hover {
  text-decoration: none;
}
.breadcrumb li {
  font-size: var(--fs-xs);
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.breadcrumb i {
  color: var(--transparent-white);
  border: solid #b0b0b0;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.breadcrumb-item a {
  text-transform: capitalize;
}
.breadcrumb-item.active {
  color: #000;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

/* disponibilitate */
.label_details {
  margin: 0;
}
.produs_disponibilitate {
  color: #fff;
  gap: 10px;
  display: flex;
  margin: 0;
}
.produs_disponibilitate span {
  display: flex;
  align-items: center;
}


.stoc_epuizat svg {
  background-color: var(--red);
  fill: #fff;
  border-radius: 50%;
  padding: 1px;
}


.product-info-inner {
  position: sticky;
  top: calc(2 * var(--col-gap));
  display: flex;
  flex-direction: column;
  gap: calc(0.5 * var(--col-gap));
  padding: 0 var(--col-gap);
}


.price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.prod_price_container {
  display: flex;
  flex-direction: column;
}
.prod_price_container .sale-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prod_price_container .sale-price {
  font-size: 1.475rem;
  font-weight: 600;
}
.price_prod {
  font-size: 1.475rem;
  font-weight: 600;
}

.button_wrapper_container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.button_wrapper_container .delivery-stock {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.button_wrapper_container .stock-message {
  font-size: 0.875rem;
}


.product-variations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-variations .title {
  font-weight: 600;
}
.product-variations ul {
  display: flex;
  gap: 0.5rem;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.product-variations ul li {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 5px;
}
.product-variations ul li * {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-variations ul li.active {
  box-shadow: 0 0 0 1px #000;
}

.product-sale-arguments {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid #e3dede;
  border-radius: 5px;
}
.product-sale-arguments li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.675rem;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #e3dede;
  padding: 0.5rem;
}
.product-sale-arguments li:last-child {
  border-bottom: 0;
}
.product-sale-arguments img {
  height: 30px;
  width: auto;
}


.qty_basket_fav_container {
  gap: 1rem;
}

.add-to-favorites {
  background: var(--light-gray);
  border-radius: 3px;
}
.add-to-fav-btn svg {
  max-width: 23px;
  height: auto;
}


/* quantity btn */
.input-qty {
  margin-top: 15px;
  margin-bottom: 15px;
}
.input-qty button {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #000;
}
.btn-quantity-change svg {
  width: 70%;
}
.input-qty input {
  max-width: 40px;
  background: transparent;
  border: unset;
  display: flex;
}

.add-to-cart {
  width: 100%;
}

.add-to-fav-btn {
  padding: 0 15px;
  border: none;
  height: 100%;
}


/* Product Details */
div#dropdown-parent {
  max-width: 100%;
  min-width: 100%;
}
.card.card-body {
  background: transparent;
  border: none;
  padding: 0;
}
.descriere_produs_container table > * {
  border: 1px solid #ffffff30;
}
.descriere_produs_container table td {
  border-bottom: 1px solid #ffffff30;
}
.descriere_produs_container table td {
  padding: 10px 5px;
  border-right: 1px solid #ffffff30;
}

.descriere_produs_container > * {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  font-size: 16px !important;
}
.descriere_produs_container h3 {
  color: white !important;
  font-family: var(--font-bold) !important;
  text-transform: uppercase;
  font-size: 16px !important;
}
.descriere_produs_container h4 {
  font-family: var(--font-bold) !important;
  font-size: 18px !important;
  margin-top: 7.5px;
}
.descriere_produs_container img,
.descriere_produs_container table {
  margin-top: 15px;
  margin-bottom: 15px;
}


.nav_dropdown {
  display: flex;
  gap: 2rem;
  box-shadow: inset 0 -1px 0 #e3dede;
  padding-left: 0;
  margin-bottom: 0;
}
.btn_collapse {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  outline: none;
  box-shadow: none;
  color: var(--gray);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.btn_collapse:focus {
  outline: none !important;
}
.btn_collapse.active {
  color: #000;
  border-color: #000;
}

.dropdown_modals .card-body {
  padding-top: calc(0.5 * var(--col-gap));
}






/* My Account */
/* login page */

.image_container {
  height: 100%;
  width: 100%;
}
.image_container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: right;
}
.login_page .btn-primary {
  background-color: white;
  color: black;
  border: unset;
}
.login_page .btn-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: unset;
}
.login_page input {
  border-radius: 0;
  overflow: hidden;
  border: unset;
}
.login_page p {
  color: var(--transparent-white);
}
.login_page a {
  color: #ffffff;
}

/* Login nav menu */
.list-group-item {
  background-color: #00000010;
  border: 1px solid rgba(0, 0, 0, 0.125);
  height: 50px;
  padding: 0;
  transition: all .2s linear;
}
.list-group-item:hover {
  background: radial-gradient(var(--primary-color), transparent);
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: var(--primary-color);
  border: var(--primary-color-50);
}
.list-group-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  transition: all .2s linear;
  text-decoration: none;
  text-transform: none;
}
.link-logout {
  background: #00000099;
  height: 50px;
}
.logout-anchor {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: none;
}
.logout-anchor:hover {
  text-decoration: none;
  background-color: #000;
}

/* Control Panel my account*/
.cpanel_acc {
  gap: 15px;
  padding: 0 15px;
}
.cpanel_cart_item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  max-width: calc(50% - 7.5px);
  background: #00000099;
  transition: all .2s linear;
  padding: 0;
}
.cpanel_cart_item:hover {
  background: #000000;
}
.cpanel_cart_item a {
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  font-family: var(--font-light);
  color: var(--transparent-white);
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: all .2s linear;
}
.cpanel_cart_item a:hover {
  cursor: pointer;
}

.order_table_my_account th,
.order_table_my_account td {
  color: var(--transparent-white);
  text-align: center;
}
.order_table_my_account {
  min-width: 800px;
}

.see_details_products {
  background-color: #00000050;
  height: 40px;
  display: flex;
  width: fit-content;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
  font-family: var(--font-light);
  border-radius: 5px;
  margin: auto;
  transition: all .2s linear;
}
.see_details_products:hover {
  text-decoration: none;
  background-color: #000;
}

.new-order-cancellation {
  background: unset;
  border: 1px solid var(--transparent-white);
  color: var(--transparent-white);
  border-radius: 5px;
}

.order_detail_list li span {
  margin-right: 10px;
  color: var(--transparent-white);
}

.order_items {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #00000030;
}
.order_items figure {
  max-width: 100px;
  max-height: 100px;
  min-width: 100px;
  min-height: 100px;
  margin: 0;
}
@media(max-width: 450px) {
  .order_items figure {
    max-width: 70px;
    max-height: 70px;
    min-width: 70px;
    min-height: 70px;
    margin: 0;
}
.order_items {
  gap: 5px;
}
}
.order_items figure img{
  width: 100%;
  height: 100%;
}

.products_ordered_container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.informatii-personale .form-control,
.security_info .form-control {
  color: white;
  background: #00000050;
  border: 1px solid var(--primary-color);
  max-width: 500px;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  opacity: 1 !important;
  font-family: var(--font-regular);
}

/* favorites */
.myacc_fav_prod_container {
  display: grid;
  grid-template: auto / repeat(3, 1fr);
  gap: 7.5px;
}
@media (max-width: 700px) {
  .myacc_fav_prod_container {
    display: grid;
    grid-template: auto / repeat(2, 1fr);
    gap: 7.5px;
}
}
.fav_img_container {
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
.fav_img_container img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.fav_prod_item {
  padding: 7.5px;
  background-color: #00000099;
  border-radius: 5px;
}
.fav-prod-buttons {
  position: absolute;
  display: flex;
  width: fit-content;
  justify-content: space-between;
  right: 10px;
  gap: 10px;
  bottom: 10px;
}
.fav-prod-buttons .icon-add-to-fav,
.view_remove_fav_container {
  background: #e9ecef;
  padding: 5px;
  border-radius: 5px;
}

.fav-prod-buttons .add-to-fav-btn {
  padding: 0 !important;
}


.surface-type-cards .module-fickle {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}

.surface-type-cards .fickle-image {
  position: relative;
  padding-top: 75%;
  margin-bottom: 0.5rem;
}
.surface-type-cards .fickle-image:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1/1;
  background: var(--light-gray);
  border-radius: 100%;
  transform: translate(-50%, -45%);
  transition: var(--transition);
}
.surface-type-cards .module-fickle:hover .fickle-image:before {
  background: rgb(99 232 164 / 26%);
}
.surface-type-cards .fickle-image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.surface-type-cards .fickle-image a img {
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.surface-type-cards .module-fickle:hover img {
  transform: scale(1.05);
}
.surface-type-cards .fickle-title {
  margin-bottom: 0;
}
.surface-type-cards .fickle-title a {
  font-size: 1rem;
  font-weight: 600;
}




/* VIEW CATEGORY HOMEPAGE */
.title_viewcategories {
  color: #000;
  font-size: 24px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin: 0;
}

.category_image_container {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
.category_image_container:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1/1;
  background: rgb(99 232 164 / 26%);
  border-radius: 100%;
  transform: translate(-50%, -45%);
}
.category_image_container img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all .2s linear;
}

.view_category_homepage .categ-title {
  padding: 0;
  margin-bottom: 0;
}
.view_category_homepage .categ-title a {
  justify-content: center !important;
}
.category_image_container img:hover {
  transform: scale(1.03);
}

/* Blog */
.categories-grid.blog-categ {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: calc(0.5 * var(--col-gap));
}
.categories-grid.blog-categ .category-item-inner {
  background: var(--light-gray);
  border-radius: 5px;
  border: 1px solid var(--light-gray);
}
.categories-grid.blog-categ img {
  padding: 0;
  object-fit: cover;
}
.categories-grid.blog-categ .categ-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.categories-grid.blog-categ .categ-title > * {
  margin-bottom: 0;
}
.categories-grid.blog-categ .categ-title a {
  -webkit-line-clamp: 3;
  min-height: 62px;
}
.blog-date {
  font-size: 0.875rem;
}

/* Single Post Page */
.blog-header-inner {
  display: flex;
  flex-direction: column;
  gap: calc(0.5 * var(--col-gap));
}
.blog-header-inner .data {
  display: flex;
  align-items: center;
  gap: calc(0.5 * var(--col-gap));
}
.blog-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 100%;
  z-index: 9;
}
.blog-back svg {
  transition: var(--transition);
}
.blog-back:hover svg {
  transform: translateX(-5px);
}
.blog-header-inner .blog-date {
  color: #fff;
  font-weight: 600;
}
.blog-content a {
  text-decoration: underline !important;
}



/* DESPRE NOI */
.about-us-intro,
#page-header {
  height: 70vh;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-us-intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  z-index: -1;
}
.about-us-intro-video .module-video,
.about-us-intro-video .module-video > * {
  width: 100%;
  height: 100%;
}
.about-us-intro-video .module-video video {
  object-fit: cover;
}
.reference-slider {
  padding: 2rem 0;
}
.reference-slider ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.reference-slider ul li {
  font-size: 0.875rem;
}
.module_code_map {
  width: 100%;
  height: 400px;
}

.module.module-fickle.module-fickle-basic.fickle-benefits.fickle-has-text-content.fickle-has-icon {
  min-height: 200px;
  background-color: #00000050;
  border: 5px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fickle-item.fickle-text-content {
  text-align: center;
}
.view_categ_about_us {
  padding: 0 7.5px;
}


/* GDPR Pages */
.module_code_form_container {
  background-color: #00000050;
  max-width: 1200px;
  margin: auto;
}

.c-form-success {
  color: var(--accent-color);
  font-size: 1rem;
}
.c-form-error {
  color: var(--red);
  font-size: 1rem;
}

#cart-message-box,
#fav-message-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  bottom: 20px;
  right: var(--col-gap);
  color: #000;
  box-shadow: 0 0 10px -7px #000;
  border-radius: 5px;
  transition: all .3s cubic-bezier(.19,1,.22,1);
}
#cart-message-box .content-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.message-box-item-image {
  width: 60px;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--light-gray);
}
.message-box-item-image_inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.message-box-item-image_inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.close-cart-message-box,
.close-fav-message-box,
.close-newsletter-message-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 5px;
    /* transform: translate(50%, -50%); */
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px; */
    z-index: 999;
    border-radius: 100%;
    width: 25px;
    min-width: 25px;
    height: 25px;
    padding: 5px;
    background: #fff;
    cursor: pointer;
    border: unset;
}

.cart-message-box-buttons {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: center;
  gap: 0.5rem;
}
.cart-message-box-buttons .btn {
  padding: 6px 20px;
  font-size: 12px;
  text-transform: none;
}
.cart-message-box-buttons .btn-primary {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn-cart-box-secondary {
  text-transform: uppercase;
  background-color: transparent;
}

#fav-message-box.slide-out,
#cart-message-box.slide-out {
  transform: translateX(calc(100% + var(--col-gap)));
}


.imagine_produs_vazut_recent {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.imagine_produs_vazut_recent img {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slick-track {
  margin: 0;
}

/* Cart modal */
.cart-slide {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 460px;
  z-index: 999999;
}
.cart-slide-opened .cart-slide {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
}
.cart-slide-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cart-slide-header {
  padding: 0 20px;
}
.cart-slide-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--light-gray);
  padding: 15px 0;
  font-weight: 600;
}
.cart-close {
  background: transparent;
  padding: 5px;
  margin: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.cart-close svg {
  max-width: 15px;
  max-height: 15px;
  opacity: 0.5;
  transition: var(--transition);
}
.cart-slide-ajax-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.empty-cart-message {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.empty-cart-message h5 {
  font-weight: 600;
}
.empty-cart-message p {
  font-size: 1rem;
  color: var(--gray);
}
.cart-slide-product-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  flex-grow: 1;
  padding-right: 5px;
}
.cart-slide-product-inner {
  padding: 20px 10px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: auto;
}
.cart-slide-product-inner::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
}
.cart-slide-product-inner::-webkit-scrollbar-button:increment,
.cart-slide-product-inner::-webkit-scrollbar-button {
    display: none;
}
.cart-slide-product-inner::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 20px;
    border: 2px solid #fff;
}
.cart-slide-product-inner::-webkit-scrollbar-track {
    border-radius: 10px;
}
.cart-slide-item,
.sumary-item {
  display: flex;
  gap: 1rem;
}
.sumary-item-image-wrapper {
  position: relative;
  display: flex;
}
.sumary-item-image-wrapper .item-qty {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  border: 2px solid var(--light-gray);
  pointer-events: none;
}
.cart-item-image,
.sumary-item-image {
  position: relative;
  width: 100px;
  flex-shrink: 0;
  background: var(--light-gray);
  border-radius: 5px;
  overflow: hidden;
}
.cart-item-image picture,
.sumary-item-image picture {
  display: flex;
  position: relative;
  padding-top: 130%;
}
.cart-item-image img,
.sumary-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item-image .badge-prod {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.675rem;
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.cart-item-info .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.cart-item-info .item-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-item-info .item-title > * {
  font-size: 0.875rem;
  font-weight: 600;
}
.cart-item-info .item-title a {
  line-height: 1.2em;
}
.btn-cart-slide-item-remove {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
}
.btn-cart-slide-item-remove svg {
  opacity: 0.5;
  transition: var(--transition);
}
.btn-cart-slide-item-remove:hover svg {
  opacity: 1;
}

.cart-item-info .bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cart-slide-item-qty-buttons {
  border: 1px solid rgb(229, 229, 229);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 3px;
}
.cart-slide-item-qty-buttons .btn-cart-slide-item {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 8px;
}
.cart-slide-item-qty-buttons .btn-cart-slide-item svg {
  max-width: 15px;
  height: auto;
}
.cart-slide-item-qty-buttons .btn-cart-slide-item-qty-disabled {
  cursor: not-allowed;
}
.cart-slide-item-qty-buttons .btn-cart-slide-item-qty-disabled svg path {
  stroke: rgb(229, 229, 229);
}

.cart-slide-item-qty-info {
  font-size: 0.875rem;
}
.cart-slide-item-price-total {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  font-size: 1rem;
  font-weight: 600;
}
.single-item-price {
  color: var(--gray);
  font-size: 0.775rem;
  font-weight: 500;
}

.cart-slide-item-price-total .sale-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cart-slide-item-price-total .sale-price .old-price {
  line-height: 100%;
  font-weight: 500;
  font-size: 0.775rem;
}


.cart-slide-footer {
  padding: 0 20px;
}
.cart-slide-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--light-gray);
}
.cart-savings {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgb(231, 45, 52, 0.1);
  padding: 5px 0;
  border-radius: 3px;
  color: rgb(231, 45, 52);
}
.cart-slide-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.375rem;
}
.tva-message {
  color: var(--gray);
  font-size: 0.675rem;
}
.cart-slide-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-slide-buttons .btn-primary,
.cart-slide-buttons .btn-primary:focus,
.cart-slide-buttons .btn-primary:active {
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #000 !important;
  padding: 15px;
}
.cart-slide-buttons > {
  width: 100%;
}


.cart-overlay {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: var(--transition);
}
body.cart-slide-opened {
  overflow: hidden;
}
.cart-slide-opened .cart-overlay {
  opacity: 0.5;
  pointer-events: all;
  visibility: visible;
}



/* Checkout */
.checkout-form-col-inner {
  position: sticky;
  top: 100px;
  padding-right: calc(var(--col-gap) - 30px);
}
.help-block {
  font-size: 0.675rem;
  color: rgb(231, 45, 52);
}
.sumary-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sumary-content hr {
  border-color: var(--light-gray);
  margin: 0;
}
.sumary-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--light-gray);
  border-radius: 5px;
  padding: 20px;
}
.sumary-item {
  gap: 2rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.sumary-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.sumary-item-image {
  background: #fff;
}
.sumary-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sumary-item .item-title {
  font-size: 1rem;
  font-weight: 600;
}
.sumary-item-price-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 600;
}
.sumary-item-price-wrapper del {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.sumary-total {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.delivery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1rem;
}
.delivery-inner {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
}
.delivery-fee-message {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(231, 45, 52);
  background: rgb(231, 45, 52, 0.1);
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}
.sumary-total-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}


.sumary-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.voucher-add-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.voucher-add-inner {
  display: flex;
  gap: 1rem;
}
.voucher-message {
  color: #000;
  font-size: 0.875rem;
}
.loader-action {
  display: flex;
  align-items: center;
}
.loader-action .loader {
  width: 20px;
  height: 20px;
  margin: 0;
  border-left-color: #000;
}
#btn-voucher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 5px;
}
.field-checkoutform-voucher {
  flex-grow: 1;
}
.voucher-form {
  padding: 5px 20px;
  background: #fff;
  height: 100%;
  border-color: var(--gray) !important;
}
.sumary-options .sumary-group {
  position: relative;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 5px;
  overflow: hidden;
}
.sumary-content .form-group {
  margin-bottom: 0;
}
.sumary-group.voucher img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  opacity: 0.1;
  transform: translate(50%, -50%) rotate(90deg);
}

.checkout-voucher-success .voucher-message {
  margin-top: 0.5rem;
}
.checkout-voucher-success-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
}
.checkout-voucher-success-inner .coupon-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-voucher-success-inner .discount-label {
  font-size: 0.875rem;
  font-weight: 600;
  background: rgb(218 249 232);
  padding: 7px 15px;
  border-radius: 3px;
}
#voucher-remove {
  padding: 10px;
  background: var(--light-gray);
  border-color: var(--light-gray);
}


.sumary-content .form-group label:not(.control-label) {
  display: grid;
  grid-template-columns: 1em auto;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0;
  font-size: 1rem;
}
.sumary-content .form-group label.control-label {
  font-size: clamp(1.075rem, calc(var(--title-size) * 0.418), 1.075rem);
  font-weight: 600;
}
.sumary-content .form-group [role="radiogroup"] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sumary-content .form-group label input {
  margin-top: 4px;
}
.sumary-content .btn[type="submit"] {
  background: var(--accent-color);
  width: 100%;
}
.e-checkbox label {
  display: grid;
  grid-template-columns: 1em auto;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}
.e-checkbox label span {
  font-size: 0.875rem !important;
}
.e-checkbox label input {
  margin-top: 4px;
}


/* pagina cos */
.grid-item {
  align-self: center;
}

.product-thumbnail {
  max-width: 150px;
  max-height: 150px;
}
.product-thumbnail img {
  width: 100%;
  height: 100%;
}


/* quantity change */
.input-product-quantity {
  max-width: 35px;
  min-height: 35px;
  background: transparent;
  border: unset;
  text-align: center;
}
button.btn-qantity-change {
  min-height: 35px;
  min-width: 35px;
  border: 1px solid;
  background: transparent;
}
.cart-table {
  border-bottom: 2px solid #ffffff30;
}

/* rmv btn */
.remove-btn {
  border: unset;
  background-color: #FFA50040;
  width: fit-content;
  font-size: 14px;
}
.product-remove:hover {
  cursor: pointer;
}

/* Summary cart */
.summar_title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.cart-backToShop-btn {
  max-width: fit-content;
  margin: auto;
}

/* Checkout */
.checkout-form-col .row {
  padding: 0;
  margin-left: -7px;
  margin-right: -7px;
}
.checkout-form-col .row  > * {
  padding: 7px;
}

.container_change_form {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.container_change_form_inner {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
.btn_change_form {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-gray);
  color: var(--gray);
  padding: 8px 20px;
  font-size: 1rem;
  margin-bottom: 0;
  transition: all .2s linear;
}
.btn_change_form.active {
  background-color: var(--accent-color);
  color: #000;
}
.btn_change_form:hover {
  opacity: 0.8;
  cursor: pointer;
}
label.btn_change_form::before {
  display: none !important;
}




.close-suggestions i {
  position: relative;
}
.close-suggestions i:before,
.close-suggestions i:after {
  display: block;
  content: '';
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
  transform-origin: center;
  left: -5px;
  top: 16px;
}
.close-suggestions i:before {
  transform: rotate(45deg);
}
.close-suggestions i:after {
  transform: rotate(-45deg);
}

/* radio btn */
/* input[type="radio"] {
  display: none;
} */

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    min-width: 18px;
    width: 18px;
    height: 18px;
    border: 1px solid #000;
    border-radius: 0;
    display: grid;
    place-content: center;
}
input[type="checkbox"]::before,
input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #000;
    background-color: CanvasText;
}
input[type="checkbox"]:checked::before, input[type="radio"]:checked::before {
    transform: scale(1);
}

input[type="radio"] + label {
  cursor: pointer;
}

.form-check {
  padding-left: 0;
}
.form-check label {
  display: grid;
  grid-template-columns: 1em auto;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
}
.form-check label input {
  margin-top: 4px;
}

[role="radiogroup"] {
  display: flex;
  gap: calc(0.5 * var(--col-gap));
}



input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

input[type="radio"]:checked + label:before {
  background-color: #000;
}

.main-nav-item {
  position: relative;
}
.main-nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main-nav-item:hover .nav-link {
  color: #000;
}
.main-nav-item .nav-link svg path {
  transition: var(--transition);
}
.main-nav-item:hover .nav-link svg path {
  fill: #000;
}

/* Thank you page */
.thank_you_page {
  height: 10;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cat-products-list {
  display: flex;
  flex-direction: column;
  gap: calc(0.5 * var(--col-gap));
}
.cat-products-list .products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.cat-products-list .categories-item-wrapper {
  max-width: 100%;
  padding: 0;
}







/* Style Filter Sidebar */
.filters-inner {
  display: flex;
  flex-direction: column;
  gap: calc(0.5 * var(--col-gap));
  padding-right: calc(var(--col-gap) - 15px);
}
.filter_sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--light-gray);
  padding: 1rem;
  border-radius: 5px;
}
.btn-sidebar-subcat-toggle {
  border: 0;
  outline: 0 !important;
  background: 0;
  color: #fff;
}
.container_toggle_section_filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.toggle_section_filter,
.toggle_section_filter span {
  display: flex;
  align-items: center;
}
.toggle_section_filter .minus_svg {

}
.filter_section_title {
  font-size: 1rem;
  font-weight: 600;
}

span.toggle_section_filter:hover {
  cursor: pointer;
}
/* Price filter */
.price_input_filter {
  width: 100%;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: black;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
}
.price_filter_btn {
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 0.5em calc(1 * var(--col-gap));
  margin-top: 1rem;
  width: 100%;
  transition: all .1s linear
}
.price_filter_btn:hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.ui-slider-horizontal .ui-slider-handle {
  background: #000;
  top: -6px;
}
.ui-widget-header {
  background: var(--light-gray) !important;
}


.btn-sidebar-subcat-toggle {
  display: inline-block;
}
.price-range-input input {
  border-color: var(--gray) !important;
  color: var(--gray) !important;
}
.price-range-input-moneda,
.price-range-input input:focus {
  color: var(--gray) !important;
}


.cat-categories-list ul,
.suprafete_list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.suprafete_list {
  gap: 0.5rem;
}

.cat-categories-list ul li {
  position: relative;
  font-size: 0.875rem;
}

.list_category_filter {
  display: inline-block;
  /* color: var(--gray); */
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
}
.list_category_filter:hover {
  text-decoration: none;
}


.trigger_suprafata_filter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  /* color: var(--gray); */
  border-radius: 5px;
  font-weight: 600;
}
.trigger_suprafata_filter svg {
  max-width: 9px;
  height: auto;
  display: none;
}
.tbf-selected {
  color: #000;
  font-weight: 600;
  background: rgb(99 232 164 / 26%);
}
.tbf-selected svg {
  display: inline-flex;
  vertical-align: inherit;
  margin-right: 0.5rem;
}
.tbf-selected:after {
  content: '';
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--accent-color);
}


/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: calc(0.5 * var(--col-gap)) 0 0 0;
}
.pagination .first.disabled,
.pagination .prev.disabled,
.pagination .next.disabled,
.pagination .last.disabled,
.pagination a {
  background-color: var(--light-gray);
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  transition: var(--transition);
  text-decoration: none;
}

.pagination a.prev,
.pagination a.next {
  color: #000;
}

.pagination li.active a {
  background-color: #000;
  color: #fff;
}

.pagination a:hover {
  background-color: #000;
  color: #fff;
}

.login-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  border-radius: 5px;
}
.login-inner .form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login-inner .btn[type="submit"] {
  width: 100%;
}


/* Floating button */
.floatingButtonWrap {
  display: block;
  position: fixed;
  bottom: 45px;
  left: 45px;
  z-index: 90;
  opacity: 0;
  transition: var(--transition);
}
.floatingButtonInner {
  position: relative;
}
.floatingButton {
  width: 70px;
  height: 70px;
  color: #fff;
  line-height: 10px;
  border-radius: 50% 50%;
  opacity: 1;
  transition: all 0.4s;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
}
.floatingButton:hover {
  text-decoration: none;
}
.floatingButton.open .need_help {
  display: none;
}
.floatingButton.open .close_floating {
  display: block;
}
.floatingButton.open .close_floating svg {
  width: 25px;
  height: auto;
}
.floatingButton .close_floating {
  display: none;
}
span.need_help {
  font-size: 0.775rem;
  font-weight: 600;
  text-align: center;
  color: #000;
  padding: 0 5px;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
  opacity: 1;
  color: #fff;
}


.floatingMenu {
  position: absolute;
  bottom: 70px;
  margin: 0;
  display: none;
  padding: 0.5rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
  list-style-type: none;
}

.floatingMenu li {
  width: 100%;
  padding: 0.5rem;
  transition: all .1s linear;
  border-radius: 5px;
  margin: 0;
}
.floatingMenu li:hover {
  background: var(--light-gray);
}

.floatingMenu li a,
.contact_us_floating_container {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.floatingMenu li span {
  color: #000;
  white-space: nowrap;
  font-size: 1rem;
}

.contact_form_floating {
  background: #fff;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
}
.contact_form_floating .col-lg-12 {
  padding: 0;
}
.contact_form_floating label {
  font-size: 0.875rem !important;
}
.contact_form_floating input[type="text"] {
  padding: 10px;
  font-size: 0.875rem;
}
.contact_form_floating .btn[type="submit"] {
  width: 100%;
}

.contact-form .container {
  padding: 0;
}
.contact-form .container .row {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0;
}
.contact-form .btn-section {
  padding: 0;
}
.item-acceptance {
  margin-top: 1rem !important;
}
.contact-form .btn-section .col-12 {
  padding: 0;
}
.contact-form .btn[type="submit"] {
  border-color: #000;
}
.map-info > * {
  height: 100%;
}

.floatingMenu li a:hover {
  text-decoration: none;
}

.floatingButtonInner {
  min-width: 350px;
}
.floating_svg {
  width: 40px;
  min-width: 40px;
  height: 40px;
}

p.description_message_help {
  font-size: var(--fs-xs);
}
.message_help {
  display: flex;
  flex-direction: column;
  align-items: start;
}

a.floatingButton::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  background: green;
  top: 10px;
  right: 0px;
  border-radius: 50%;
}


@media(max-width: 450px) {
  .floatingButtonWrap {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    border-radius: 5px;
}
.floatingButtonInner {
  min-width: 100% !important;
  width: 100%;
}
.floatingMenu {
  position: absolute;
  bottom: 40px;
  left: 15px;
  right: 15px;
  max-height: 65vh;
  overflow: auto;
}

}


/* 404 page */

/* Variation product */
.variation_selector {
  background: black;
  border-radius: 0;
  color: #fff;
  height: 60px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.variation_selector option {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.variation_selector option:hover {
  background-color: var(--primary-color) !important;
}
.variation_selector:hover,
.variation_selector option:hover {
  cursor: pointer;
}
.custom-select:focus {
  border-color: #fff;
  outline: 0;
  box-shadow: unset;
}
@media(max-width: 350px) {
  .info_left {
    display: grid !important;
    grid-template: auto / repeat(3, 1fr);
    background: #00000050;
    padding: 5px;
    border-radius: 8px;
  }
}

/* Newsletter */
.newsletter_box {
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 99;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
  background: var(--accent-color);
  gap: 1rem;
  transition: all .1s linear;
  padding: 1rem;
  right: var(--col-gap);
}
.newsletter_box:hover {
  cursor: pointer;
  text-decoration: none;
}

.newsletter_box .floating_svg {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
  border-radius: 100%;
}

.newsletter_content_box_message {
  display: flex;
  flex-direction: column;
}
.newsletter_box .title {
  font-size: 1rem;
  line-height: 100%;
}
.newsletter_box .description {
  font-size: var(--fs-xs);
}

.close_box_newsletter {
  position: absolute;
  right: 10px;
  top: 5px;
}
.close_box_newsletter button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: transparent;
  border-radius: 100%;
  padding: 0;
  height: 25px;
  width: 25px;
}



/* Newsletter Page */
.newsletter_hero_section {
  background: #00000099;
  border-radius: 5px;
  padding: 15px;
  border: 5px solid var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: all .2s linear;
}



.floatingButton {
  left: var(--col-gap);
  bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
}
.newsletter_box {
  bottom: 20px;
}


#notification {
  position: absolute;
  background: #00000099;
  z-index: 999999;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 5px;
}
.has-header-fixed #notification {
  position: fixed !important;
}


.status-error {
  background: var(--red);
}
.status-success {
  background: var(--green);
}
.status-remove {
  background: var(--orange);
}

.close-notification {
  background: #00000099;
  border: unset;
  border-radius: 5px;
  font-size: 1rem;
}

.shop-header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-header-title h1 {
  font-size: calc(var(--title-size) * 0.5);
}

/* Css sortare produse */
.sort_products {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sort_products span {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.sort_products select {
  background: var(--light-gray);
  border: none;
  border-radius: 3px;
  font-size: 0.875rem;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.c-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.3s;
  display: inline-block;
  font-size: 0;
  line-height: 0;
}
.c-icon:before, .c-icon:after {
  content: '';
  position: absolute;
  display: block;
  transition: 0.3s;
}
.c-icon-arrow-down:before,
.c-icon-arrow-down:after {
  background: #fff;
  width: 1px;
  height: 7px;
  top: 6px;
  left: 9px;
  transform-origin: bottom;
}
.c-icon-arrow-down:before {
  transform: rotate(-45deg);
}
.c-icon-arrow-down:after {
  transform: rotate(45deg);
}
.toggled > .btn-sidebar-subcat-toggle .c-icon-arrow-down:before {
  top: 3px;
  transform: rotate(-135deg);
}
.toggled > .btn-sidebar-subcat-toggle .c-icon-arrow-down:after {
  top: 3px;
  transform: rotate(135deg);
}

.active > .list_category_filter {
  color: #000;
  background: rgba(103, 99, 232, 0.26);
  font-weight: 600;
}

.cat-filters-list .filter_product_container {
  padding-left: 15px;
}



/* Categorii menu */
.all_categories_menu {
  background: #fff;
  position: fixed;
  z-index: 99999999;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
  border: 1px solid var(--light-gray);
  padding: calc(0.5 * var(--col-gap)) var(--col-gap);
}


ul.list_categories_menu {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.list_categories_menu li a {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
}

.close-suggestions {
    background: #f0896a;
    border: 0;
    outline: 0;
    box-shadow: none;
    line-height: 1;
    height: 22px;
    width: 22px;
    border-radius: 22px;
    position: absolute;
    right: 5px;
    top: 5px;
    text-align: center;
    padding-left: 5px;
    transition: 0.2s;
}
.close-suggestions:hover {
    background: #dd4b1f;
}
.localities-results-box {
    max-height: 200px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    margin-top: 1rem;
    position: absolute;
    z-index: 5;
    width: 100%;
    overflow-y: auto;
}
.localities-results-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.localities-results-box ul a,
.localities-results-box ul p {
  color: #000;
}

.product-accordion a {
  color: var(--accent-color);
}

.product-accordion .nav-tabs {
    display: none;
    border-bottom: none;
}
.product-accordion .nav-tabs .nav-link {
    padding: 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    outline: none;
    box-shadow: none;
    color: var(--gray);
    border-bottom: 2px solid transparent;
    font-weight: 500;
}
.product-accordion .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: #000;
    color: #000;
    font-weight: 600;
}
.nav-tabs .nav-item {
    margin-bottom: 0;
}
.product-accordion .card-body {
  padding: calc(0.5 * var(--col-gap)) 0 0 0;
}



/* Account Page */
.account-sidebar-inner {
  padding-right: calc(var(--col-gap) - 30px);
}
.account-sidebar ul {
  list-style-type: none;
}

.account-sidebar ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 15px;
  font-size: 1rem;
}
.account-sidebar ul a.active {
  border-radius: 5px;
  background: var(--accent-color);
  font-weight: 600;
}
#account-container .card-body {
  padding: 2rem;
}
#account-container .card-body .row {
  margin-left: -7px;
  margin-right: -7px;
}
#account-container .card-body .row > * {
  padding: 7px;
}
#account-container .card-footer {
  background: transparent;
  padding: 1rem 2rem;
}

.orders-account {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.orders-account .order-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 5px;
}
.orders-account .order-card.card-success {
  background: rgb(99 232 164 / 26%);
}
.orders-account .order-card .order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #00000017;
}
.orders-account .order-card .order-header .title {
  font-weight: 600;
}
.orders-account .order-card .order-header .status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
}
.orders-account .order-card .order-header .status .badge {
  padding: 5px 10px;
}
.orders-account .order-header .left,
.orders-account .order-header .right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.orders-account .order-header .right {
  align-items: flex-end;
}
.orders-account .order-header .order-date {
  font-size: 0.875rem;
  color: var(--gray);
}

.orders-account .order-prod-img {
  position: relative;
  width: 100px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.orders-account .order-prod-img figure {
  width: 100%;
  padding-top: 130%;
  margin-bottom: 0;
}
.orders-account .order-prod-img figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order-prod-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.order-prod-title {
  font-size: 1rem;
  font-weight: 600;
}
.badge-success {
  background: var(--accent-color);
  color: #000;
}
.orders-account .order-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid #00000017;
}

.orders-account .order-footer .btn {
  padding: 0.8em calc(0.5 * var(--col-gap));
}
.single-order.status-col {
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
}
.single-order .status .badge {
  padding: 5px 10px;
}
.single-order.status-col > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.single-order.status-col > div span {
  font-weight: 500;
}
