:root {
  --bg-card: #f9f9f9;
  --text-main: #333333;
  --btn-bg: #007bff;
  --btn-text: #ffffff;
}

body.dark-mode {
  --bg-card: #1a1a1a;
  --text-main: #ffffff;
  --btn-bg: #66b2ff;
}

body {
  background-color: var(--bg-card);
  color: var(--text-main);
  transition: all 0.3s ease;
  padding: 50px;
}

.product {
  width: 100%;
  padding: 15px;
  background-color: var(--bg-card);
  border: 1px solid var(--text-main);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .product {
    max-width: 350px;
    padding: 20px;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  .product {
    max-width: 400px;
    padding: 25px;
    border-radius: 5px;
  }
}
.product--image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .product--image {
    height: 250px;
  }
}
@media screen and (min-width: 1024px) {
  .product--image {
    height: 300px;
  }
}
.product--title {
  color: var(--text-main);
  font-size: 18px;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .product--title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .product--title {
    font-size: 24px;
  }
}
.product--price {
  font-size: 20px;
  color: green;
  font-weight: bold;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .product--price {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .product--price {
    font-size: 28px;
  }
}
.product--button {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  text-align: center;
  transition: all 0.5s ease;
}
.product--button p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .product--button {
    padding: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .product--button {
    width: auto;
    padding: 15px 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .product--button:hover {
    background-color: color-mix(in srgb, var(--btn-bg) 80%, black 20%);
    cursor: pointer;
  }
}/*# sourceMappingURL=responsiveMixins.css.map */