.catalog-content {
  padding: 30px 0;
}
.catalog-item {
  background-color: #efefef;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.catalog-item .catalog-item-title {
  font-size: 24px;
  line-height: 32px;
  color: #222;
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  .catalog-item .catalog-item-title {
    font-size: 20px;
    line-height: 20px;
  }
}
.catalog-item .catalog-item-body {
  display: flex;
  gap: 30px;
  padding:20px 16px ;
  background-color: #fff;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .catalog-item .catalog-item-body {
    flex-direction: column;
  }
}
.catalog-item .catalog-item-body .item-image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .catalog-item .catalog-item-body .item-image {
    width: 100%;
  }
}
.catalog-item .catalog-item-body .item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-item .button-row {
  display: flex;
  justify-content: flex-end;
}
.catalog-item .button-row button {
  height: 36px;
  padding-left: 40px;
  padding-right: 40px;
  color: #fff;
  background-color: #f03226;
  border-radius: 18px;
  outline: none;
  border: none;
  cursor: pointer;
  min-width: 250px;
}

.catalog-content {
  display: flex;
  gap: 50px;
}
.catalog-content .content {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .catalog-content .content {
    /*flex-direction: column-reverse;*/
    gap: 20px;
  }
}
.catalog-content .content .catalog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 70%;
  @media (max-width: 1024px) {
    max-width: 100%;
  }
}
.catalog-content .content .filter-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;

}
.submit-btn {
  display: flex;
  width: 100%;
  display: none;
  @media (max-width: 1024px) {
    display: block;
  }
  button {
    height: 36px;
    padding-left: 40px;
    padding-right: 40px;
    color: #fff;
    background-color: #f03226;
    border-radius: 18px;
    outline: none;
    border: none;
    cursor: pointer;
    width: 100%;
  }

}
.catalog-content .content .filter-container .filters-checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  @media (max-width: 1024px) {
    display: none;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 10;
  display: none;
  &.open {
    display: block;
  }
}
.catalog-modal {
  max-width: 500px;
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 11;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  display: none;
  @media (max-width: 500px) {
    max-width: 95%;
  }
  &.open {
    display: block;
  }
  .catalog-modal-close {
    display: flex;
    justify-content: flex-end;
    .close-btn {
      cursor: pointer;
    }
  }
  .catalog-title {
    font-size: 24px;
    line-height: 32px;
    color: #222;
    padding-bottom: 22px;
    @media (max-width: 768px) {
      font-size: 18px;
      line-height: 18px;
    }
  }
  .contact-form {
    form  {
      display: flex;
      flex-direction: column;
      gap: 10px;
      p {
        width: 100%;
      }
      input[type='text'], input[type='tel'] {
        border-radius: 22px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        display: flex;
        height: 40px;
        padding: 0 24px;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;
        width: 100%;
        outline: none;
        &::placeholder {
          font-size: 12px;
          color: #434343;
          font-family: "Roboto", sans-serif;
        }
      }
      textarea {
        border-radius: 22px;
        border: 1px solid rgba(0, 0, 0, 0.10);
        display: flex;
        height: 100px;
        padding: 24px;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;
        outline: none;
        resize: none;
        width: 100%;
        &::placeholder {
          font-size: 12px;
          color: #434343;
          font-family: "Roboto", sans-serif;
        }
      }
      input[type='submit'] {
        height: 50px;
        border-radius: 22px;
        padding-left: 40px;
        padding-right: 40px;
        color: #fff;
        background-color: #f03226;
        outline: none;
        border: none;
        cursor: pointer;
        width: 100%;
      }
    }
  }
}

.catalog-custom-checkbox {
  display: flex ;
  align-items: center;
  flex-shrink: 0;
}

.catalog-custom-checkbox .checkbox {
  margin-right: 10px;
  flex-shrink: 0;
}

.catalog-custom-checkbox input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
}

.checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #C6CAE2;
  border-radius: 2px;
  flex-shrink: 0;
}

.catalog-custom-checkbox span {
  color: #1A2A37;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.catalog-custom-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  display: none;
}

.catalog-custom-checkbox input:checked ~ .checkbox .checkmark {
  display: block;
}

.catalog-custom-checkbox input:checked ~ .checkbox {
  background: #f03226;
  border: 1px solid #f03226;
}

.filter-container-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  .mobile-filter-icon {
    display: none;
    @media (max-width: 1024px) {
      display: block;
      cursor: pointer;
    }
  }
  p {
    font-size: 22px;
    line-height: 25px;
    color: #222;
    margin-bottom: 30px;
  }
}

.filter-list-modal {
  height: 100vh;
  display: flex;
  padding: 30px;
  max-width: 650px;
  width: 100%;
  flex-direction: column;
  gap: 26px;
  background: #fff;
  position: fixed;
  transition: right .5s linear, opacity .2s ease;
  top: 0;
  right: -200%;
  z-index: 20 ;
  opacity: 0;
  &.active {
    transition: right .5s linear, opacity .2s ease;
    right: 0;
    opacity: 1;
  }
  .close-row {
    display: flex;
    justify-content: flex-end;
  }
  .mobile-filter-close {
    display: none;
    @media (max-width: 1024px) {
      display: block;
      cursor: pointer;
    }
  }
}
.filter-list-container {
  .filters-checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.pagination {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  button {
    border-radius: 500px;
    background: #f03226;
    color: #fff;
    width: 25px;
    height: 25px;
    outline: none;
    border: none;
    &.active {
      width: 30px;
      height: 30px;
    }
  }
  .pagination-pages {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .pagination-info {
    display: none;
  }
}

.item-options {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  @media (max-width: 768px) {
    align-items: center;
    gap: 30px;
  }
  .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    .price {
      font-size:20px;
      margin-bottom: 10px;
      span {
        /*color: #f03226;*/
        font-weight: bold;
      }
    }
    .leasing-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
      .leasing-options-title {
        font-size:18px;
        font-weight: bold;
      }
      ul {
        li {

          span {
            font-weight: bold;
            color: #f03226;
          }
        }
      }

    }
  }
  .button-row {
    @media (max-width: 768px) {
      width: 100%;
    }

    button {
      width: 100%;
    }
  }

}


.catalog-category-container{
  padding: 50px 0;
  .content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    h1 {
      color: #000;
      font-family: Roboto;
      font-size: 45px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      letter-spacing: 0.9px;
      @media (max-width: 768px) {
        font-size: 28px;
      }
    }
    .catalog-category-list {
      display: flex;
      gap: 50px;
      flex-wrap: wrap;
      @media (max-width: 768px) {
        gap: 20px;
      }
      .catalog-category {
        display: flex;
        width: calc(50% - 25px);
        border-radius: 20px;
        padding: 24px;

        background: #efefef;
        background-position: right 24px bottom 24px;
        background-repeat: no-repeat;
        background-size: auto 180px;
        height: 276px;
        @media (max-width: 768px) {
          width: 100%;
        }
        .category-options {
          display: flex;
          flex-direction: column;
          p{
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            color: #959595;
          }
        }
      }
    }
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  li {
    color: #555555;
    font-size: 16px;
    a {
      color: #000;
      font-weight: 700;
    }
  }
}