.therapy-section {
  background: #f4efe8;
}

/* Titles */
.section-title {
  font-weight: 600;
  color: #333;
  font-size: 32px;
  text-align: center;
  display: block;
  padding-top:20px;
}

/* Progress */
.progress-item {
  margin-bottom: 20px;
}
	.text-muted{
		font-size:22px;
	}
.progress-item p {
  font-size: 17px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 700;
}

.progress {
      height: 15px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
}

/* Custom colors */
.bg-blue {
  background: #b68984;
}
.bg-lightblue {
  background: #b68984;
}
.bg-red {
  background: #b68984;
}

/* Focus list */
.focus-list {
  list-style: none;
  padding: 0;
}

.focus-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.focus-list li::before {
  content: "•";
  color: #a67c52;
  margin-right: 8px;
}

/* Image collage */
.image-collage {
  position: relative;
}

.main-img {
  border-radius: 12px;
}

.small-img {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  border-radius: 12px;
  border: 4px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .small-img {
    position: static;
    width: 100%;
    margin-top: 15px;
  }
}
.feature-boxes {
  margin-top: 60px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-section::before {
    width: 100%;
  }

  .feature-boxes {
    margin-top: 30px;
  }
}

/* SECTION */
.section {
  padding: 40px 5%;
}

/* Section */
.shop-cat-section {
  padding: 40px 20px;
}

.shop-cat-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
}

/* Grid */
.shop-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* Card */
.shop-cat-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
}

/* Image */
.shop-cat-img-wrap {
  height: auto;
  overflow: hidden;
}

.shop-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Title */
.shop-cat-name {
  text-align: center;
  padding: 12px;
  font-size: 16px;
  color: #333;
}

/* ðŸ”¥ Hover Effects */
.shop-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
	.recent_button{
		width: 100%;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
	}
.shop-cat-card:hover img {
  transform: scale(1.1);
}

.shop-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  opacity: 0;
  transition: 0.3s;
}

.shop-cat-card:hover::after {
  opacity: 1;
}
.cat {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
/* category css end */
/* PRODUCTS */
.page-id-25 .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width:100%;	
}

.card img {
  width: 100%;
}

	/* Deals Section */
.section {
  padding:0px 20px 40px;
  background-color: #f4efe8;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

/* Products Grid */
.page-id-25 .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
  gap: 20px;
  justify-items: center;
}

/* Card Styling */
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: auto;
  max-height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.card h4 a{
  font-size: 20px;
  margin: 15px 0;
  color: #333 !important;
	text-decoration:none;
}

.card p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f4a261;
}

/* Add to Cart Button */
.add-to-cart {
  background-color: #ddc79b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #161f36;
}

/* Card Hover Effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #eeeeef;
}

@media (max-width: 768px) {
  .section {
    padding: 20px 10px;
  }

  h2 {
    font-size: 28px;
  }

  .products {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .products {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 24px;
  }
}
	

.custom-vertical-slider * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-vertical-slider {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.custom-vertical-slider .main-slider,
.custom-vertical-slider .nav-slider {
    float: left;
    height: 70vh;
}

.custom-vertical-slider .main-slider {
    width: 80%;
    position: relative;
}

.custom-vertical-slider .nav-slider {
    width: 20%;
    background: #111;
    padding-left: 10px;
    overflow: hidden;
}

.custom-vertical-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.custom-vertical-slider .slide-bgimg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.custom-vertical-slider .content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 600px;
}

.custom-vertical-slider .main-slider .title {
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 0px;
    text-align:left;
}
	.add-to-shop{
    background: #161f36;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 7px;
	margin-top:30px;
	}
.add-to-shop:hover{
    background: #ddc79b;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 7px;
	}

.custom-vertical-slider .caption {
    font-size: 18px;
    color:#000;
    line-height: 1.7;
    opacity: 1;
    transform: translateX(50px);
    transition: all 0.7s ease;
}

.custom-vertical-slider .caption.show {
    opacity: 1;
    transform: translateX(0);
}

/* Thumbnail */
.custom-vertical-slider .nav-slider .swiper-wrapper {
    align-items: flex-start;
}

.custom-vertical-slider .nav-slider .swiper-slide {
    height: calc((70vh - 20px) / 3) !important;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-vertical-slider .nav-slider .swiper-slide-active {
    opacity: 1;
}
.custom-vertical-slider .nav-slider .swiper-slide {
    opacity: 0.5;
    transition: 0.3s ease;
}

.custom-vertical-slider .nav-slider .swiper-slide-thumb-active {
    opacity: 1 !important;
}
.custom-vertical-slider .nav-slider .content {
    left: 20px;
    bottom: 20px;
    top: auto;
    transform: none;
    max-width: none;
}

.custom-vertical-slider .nav-slider .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.custom-vertical-slider .swiper-button-next,
.custom-vertical-slider .swiper-button-prev {
    color: #fff;
}

@media (max-width: 991px) {
    .custom-vertical-slider .main-slider {
        width: 100%;
    }

    .custom-vertical-slider .nav-slider {
        display: none;
    }
}