/* Colors */
:root {
  --bg-color: hsl(30, 38%, 92%);
  --white: hsl(0, 0%, 100%);
  --green: hsl(158, 36%, 37%);
  --green-hover: hsl(158, 42%, 18%);
  --h2-color: hsl(212, 21%, 14%);
  --blue-grey: hsl(228, 12%, 48%);
  --shadow: hsla(0, 0%, 0%, 0.1);
}
/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General Styles */
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
/* Main Content Styles */
body {
  background-color: var(--bg-color);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.product-card {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0px 2px 2px var(--shadow);
  height: auto;
}
main {
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.perfume-photo {
  height: 100%;
  display: block;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
h1 {
  font-family: Montserrat, sans-serif;
  color: var(--blue-grey);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3.5px;
}
h2 {
  font-family: Fraunces;
  color: var(--h2-color);
  font-size: 32px;
  font-weight: 900;
  line-height: 34px;
  max-width: 10ch;
  margin-top: 15px;
}
.about-perfume {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  margin-top: 30px;
  color: var(--blue-grey);
}
.price {
  display: flex;
  color: var(--green);
  font-family: Fraunces;
  font-size: 32px;
  font-weight: 900;
  margin-top: 20px;
}
.price span {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  text-decoration: line-through;
  align-self: center;
  margin-left: 15px;
  font-size: 12px;
  color: var(--blue-grey);
}
.cart-button {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 60px;
  background-color: var(--green);
  border-radius: 10px;
  margin-top: 30px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: white;
  font-size: 15px;
  transition: 0.2s;
}
.cart-button img {
  height: 16px;
  width: 15px;
}
.cart-button:hover {
  background-color: var(--green-hover);
  transition: 0.2s;
}
/* Media Queries */
@media (max-width: 605px) {
  .product-card {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
  .perfume-photo {
    content: url(./assets/image-product-mobile.jpg);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 10px;
    height: auto;
  }
}
