html, body {
  overflow-x: hidden;   /* hide horizontal scroll */
  overflow-y: auto;     /* enable vertical scroll */
}
.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff; /* White background */
  color: #000; /* Black icon color */
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #000;
  color: #fff;
}
.footer-link {
color: #ccc;
text-decoration: none;
display: block;
margin-bottom: 8px;
}

.footer-link:hover {
color: #fff;
text-decoration: underline;
}

    .product-card {
        height: 100%;
        border: 1px solid #ddd;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: #fff;
        transition: box-shadow 0.3s ease-in-out;
        min-height: 220px; /* Ensures all cards are at least this tall */
    }

    .product-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .product-card img.product-image {
        object-fit: cover;
        width: 100%;
    }

    .product-title,
    .average-rating,
    .price,
    .add-to-cart {
        margin-top: 10px;
        text-align: center;
    }

    .price .original-price {
        color: #888;
    }

    .price .discount-price {
        color: #3f0458;
        font-weight: bold;
        margin-left: 5px;
    }

    .add-to-cart {
        margin-top: auto;
    }

