/* Add loader css */

.loader
{
  background: rgba( 255, 255, 255, 0.8 );
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.loader img
{
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
  position: absolute;
  top: 50%;
}

.feature-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    flex: 1;
    justify-content: center;
}

.feature-item i {
    font-size: 20px;
    color: #f5b400; /* yellow icon */
}
.related-section {
    padding: 20px;
    background: #f6f6f6;
}

.related-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.product-title {
    font-size: 14px;
    color: #333;
    margin: 8px 0;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #888;
}

.discount {
    font-size: 12px;
    color: red;
}

.cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.cart-btn:hover {
    background: #000;
    color: #fff;
}