.category a{
  background:#fff;
  height:95px;
  display:block;
  margin:5px 0;
  border:1px solid gray;
  position:relative;
}
.category a span{
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  text-align:center;
  color:#000;
  font-size:20px;
}
.category a span i{
  display:inline-block;
  font-size:20px;
}
    
    ul.horizontal-list {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex;
      color: #fff;
      text-decoration-line: underline;
    }

    ul.horizontal-list li {
      margin-right: 10px;
    }


    ul.horizontal-list2 {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex;
      color: #000;
      text-decoration-line: underline;
    }

    ul.horizontal-list2 li {
      margin-right: 10px;
    }

    input[type="number"] {
      line-height: 2.75;
      border: none;
    }

.bundle-contents {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 4px;
  
  h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
}

.bundle-items {
  display: grid;
  gap: 1rem;
}

.bundle-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 4px;
  
  .bundle-item-image {
    flex: 0 0 100px;
    
    img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  }
  
  .bundle-item-details {
    flex: 1;
    
    h4 {
      margin: 0 0 0.5rem;
      font-size: 1.1rem;
    }
    
    .quantity {
      color: #666;
      font-size: 0.9rem;
    }
    
    .description {
      margin-top: 0.5rem;
      font-size: 0.9rem;
    }
  }
}

.product-title, 
.product-title a {
    text-align: center;
}

.product-price {
    text-align: center;
    display: block;  /* This ensures the div takes full width */
}

.product-rating {
    text-align: center;
    display: flex;
    justify-content: center;  /* This centers the stars horizontally */
    gap: 2px;  /* Optional: adds small spacing between stars */
}


/* Make all blog boxes the same height with bottom margin */
.blog {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;  /* Add space between rows */
    background: #fff;     /* Add background to see spacing better */
}

/* Make all images consistent size */
.blog-thumb {
    display: block;
    width: 100%;
    height: 232px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make the content area fill available space */
.blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Handle titles with ellipsis */
.blog-title a {  /* Target the link specifically */
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

/* Add spacing to swiper container */
.blog-carousel {
    padding-bottom: 30px;  /* Add bottom padding to carousel container */
}

/* Add spacing to swiper wrapper */
.swiper-wrapper {
    margin-bottom: 30px;  /* Add margin to wrapper */
}

/* Meta information spacing */
.blog-meta {
    margin-bottom: 15px;
}

/* Fix paragraph height */
.blog-content p {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

/* Ensure button stays at bottom */
.blog-content .btn {
    margin-top: auto;
    margin-bottom: 10px;
}
