#catalogue {
  box-sizing: content-box;
  /* padding: 0 64px; */
  padding   : 0;
  background: #fcfdff;
}

#catalogue .catalogue-container {
  max-width: 1440px;
  margin   : 0 auto;
  padding  : 0 112px;
}

@media (max-width: 1280px) {
  #catalogue .catalogue-container {
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  #catalogue .catalogue-container {
    padding: 0 16px;
  }
}

#catalogue .section-heading {
  margin-bottom: 18px;
}

/* @media (max-width: 1024px) {
  #catalogue .section-heading {
    display: none;
  }
} */
#catalogue .section-heading .section-title {
  font-weight  : 600;
  font-size    : 32px;
  line-height  : 36px;
  color        : #232528;
  margin-bottom: 8px;
  text-align   : center;
  font-family  : "Geologica", serif !important;
}

@media only screen and (max-width:767.98px) {
  #catalogue .section-heading .section-title {
    font-size: 24px;

  }
}

#catalogue .section-subtitle {
  font-weight: 400;
  font-size  : 16px;
  line-height: 17px;
  color      : #354156;
  text-align : center;
}

#catalogue .section-wrapper {
  display        : flex;
  align-items    : flex-end;
  justify-content: space-between;
}

@media screen and (min-width: 1025px) {
  #catalogue .section-wrapper {
    margin-bottom: 20px;
  }
}

#catalogue .section-content-wrapper {
  display        : flex;
  justify-content: space-between;
}

#catalogue .sidebar-cnt {
  width: 222px;
}

@media (max-width: 1024px) {
  #catalogue .sidebar-cnt {
    display: none;
  }
}

#catalogue .sidebar-cnt .title {
  font-weight: 600;
  font-size  : 20px;
  line-height: 24px;
  color      : #354156;
}

#catalogue .main-cnt {
  width: calc(100% - 246px);
}

#catalogue .products-list {
  width        : calc(100% - 246px);
  margin-bottom: 100px;
}

@media (max-width: 1024px) {
  #catalogue .products-list {
    width        : 100%;
    margin-bottom: 60px;
  }
}

#catalogue .products-list .product-cards-wrapper {
  display  : flex;
  flex-wrap: wrap;
  width    : calc(100% + 16px);
  margin   : 0 -8px 48px;
}

@media (max-width: 1024px) {
  #catalogue .products-list .product-cards-wrapper {
    width : calc(100% + 20px);
    margin: 0 -10px 48px;
  }
}

@media (max-width: 767.98px) {
  #catalogue .products-list .product-cards-wrapper {
    margin         : 0 0 24px;
    width          : 100%;
    justify-content: space-between;
  }
}

#catalogue .products-list .product-cards-wrapper .product-card {
  width : calc(100% / 4 - 16px);
  margin: 0 8px 16px;
}

@media (max-width: 1024px) {
  #catalogue .products-list .product-cards-wrapper .product-card {
    margin: 0 10px 20px;
    width : calc(100% / 3 - 20px);
  }
}

@media (max-width: 767.98px) {
  #catalogue .products-list .product-cards-wrapper .product-card {
    width : calc(50% - 7px);
    margin: 0 0 20px;
  }
}
@media (max-width: 576px) {
  #catalogue .products-list .product-cards-wrapper .product-card .content-top{
    width : 100%;
  }
  #catalogue .products-list .product-cards-wrapper .product-card .card-bottom{
    width : 100%;
    padding: 10px 10px 0;
  }
  #catalogue .products-list .product-cards-wrapper .product-card .card-btn{
    display: block;
  }
  #catalogue .products-list .product-cards-wrapper .product-card .card-foot{
    margin-top: 23px;
  }
}

#catalogue .products-list.not-found .product-cards-wrapper,
#catalogue .products-list.not-found .pagination {
  display: none;
}

#catalogue .products-list.not-found .not-found-content {
  display    : flex;
  padding-top: 60px;
  position   : sticky;
  top        : 60px;
}

@media (max-width: 1024px) {
  #catalogue .products-list.not-found .not-found-content {
    position: unset;
  }
}

@media (max-width: 767.98px) {
  #catalogue .products-list.not-found .not-found-content {
    padding: 50px 0;
  }
}

#catalogue .products-list.not-found .not-found-content .photo {
  width : 128px;
  height: 128px;
  margin: 0;
}

#catalogue .products-list.not-found .not-found-content .content {
  font-size: 17px;
  color    : #354156;
}

@media (max-width: 767.98px) {
  #catalogue .products-list.not-found .not-found-content .content {
    font-size: 16px;
  }
}

#catalogue .filter-sort-wrapper {
  display        : flex;
  justify-content: flex-end;
  align-items    : center;
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper {
    position   : fixed;
    width      : 100%;
    height     : 100%;
    top        : 0;
    left       : 0;
    background : #232528b3;
    z-index    : 100000;
    align-items: flex-end;
    display    : none;
    overflow   : hidden;
  }

  #catalogue .filter-sort-wrapper.show {
    display  : flex;
    animation: fadeIn 0.3s forwards;
  }

  #catalogue .filter-sort-wrapper.show .filter-content {
    animation: slideToTop 0.7s forwards;
  }

  #catalogue .filter-sort-wrapper.hide {
    animation: fadeOut 1s forwards;
  }

  #catalogue .filter-sort-wrapper.hide .filter-content {
    animation: slideToBottom 0.4s forwards;
  }
}

@media (min-width: 1025px) {
  #catalogue .filter-sort-wrapper .v-tablet {
    display: none !important;
  }
}

#catalogue .filter-sort-wrapper .sort-label {
  font-weight : 400;
  font-size   : 12px;
  line-height : 16px;
  color       : #555e6d;
  margin-right: 14px;
}

#catalogue .filter-sort-wrapper .filter-content {
  width   : 180px;
  position: relative;
  z-index : 10;
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper .filter-content {
    border-radius : 20px 20px 0 0;
    background    : #fff;
    padding-bottom: 16px;
    width         : 100%;
    transform     : translateY(100%);
  }
}

#catalogue .filter-sort-wrapper .filter-content .sort-button {
  background     : #fff;
  border         : 1px solid #c5cad1;
  border-radius  : 4px;
  padding        : 10px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  width          : 100%;
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper .filter-content .sort-button {
    display: none !important;
  }
}

#catalogue .filter-sort-wrapper .filter-content .sort-button:focus {
  outline: none;
}

#catalogue .filter-sort-wrapper .filter-content .sort-button .label {
  font-weight: 500;
  font-size  : 13px;
  line-height: 16px;
  color      : #232528;
}

#catalogue .filter-sort-wrapper .filter-content .sort-button .dropdown-icon {
  width : 15px;
  height: 15px;
}

#catalogue .filter-sort-wrapper .filter-content .sort-button .dropdown-icon img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
}

#catalogue .filter-sort-wrapper .filter-content .sort-header {
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  padding        : 16px 24px;
  border-bottom  : 1px solid #e4e4e7;
}

#catalogue .filter-sort-wrapper .filter-content .sort-header p {
  font-weight: 600;
  font-size  : 16px;
  line-height: 24px;
  color      : #232528;
}

#catalogue .filter-sort-wrapper .filter-content .sort-header .btn-close-filter {
  width     : 24px;
  height    : 24px;
  background: transparent;
  border    : none;
}

#catalogue .filter-sort-wrapper .filter-content .sort-header .btn-close-filter:focus {
  outline: none;
}

#catalogue .filter-sort-wrapper .filter-content .filter-items {
  position: absolute;
  top     : calc(100% + 6px);
  width   : 100%;
  padding : 12px 0;
}

@media (min-width: 1025px) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items {
    display      : none;
    border-radius: 5px;
    background   : #fff;
    border       : 1px solid #f4f5f7;
    box-shadow   : 0px 5px 25px rgba(0, 0, 0, 0.05);
  }

  #catalogue .filter-sort-wrapper .filter-content .filter-items.active {
    animation: fadeIn 0.3s forwards;
    display  : block;
  }
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items {
    position: unset;
    padding : 8px 24px;
  }
}

#catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item {
  display        : flex;
  padding        : 8px 16px;
  font-weight    : 400;
  font-size      : 14px;
  line-height    : 16px;
  color          : #555e6d;
  text-decoration: none;
  position       : relative;
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item {
    padding        : 16px 0;
    text-align     : center;
    display        : flex;
    justify-content: center;
  }

  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item:not(:last-child) {
    border-bottom: 1px solid #e4e4e7;
  }
}

#catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item:before {
  content          : "";
  position         : absolute;
  top              : 8px;
  right            : 16px;
  width            : 16px;
  height           : 16px;
  background-image : url("/uploads/12037607/File/embroidery/assets/tick-blue.svg");
  background-repeat: no-repeat;
  background-size  : contain;
  opacity          : 0;
  transition       : 0.3s;
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item:before {
    width : 20px;
    height: 20px;
    top   : 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item:hover {
    color: #3578ea;
  }

  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item:hover:before {
    opacity: 1;
  }
}

#catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item.active {
  color : #232528;
  cursor: default;
}

@media (min-width: 1025px) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item.active {
    font-weight: 600;
  }
}

#catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item.active:before {
  background-image: url("/uploads/12037607/File/embroidery/assets/tick-black.svg");
  opacity         : 1;
}

@media (max-width: 1024px) {
  #catalogue .filter-sort-wrapper .filter-content .filter-items .filter-item.active:before {
    background-image: url("/uploads/12037607/File/embroidery/assets/tick-blue.svg");
  }
}

#catalogue .filter-sort-wrapper .filter-content .button-black {
  width : calc(100% - 48px);
  margin: 0 auto;
}

#catalogue #filter-menu-mobile {
  padding: 0;
}

#catalogue #filter-menu-mobile .action-buttons .button-black {
  display: none;
}

@media (max-width: 1024px) {
  #catalogue .filter-content-modal {
    position       : fixed;
    width          : 100%;
    background     : #232528b3;
    height         : 100%;
    top            : 0px;
    flex-direction : column;
    justify-content: flex-end;
    left           : 0;
    display        : none;
    z-index        : 100000000001;
  }

  #catalogue .filter-content-modal.show {
    display  : flex;
    animation: fadeIn 0.5s forwards;
  }

  #catalogue .filter-content-modal.show .filter-content-box {
    animation: slideToTop 0.5s forwards;
  }

  #catalogue .filter-content-modal.hide .filter-content-box {
    animation: slideToBottom 0.5s forwards;
  }
}

@media (max-width: 1024px) {
  #catalogue .filter-content-modal .filter-content-box {
    display       : flex;
    flex-direction: column;
    border-radius : 20px 20px 0 0;
    background    : #fff;
    max-height    : calc(100% - 100px);
    transform     : translateY(100%);
    transition    : 0.5s;
    padding-bottom: 20px;
  }
}

@media (min-width: 1024px) {

  #catalogue .checkbox-wrapper:not(:last-child),
  #catalogue .radio-wrapper:not(:last-child) {
    margin-bottom: 8px;
  }
}

@media (max-width: 1024px) {

  #catalogue .checkbox-wrapper,
  #catalogue .radio-wrapper {
    margin: 12px 12px 0px 0px;
  }
}

@media (max-width: 1024px) {

  #catalogue .checkbox-wrapper input[type="checkbox"]+label:before,
  #catalogue .radio-wrapper input[type="checkbox"]+label:before,
  #catalogue .checkbox-wrapper input[type="radio"]+label:before,
  #catalogue .radio-wrapper input[type="radio"]+label:before {
    content: unset;
  }
}

@media (max-width: 1024px) {

  #catalogue .checkbox-wrapper input[type="checkbox"]+label:after,
  #catalogue .radio-wrapper input[type="checkbox"]+label:after,
  #catalogue .checkbox-wrapper input[type="radio"]+label:after,
  #catalogue .radio-wrapper input[type="radio"]+label:after {
    top             : 0;
    left            : unset;
    right           : 0;
    transform       : translate(50%, -50%) scale(0, 0);
    background-image: url("/uploads/12037607/File/embroidery/assets/close-white.svg");
    width           : 10px;
    height          : 10px;
    border-radius   : 100%;
    background      : #232528;
    border          : none;
  }
}

@media (max-width: 1024px) {

  #catalogue .checkbox-wrapper label,
  #catalogue .radio-wrapper label {
    display      : inline-block;
    border       : 1px solid #c5cad1;
    border-radius: 4px;
    padding      : 2px 12px;
    font-weight  : 500;
    font-size    : 11px;
    line-height  : 20px;
    color        : #232528;
  }
}

@media (max-width: 1024px) {

  #catalogue .checkbox-wrapper input[type="checkbox"]:checked+label,
  #catalogue .radio-wrapper input[type="checkbox"]:checked+label,
  #catalogue .checkbox-wrapper input[type="radio"]:checked+label,
  #catalogue .radio-wrapper input[type="radio"]:checked+label {
    border-color: #232528;
    overflow    : unset;
  }
}

@media (max-width: 1024px) {

  #catalogue .checkbox-wrapper input[type="checkbox"]:checked+label:after,
  #catalogue .radio-wrapper input[type="checkbox"]:checked+label:after,
  #catalogue .checkbox-wrapper input[type="radio"]:checked+label:after,
  #catalogue .radio-wrapper input[type="radio"]:checked+label:after {
    background-image   : url("/uploads/12037607/File/embroidery/assets/close-white.svg");
    transform          : translate(50%, -50%) scale(1, 1);
    background-size    : contain;
    background-position: center;
  }
}

#catalogue .checkbox-wrapper.checkbox-sub {
  padding-left: 25px;
}

#catalogue .checkbox-wrapper input[type="checkbox"]+label:before,
#catalogue .checkbox-wrapper input[type="checkbox"]+label:after {
  top         : 3px;
  transition  : 0.3s;
  border-width: 1px;
}

#catalogue .checkbox-wrapper label {
  line-height: 22px;
  font-weight: 400;
  transition : 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  #catalogue .checkbox-wrapper label:hover {
    color: #3578ea;
  }

  #catalogue .checkbox-wrapper label:hover:before {
    border-color: #3578ea;
  }
}

#catalogue .checkbox-wrapper input[type="checkbox"]:checked+label {
  color: #3578ea;
}

#catalogue .checkbox-wrapper input[type="checkbox"]:checked+label:before {
  background  : #3578ea;
  border-color: #3578ea;
}

#catalogue .checkbox-wrapper input[type="checkbox"]:checked+label:after {
  transform: translate(50%, -50%) scale(1, 1);
  top      : 0;
}

/* INFO BOX AND EXTRA CONTENT (CATEGORY DESCRIPTION AND BANNER) START */
.info-box {
  padding      : 45px;
  box-shadow   : 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border       : 1px solid #f4f5f6;
  border-radius: 4px;
  margin-bottom: 1.6rem;
}

.info-box h2 {
  margin-bottom: 20px;
}

.info-box h3 {
  margin-bottom: 6px;
}

.info-box ol {
  padding-left: 20px;
}

.info-box p {
  margin-bottom: 20px;
}

/* HOME DESIGN PRODUCT CSS */

#home-design-product {
  padding   : 70px 0;
  background: #f6faff;
}

@media (max-width: 1024px) {
  #home-design-product {
    padding: 50px 0;
  }
}

@media (max-width: 767.98px) {
  #home-design-product {
    padding-bottom: 30px;
  }
}

#home-design-product .content-wrapper {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  #home-design-product .content-wrapper {
    flex-direction: column-reverse;
  }
}

@media (max-width: 1024px) and (min-width: 767.98px) {

  #home-design-product .content-wrapper .content,
  #home-design-product .content-wrapper .photo {
    width: calc(50% - 28px);
  }
}

@media (min-width: 1025px) {
  #home-design-product .content-wrapper .content {
    width: 50%;
  }
}

#home-design-product .content-wrapper .content .title-wrapper .section-title {
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {

  #home-design-product .content-wrapper .content .title-wrapper .section-title,
  #home-design-product .content-wrapper .content .title-wrapper .section-subtitle {
    text-align: center;
  }
}

#home-design-product .content-wrapper .content .button-wrapper {
  display   : flex;
  gap       : 16px;
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  #home-design-product .content-wrapper .content .button-wrapper {
    flex-direction: column;
    max-width     : 350px;
    margin        : 32px auto 0;
  }
}

#home-design-product .content-wrapper .content .button-wrapper .button-blue,
#home-design-product .content-wrapper .content .button-wrapper .button-outline {
  font-size  : 20px;
  font-weight: 600;
  line-height: 32px;
  padding    : 10px 50px;
  text-align : center;
}

@media (max-width: 1024px) and (min-width: 767.98px) {

  #home-design-product .content-wrapper .content .button-wrapper .button-blue,
  #home-design-product .content-wrapper .content .button-wrapper .button-outline {
    font-size  : 14px;
    font-weight: 500;
    line-height: 22px;
    padding    : 6px 16px;
  }
}

@media (max-width: 767.98px) {

  #home-design-product .content-wrapper .content .button-wrapper .button-blue,
  #home-design-product .content-wrapper .content .button-wrapper .button-outline {
    font-size  : 18px;
    line-height: 30px;
  }
}

#home-design-product .content-wrapper .content .google-reviews {
  margin-top: 8px;
}

@media (max-width: 767.98px) {
  #home-design-product .content-wrapper .content .google-reviews {
    margin-top: 12px;
  }
}

#home-design-product .content-wrapper .content .google-reviews .ti-widget>.ti-widget-container {
  display: flex;
}

@media (max-width: 767.98px) {
  #home-design-product .content-wrapper .content .google-reviews .ti-widget>.ti-widget-container {
    justify-content: center;
  }
}

#home-design-product .content-wrapper .content .google-reviews .ti-widget>.ti-widget-container>.ti-header {
  padding: 20px 0;
}

@media (min-width: 768px) {
  #home-design-product .content-wrapper .content .google-reviews .ti-widget>.ti-widget-container>.ti-header {
    flex-wrap: nowrap !important;
  }
}

#home-design-product .content-wrapper .photo {
  border-radius: 4px;
  overflow     : hidden;
}

@media (min-width: 1025px) {
  #home-design-product .content-wrapper .photo {
    width: calc(50% - 100px);
  }
}

@media (max-width: 767.98px) {
  #home-design-product .content-wrapper .photo {
    margin-bottom: 32px;
  }
}

#home-design-product .content-wrapper .photo img {
  width     : 100%;
  object-fit: contain;
}

/* HOME DESIGN PRODUCT CSS END */

/* INFO BOX AND EXTRA CONTENT (CATEGORY DESCRIPTION AND BANNER) END */


/*#region HEADR  Delivery Start*/
#catalogue .section-heading .section-subtitle-delivery {
  text-align : center;
  color      : #000;
  font-family: Inter;
  font-size  : 17px;
  font-style : normal;
  font-weight: 500;
  line-height: normal;
}

#catalogue .section-heading .section-subtitle-delivery span {
  color      : #ED0006;
  font-weight: 600;

}

#catalogue .section-heading {
  background: #DAE8FF;
  padding   : 22px 0;
  margin: 12px 0 29px;
}

/*#endregion HEADR  Delivery END*/
/*#region LEFT MENU  Delivery Start*/
.left-delivery-boxs {
  display       : flex;
  flex-direction: column;
  gap           : 16px;
  margin-top: 20px;
}

.left-delivery-boxs-item {
  display      : flex;
  gap          : 10px;
  align-items  : center;
  padding      : 16px 12px;
  border-radius: 4px;
  border       : 1px solid #E8E9EA;
  background   : #FFF;
}

.left-delivery-boxs-item .photo img {
  width     : 34px;
  height    : 34px;
  object-fit: cover;
}

.left-delivery-boxs-item .content {
  display       : flex;
  flex-direction: column;
  gap           : 8px;
}

.left-delivery-boxs-item .content .title {
  color         : #000;
  font-family   : Inter !important;
  font-size     : 16px;
  font-style    : normal;
  font-weight   : 500;
  line-height   : 24px;
  letter-spacing: -0.32px;
}

.left-delivery-boxs-item .content .desc ,
.left-delivery-boxs-item .content .desc a {
  color      : #555E6D;
  font-family: Inter !important;
  font-size  : 12px !important;
  font-style : normal;
  font-weight: 500;
  line-height: 24px;
}

.left-delivery-boxs-item:nth-child(1) .content .desc span {
  color: #2C9321;
}

.left-delivery-boxs-item:nth-child(2) .content .desc span {
  color: #E8C127;
}

.left-delivery-boxs-item:nth-child(3) .content .desc a {
  color          : #E74E3A;
  text-decoration: none;
}

@media only screen and (max-width: 1024px) {
  .left-delivery-boxs {
    display: none;
  }
}

/*#region LEFT MENU  Delivery END*/