.card {
  background-color: #19192c;
  border-radius: 10px;
  width: 350px;
  padding: 10px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0px;
  border: 0.5px solid #00ff88;
}
.card img {
  width: 100%;
  border-radius: 5px;
  height:270px;
}
.card h2 {
  color: white;
  font-size: 24px;
  margin: 10px 0;
}
.category {
  color: #55def9;
  font-size: 14px;
  margin: 10px 0;
}
.price {
  color: #00ff88;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
.stock {
  color: #55def9;
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
}
.add-to-cart {
  background: linear-gradient(to right, #00ff99, #00d4ff);
  border: none;
  padding: 10px 80px;
  color: #fff;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s;
    text-decoration: none;
}
.read-more{
    margin-top: 20px;
}
.add-to-cart:hover {
  transform: scale(1.05);
}
/* catalog.css or styles.css */
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.cart-summary {
  background: #16213e;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-row.total {
  font-weight: bold;
  font-size: 18px;
}

.checkout-btn {
  background: linear-gradient(to right, #00ff99, #00d4ff);
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
}

.checkout-btn:hover {
  transform: scale(1.05);
}

/* Cookies Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #0f0f1a;
  border: 2px solid #00ff99;
  border-radius: 20px;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup p {
  margin: 10px 0;
}

.cookie-btn {
  background-color: #00ff88;
  color: #0f0f1a;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  margin-right: 10px;
}
