/* Home pafe sjop csss start here */
/* Home pafe sjop csss start here */

.category-card {
  text-align: center;
  margin-bottom: 30px;
  padding: 5px;
}

.category-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.category-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #e58770;
}

.category-items {
  color: #000000;
  font-size: 12px;
  text-transform: lowercase;
}

.category-box {
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid rgb(214 155 140 / 15%);
  background: #f6efe9;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  text-decoration: none;
}


/* SHOP PAGE CSS START HERE  */
/* SHOP PAGE CSS START HERE  */

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.purpole {
  color: #e57373;
}

.price {
  font-weight: bold;
  margin-bottom: 0px;
}

.price .old-price {
  text-decoration: line-through;
  color: gray;
  margin-left: 5px;
}

.sidebar {
  gap: 2rem;
}

@media (max-width: 768px) {
  .sidebar {
    margin-bottom: 2rem;
  }
}

.breadcrumb-bottom {
  padding: 30px;
  background: #f4f9fc;
}

a {
  text-decoration: none;
}

.shop-cart {
  background: #f6efe9;
  padding: 0px;
  border-radius: 0px;
}

.shop-cart img {
  width: 20%;
}

.rs-shop {
  padding: 8px;

  p {
    font-size: 14px;
  }
}

.rs-featured h5{
  padding: 10px;
  background: #e58770;
  color: white;
  margin-bottom: 30px;
}


/* PRODUCT-DETILS PAGE CSS START HERE */
/* PRODUCT-DETILS PAGE CSS START HERE */


.product-title {
  font-weight: 600;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e58770;
}

.size-btn {
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 5px;
  padding: 6px 12px;
  transition: all 0.2s ease;
}

.size-btn:hover,
.size-btn.active {
  background-color: #000;
  color: #fff;
}

.add-cart-btn {
  background-color: #e57373;
  color: #fff;
  font-weight: 500;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  transition: 0.3s;
}

.add-cart-btn:hover {
  background-color: #d32f2f;
}

.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 5px;
}

.thumb-img.active {
  border: 2px solid #000;
}

.product-meta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.product-meta span {
  font-weight: 600;
}


.product-gallery {
  position: relative;
}

.main-image-wrapper {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.main-image {
  width: 100%;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-image:hover {
  transform: scale(1.3);
}

.thumb-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumb-img:hover,
.thumb-img.active {
  border-color: #007bff;
}

@media (max-width: 767.98px) {
  .thumb-img {
    width: 60px;
    height: 60px;
  }
}

/* === Custom Responsive Styles === */
.rs-section {
  padding: 40px 0;
}

.rs-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.rs-carousel .rs-item {
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.rs-carousel .rs-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.rs-carousel .rs-item:hover {
  transform: translateY(-5px);
}

.rs-product-title {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}

.rs-price {
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

/* Testimonials Section */

.rs-testimonial {
  text-align: center;
  margin-top: 40px;
  padding: 40px 0;
  background: #fafafa;
  border-radius: 8px;
}

.rs-testimonial h4 {
  font-weight: 600;
  color: #333;
}

.rs-testimonial p {
  color: #555;
  font-size: 15px;
  max-width: 600px;
  margin: 10px auto;
}

/* Tabs */
.rs-tabs {
  margin-top: 40px;
}

.rs-tabs .nav-tabs .nav-link {
  font-weight: 500;
  color: #333;
}

.rs-tabs .nav-tabs .nav-link.active {
  color: #000000 !important;
  background: #d69b8c;
}

.rs-box {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow);
  background: #f6efe9;
  text-decoration: none;
}

@media (max-width: 767px) {
  .rs-carousel .rs-item img {
    height: 150px;
  }
}