:root {
  --bgcolor: #fafafa;
  --textcolor: #262626;
  --main-brand-color: #EC1C1C;
  --border-color: #c9c9c9;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bgcolor: #222222;
    --textcolor: #f7f7f7;
    --border-color: #7d7d7d;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

body {
  min-height: 100vh;
  color: var(--textcolor);
  background-color: var(--bgcolor);
  line-height: 1.6;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}

h5 {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  margin-top: 2rem;
}

h6 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  margin-top: 1rem;
  color: #f2f2f2;
}

a {
  text-decoration: none;
  color: var(--main-brand-color);
  transition: 0.4s;
}

#content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 0;
  font-weight: normal;
  display: grid;
  grid-template-rows: max-content 1fr 50px;
}

header {
  border-bottom: 4px solid var(--main-brand-color);
  line-height: 1.5;
  padding: 1rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  place-items: center;
}
@media (min-width: 850px) {
  header {
    flex-direction: row;
    gap: 1rem;
  }
}

.brandname {
  margin-bottom: 0;
}
.brandname a {
  color: var(--textcolor);
}

nav {
  font-size: 1rem;
  padding: 1rem 0;
  margin-top: 1rem;
}
@media (min-width: 850px) {
  nav {
    margin-left: auto;
  }
}
nav .logo {
  margin: 0 2rem 0 0;
}
nav .headernav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  list-style-type: none;
  padding: 0;
}

nav .headernav-item a {
  color: var(--textcolor);
}

.wrapper {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: grid;
  grid-auto-columns: 1fr;
  gap: 5rem;
  padding: 1em;
}
.wrapper .product-item {
  position: relative;
}
.wrapper .product-item .product-label {
  background-color: var(--main-brand-color);
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 75%;
  display: flex;
  flex-direction: column;
  place-items: center;
  padding: 1rem;
}
.wrapper .product-item .product-label h3,
.wrapper .product-item .product-label .product-price {
  color: #f2f2f2;
}
.wrapper .product-item .product-image {
  border: 3px solid var(--border-color);
  border-radius: 10px;
  line-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.info p {
  font-size: 1rem;
}
.info strong {
  font-weight: 700;
}

.product-item img {
  width: 100%;
  height: 100%;
  contain: cover;
}

.all-products-wrapper {
  margin: 3rem 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.all-products-wrapper .products-wrapper {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1rem;
}
.all-products-wrapper .products-wrapper .main-image {
  width: 100%;
  height: auto;
}
.all-products-wrapper a:link {
  color: var(--textcolor);
}

.products p:first-child {
  font-weight: 700;
}

.products p:last-child {
  margin-bottom: 3rem;
}

@media (min-width: 680px) {
  .wrapper {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .wrapper .product-item {
    position: relative;
  }
  .wrapper .product-item .product-label {
    background-color: var(--main-brand-color);
    position: absolute;
    left: 0;
    top: 2rem;
    display: flex;
    flex-direction: column;
    place-items: center;
    width: 150px;
    padding: 1rem;
  }
  .wrapper .product-item .product-label h3 {
    color: #f2f2f2;
  }
  .wrapper .info p {
    font-size: 1rem;
  }
  .wrapper .info strong {
    font-weight: 700;
  }
  .wrapper .product-item img {
    width: 100%;
    height: 100%;
    contain: cover;
  }

  nav {
    padding: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .wrapper {
    margin-top: 2rem;
    display: grid;
    grid-template-rows: repeat(14, auto);
    grid-template-columns: repeat(10, 1fr);
    gap: 1rem;
  }
  .wrapper .product-item {
    position: relative;
  }
  .wrapper .product-item .product-label {
    background-color: var(--main-brand-color);
    position: absolute;
    left: -10px;
    top: 2rem;
    display: flex;
    flex-direction: column;
    place-items: center;
    width: 150px;
    padding: 1rem;
    box-shadow: rgba(188, 187, 187, 0.51) h3, h5;
    box-shadow-color: #f2f2f2;
  }
  .wrapper .info {
    grid-column-start: 7;
    grid-column-end: span 5;
  }
  .wrapper .info p {
    font-size: 1rem;
  }
  .wrapper .info strong {
    font-weight: 700;
  }
  .wrapper .product-item img {
    width: 100%;
    height: 100%;
    contain: cover;
  }

  .product-wrapper:nth-child(2) {
    grid-column: 1/7;
    grid-row: 1/7;
  }

  .product-wrapper:nth-child(3) {
    grid-column: 6/10;
    grid-row: 4/12;
  }

  .product-wrapper:nth-child(4) {
    grid-column: 3/7;
    grid-row: 9/14;
  }
}
.products p:first-child {
  font-weight: 700;
}

.products p:last-child {
  margin-bottom: 3rem;
}

.link-all {
  margin-bottom: 3rem;
  text-align: center;
}
.link-all h5 a:link {
  font-weight: 600;
  color: var(--main-brand-color);
  transition: 0.4s;
  border-bottom: 1px solid var(--main-brand-color);
}

.wrapper-details {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}
.wrapper-details .price {
  margin-bottom: 1rem;
}
.wrapper-details .title {
  text-align: center;
}
.wrapper-details .name {
  font-size: 5rem;
}

.image-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.image-wrapper img {
  width: 100%;
  height: auto;
}

.text-wrapper {
  width: 80%;
  margin: 2rem auto;
}
@media (min-width: 600px) {
  .text-wrapper {
    width: 60%;
  }
}

.data-list {
  display: grid;
  grid-template-columns: max-content auto;
  column-gap: 1rem;
  align-items: baseline;
}
.data-list dt {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  grid-column-start: 1;
}
.data-list dd {
  grid-column-start: 2;
}

.contact {
  /* border: 1px solid orange; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 0 2em 3em 2em;
}

@media (min-width: 1024px) {
  .about {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap'); */
.formcarry-container {
  box-sizing: border-box;
  margin: 40px auto 0 auto;
  padding: 0;
  /* font-family: "Inter", sans-serif; */
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  width: 400px;
  /* NORMAL */
  --fc-border-color: #ECEFF9;
  --fc-normal-text-color: #0E0B3D;
  --fc-normal-placeholder-color: #B3B8D0;
  /* PRIMARY COLOR | HSL FORMAT*/
  --fc-primary-color-hue: 220;
  --fc-error-color-hue: 356;
  --fc-primary-hsl: var(--fc-primary-color-hue), 100%, 54%;
  --fc-error-hsl: var(--fc-error-color-hue), 100%, 54%;
  /* HOVER */
  --fc-field-hover-bg-color: #F7F9FC;
  --fc-border-hover-color: #DDE0EE;
  --fc-field-hover-text-color: #B3B8D0;
  --fc-border-active-color: #1463FF;
}

.formcarry-container * {
  box-sizing: border-box;
}

.formcarry-container label {
  display: block;
  cursor: pointer;
}

.formcarry-container .formcarry-block:not(:first-child) {
  margin-top: 16px;
}

/*=============================================
=            Fields           =
=============================================*/
.formcarry-container input,
.formcarry-container textarea,
.formcarry-container select {
  margin-top: 4px;
  width: 100%;
  height: 42px;
  border: 1px solid var(--fc-border-color);
  color: var(--fc-normal-text-color);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: 125ms background, 125ms color, 125ms box-shadow;
}

.formcarry-container textarea {
  min-height: 188px;
  max-width: 100%;
  padding-top: 12px;
}

.formcarry-container input::placeholder,
.formcarry-container textarea::placeholder,
.formcarry-container select::placeholder {
  color: var(--fc-normal-placeholder-color);
}

.formcarry-container input:hover,
.formcarry-container textarea:hover,
.formcarry-container select:hover {
  border-color: var(--fc-border-hover-color);
  background-color: var(--fc-field-hover-bg-color);
}

.formcarry-container input:hover::placeholder,
.formcarry-container textarea:hover::placeholder,
.formcarry-container select:hover::placeholder {
  color: var(--fc-field-hover-text-color);
}

.formcarry-container input:focus,
.formcarry-container textarea:focus,
.formcarry-container select:focus {
  background-color: #fff;
  border-color: hsl(var(--fc-primary-hsl));
  box-shadow: hsla(var(--fc-primary-hsl), 8%) 0px 0px 0px 3px;
  outline: none;
}

.formcarry-container select {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9997 14.5001L8.46387 10.9642L9.64303 9.78589L11.9997 12.1434L14.3564 9.78589L15.5355 10.9642L11.9997 14.5001Z' fill='%236C6F93'/%3E%3C/svg%3E%0A");
  /* background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 15px) calc(1em + 4px); */
  background-size: 24px 24px;
  background-position: 98%;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
}

.formcarry-container button {
  /* font-family: "Inter", sans-serif; */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  height: 42px;
  line-height: 40px;
  width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
  border: 1px solid hsla(var(--fc-primary-hsl));
  background-color: hsla(var(--fc-primary-hsl));
  color: #fff;
  cursor: pointer;
}

.formcarry-container button {
  /* font-family: "Inter", sans-serif; */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  height: 40px;
  line-height: 24px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: hsla(var(--fc-primary-hsl));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 0 transparent;
  transition: 125ms all;
}

.formcarry-container button:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), hsla(var(--fc-primary-hsl));
}

.formcarry-container button:focus {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), hsla(var(--fc-primary-hsl));
  border-inline: 1px solid inline rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 0px 3px rgba(var(--fc-primary-hsl), 12%);
}

.formcarry-container button:active {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), hsla(var(--fc-primary-hsl));
}

.formcarry-container button:disabled {
  background-color: hsla(var(--fc-primary-hsl), 40%);
  cursor: not-allowed;
}

.formcarry-container input:focus:required:invalid,
.formcarry-container input:focus:invalid,
.formcarry-container select:focus:required:invalid,
.formcarry-container select:focus:invalid {
  color: hsl(var(--fc-error-hsl));
  border-color: hsl(var(--fc-error-hsl));
  box-shadow: 0px 0px 0px 3px hsla(var(--fc-error-hsl), 12%);
}

.submitbutton {
  background-color: var(--main-brand-color) !important;
}

/*=====  End of Fields  ======*/

/*# sourceMappingURL=styles.css.map */
