* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
/* navbar */
.search {
  background-color: #def1df;
}

.nav-link{
  margin-left: 60px;
  font-weight: bold;
  color: #35823c;
}

a .nav-link:hover{
  color: black ;
}

.bg-body-tertiary {
  background-color: white !important;
}

.line {
  margin-top: -5px;
}

/* Best sellers section */
.row p {
  color: #6e6e6e;
}

/* footer */
.btn a svg:hover {
  color: black;
}

.social-icons button a {
  color: green;
}

tbody tr a {
  color: #6e6e6e;
}

tbody tr a:hover {
  color: #35823c;
}

.send button:hover{
  background-color: white;
  color: #35823c;
  border: 1px solid #35823c;
}

/* products section */

.container_parent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 300px;
}

.card-content {
  padding: 15px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #333;
}

.card-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px;
}

/* add to card button */

.product {
  display: inline-block;
  margin: 20px;
  text-align: center;
}

.add-to-cart {
  display: block;
  margin: 10px auto;
  padding: 10px 15px;
  background-color: #35823c;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.add-to-cart:hover{
    background-color: white;
    color: #35823c;
    border: 1px solid #35823c;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.cart {
  position: fixed;
  bottom: 20px;
  background-color: #35823c;
  right: 20px;
  padding: 10px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

.cart svg{
    position: relative;
}

.cart:hover{
    background-color: white;
    color: #35823c;
    border: 1px solid #35823c;
}

.cart span{
    background-color: #f44336;
    border-radius: 50%;
    position: absolute;
    justify-content: center;
    align-items: center;
    color: white;
    top: -15px;
    left: 75%;
    padding: 3px 10px;
}

.cart-details {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
  max-width: 300px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cart-details h3 {
  margin-top: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.cart-item p {
  margin: 0;
  font-size: small;
}

.remove-item {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 8px;
}

.total-price {
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
}


/* search products */

.hidden {
  display: none;
}
.card-content {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}
.card-content:hover {
  background-color: #f9f9f9;
  transform: scale(1.02);
}
.highlight {
  border: 2px solid #007bff;
  background-color: #e7f3ff;
}