/* show sticky icon heart and cart for each product*/
/*
.ps-shoe__favorite {
        transform: scale(1, 1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        }
*/
.mr-15 {
        border-radius: 10px;
}
.ui-autocomplete .ui-front .ui-menu .ui-widget .ui-widget-content {
z-index:1000 !important;
}


/* 📱 Responsive 2x2 Product Grid for mobile & tablet */
@media (max-width: 992px) {
.ps-section--features-product .masonry-wrapper .ps-masonry {
display: grid !important;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.ps-section--features-product .masonry-wrapper .grid-item {
width: 100% !important;
margin: 0 !important;
}

.ps-section--features-product .ps-shoe {
margin-bottom: 0;
background: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.ps-section--features-product .ps-shoe__thumbnail img {
width: 100%;
height: auto;
object-fit: cover;
}

.ps-section--features-product .ps-shoe__content {
padding: 10px 8px;
text-align: center;
}
/* test by sm*/
.ps-shoe .ps-shoe__name{
font-size:12px;
}
.ps-shoe .ps-shoe__price{
font-size:14px !important;
margin-top:5% !important;
}

.ps-shoe .ps-shoe__price del{
font-size:13px !important;

}
/* End test by sm*/

/* hide isotope gaps if any */
.ps-section--features-product .masonry-wrapper .grid-sizer {
display: none !important;
}
}

/* 📱 Optional: single column for very small screens */
@media (max-width: 480px) {
.ps-section--features-product .masonry-wrapper .ps-masonry {
grid-template-columns: repeat(1, 1fr);
}
}

/*For category icon list and vendor list card in front page*/

:root {
            /* --primary-color: #ff416c;
            --secondary-color: #ff4b2b; */
            --primary-color: #2ac37d;
            --secondary-color: #20c997;
            --light-bg: #f5f5f5;
            --dark-text: #2ac37d;
            --light-text: #888;
            --card-bg: #ffffff;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
/* Categories Section */
      .section-title {
          display: flex;
          justify-content: space-between;
          align-items: baseline;
          margin: 25px 0 15px;
          padding: 0 5px;
      }

      .section-title h2 {
          font-size: 18px;
          color: var(--dark-text);
      }

      .see-more {
          color: var(--primary-color);
          /* color:#20c997; */
          font-size: 14px;
          text-decoration: none;
          display: flex;
          align-items: center;
          gap: 5px;
      }

      .see-more:hover {
          text-decoration: underline;
      }

      .categories-container {
          display: flex;
          overflow-x: auto;
          padding: 15px 0;
          gap: 20px;
          scrollbar-width: none;
      }

      .categories-container::-webkit-scrollbar {
          display: none;
      }

      .category-item {
          flex: 0 0 auto;
          width: 90px;
          text-align: center;
          cursor: pointer;
          transition: transform 0.2s;
      }

      .category-item:hover {
          transform: translateY(-5px);
      }

      .category-icon {
          width: 70px;
          height: 70px;
          background: var(--card-bg);
          border-radius: 15px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 10px;
          box-shadow: var(--shadow);
      }

      .category-icon i {
          font-size: 2.8rem;
          color: var(--primary-color);
          /* color:#20c997; */
      }

      .category-name {
          /* font-size: 0.85rem; */
          color: var(--light-text);
      }
      /*For vendors*/
      .section-title {
          margin: 30px 0 15px;
          padding-bottom: 10px;
          /* border-bottom: 2px solid #ff6b6b; */
          border-bottom: 2px solid #20c997;
          font-size: 18px;
          color: #444;
      }

      .vendors-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
          gap: 20px;
          margin-bottom: 30px;
      }
      .vendors-container {
            display: flex;
            overflow-x: auto;
            padding: 15px 0;
            gap: 20px;
            scrollbar-width: none;
        }

        .vendor-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .vendor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .vendor-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 10px;
            border: 3px solid #ff6b6b;
        }

        .vendor-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .vendor-category {
            font-size: 12px;
            color: #777;
        }


/*End category icon and vendors lsit card*/