
 .rating { 
  border: none;
  float: left;
}

.rating > input { display: none; } 
.rating > label:before { 
  margin: 5px;
  font-size: 1.25em;
  font-family: 'bootstrap-icons';
  display: inline-block;
  content: "\F586";
}

.rating > .half:before { 
  content: "\F587";
  position: absolute;
}

.rating > label { 
  color: #ddd; 
 float: right; 
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover ~ label { color: #FFD700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #FFED85;  }   

.checked-star{
    color:#FFD700;
}
.unchecked-star{
    color:lightgrey;
}
.btn-rate-now{
    text-decoration:none;
    font-size:12px;
    color:#ffc107;
}
.page-title {
  color: var(--default-color);
    padding: 21px 0;
    position: relative;
    box-shadow: inset 0px 0px 5px 0px #c4c4c4;
    background: #f3f3f3;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 2px;
  color: #565555;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 2px;
  color: color-mix(in srgb, #ef1a22, #ff0000 70%);
}
  .sitemap-title {
  font-size: 26px;
  font-weight: 700;
  color: #dc3545;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 10px;
}

.sitemap-block {
  margin-bottom: 40px;
}

.sitemap-heading {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  border-left: 4px solid #dc3545;
  padding-left: 10px;
}

.sitemap-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.sitemap-card i {
  font-size: 18px;
  color: #0d6efd;
}

.sitemap-card.category i {
  color: #f0ad4e;
}

.sitemap-card.product i {
  color: #198754;
}

.sitemap-card:hover {
  transform: translateY(-4px);
  background: #f8f9fa;
  color: #000;
}

/* Mobile Optimization */
@media (max-width: 575px) {
  .sitemap-title {
    font-size: 22px;
  }

  .sitemap-card {
    font-size: 13px;
    padding: 10px 12px;
  }
}

.blog-item {
  background: #fff;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Image */
.blog-image {
  overflow: hidden;
}

.blog-image img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-item:hover img {
  transform: scale(1.08);
}

/* Hover Overlay */
.post-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.blog-item:hover .post-hover {
  opacity: 1;
}

.read-more-btn {
  background: #e91e63;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #c2185b;
  color:#fff;
}

/* Content */
.blog-content {
  min-height: 120px;
}

.blog-title a {
  line-height: 1.4;
  font-weight: 600;
}

.blog-title a:hover {
  color: #e91e63 !important;
}



