.price-old{
  display:none;
}
.shop-inner-page{
  display:none;
}

#mw-element-1752039913123,#mw-element-1752040707388 span {
  border-bottom: 1px dotted #fff;
  padding:5px;
}
/*CATEGORY SECTION*/

 .category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-col {
  flex: 0 0 48%;
  box-sizing: border-box;
}

.category-box {
  background: #f8f8f8;
  padding: 15px;
  border: 1px solid #ddd;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-box img {
  width: 100%;
  height: 280px; /* Bigger height for desktop */
  object-fit: cover;
}

.category-box p {
  margin-top: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

/* Mobile View: slightly smaller images */
@media (max-width: 768px) {
  .category-col {
    flex: 0 0 48%;
  }

  .category-box img {
    height: 180px;
  }
}



/*CATEGORY SECTION END*/
.shop-products h6{
  color:#000 !important;
}

/*Team section*/
.team-section {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
  }

  .team-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
  }

  .team-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .team-card {
    flex: 0 0 280px;
    background: linear-gradient(to bottom, #fff, #f1f1f1);
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #e3e3e3;
  }

  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    background-color: #eee;
  }

  .team-card h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
  }

  .team-card p {
    font-size: 14px;
    color: #555;
  }

  /* Scrollbar visible only on mobile */
  @media (max-width: 768px) {
    .team-cards {
      padding-left: 10px;
      padding-right: 10px;
    }

    .team-card {
      flex: 0 0 90%;
      max-width: 90%;
    }

    .team-cards::-webkit-scrollbar {
      height: 6px;
    }

    .team-cards::-webkit-scrollbar-thumb {
      background-color: #bbb;
      border-radius: 8px;
    }

    .team-cards::-webkit-scrollbar-track {
      background-color: transparent;
    }
  }
/*Team section END*/
/*Simplifying your serach*/
.job-banner-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      
    }

    .job-banner-content {
      flex: 1;
      max-width: 50%;
    }

    .job-banner-content h2 {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 20px;
	  color:#612627;
	   
    }

    .job-banner-content p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #666;
    }

    .banner-cta-btn {
     background-color: #424242;
      color: #fff;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
 .banner-cta-btn:hover{
   color:#000 !important;
}
    .job-banner-image-wrapper {
      flex: 1;
      max-width: 45%;
      position: relative;
    }

    .job-banner-image-wrapper img {
      width: 100%;
      border-radius: 20px;
    }

    .experience-badge {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: #ddef40;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
    }

    .experience-badge span {
      font-size: 30px;
      font-weight: 700;
      color: #424242 ;
	  line-height:1.4!important;
    }

    .experience-badge small {
      display: block;
      font-size: 14px;
      color: #333;
    }

    @media (max-width: 768px) {
      .job-banner-section {
        flex-direction: column;
      }

      .job-banner-content,
      .job-banner-image-wrapper {
        max-width: 100%;
      }

      .job-banner-image-wrapper {
        margin-top: 30px;
      }

      .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 16px;
      }
    }
/*Simplifying your serach END*/
/*Form css*/
.form-control,.form-select{
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #F5F5DC !important;
  color: #555 !important;
  padding: 6px 12px !important; 
  font-size: 16px;
  height: auto !important;
}
/*form css END*/