@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2ebe3;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img {
  background-image: url('./images/image-product-desktop.jpg');
  background-size: cover;
  background-position: center;
  width: 50%;
  min-height: 400px;
}

.card-content {
  padding: 24px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category {
  color: gray;
  letter-spacing: 2px;
  font-size: 12px;
}

.product-title {
  margin: 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}

.description {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.current-price {
  color: #3c8067;
  font-size: 24px;
  font-weight: 700;
}

.original-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
}

.add-to-cart {
  background-color: #3c8067;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #2f6654;
}
