* {
  box-sizing: border-box;
}

body {
  background-color: hsl(30, 38%, 92%);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  display: flex;
  width: 600px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

.bottle {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: block;
  flex-shrink: 0;
}

.text {
  width: 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toptitle {
  letter-spacing: 4px;
  font-weight: 700;
  color: hsl(228, 12%, 48%);
  font-size: 0.8rem;
  font-weight: 400; 
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 1rem 0;
  color: hsl(212, 21%, 14%);
  line-height: 1;
}

.description {
  font-size: 0.9rem;
  color: hsl(228, 12%, 48%);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 400;
  
}

h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
  color: hsl(158, 36%, 37%);
  display: flex;
  align-items: center;
}

.orgprice {
  font-family: 'Montserrat', sans-serif;
  text-decoration: line-through;
  font-weight: 500;
  font-size: 0.8rem;
  color: hsl(228, 12%, 48%);
  margin-left: 1.5rem;
}

button {
  margin-top: 2rem;
  background-color: hsl(158, 36%, 37%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}

button:hover {
  background-color: hsl(158, 42%, 18%);
}

.carticon {
  width: 20px;
  height: 20px;
  fill: white;
}
