@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --accent: #896845;
  --accent-bright: #D15C3C;
  --ass: #777777;
  --white: #ffffff;
  --black: #0e0a07;
}

body .product_details {
  width: 100%;
  min-height: 70vh;
  padding: 70px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
body .product_details .box {
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4666666667);
  border-radius: 0.6rem;
  position: relative;
}
body .product_details .box img {
  width: 300px;
}
body .product_details .box .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
}
body .product_details .box .text .name {
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 1rem;
  position: relative;
}
body .product_details .box .text .name::before {
  content: "";
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}
body .product_details .box .text .header {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
}
body .product_details .box .text ul li {
  font-size: 0.9rem;
  color: var(--ass);
}
body .product_details .box .text .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 7px 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 0.3rem;
  transition: all 0.3s linear;
}
body .product_details .box .text .download-btn:hover {
  background: #0077ff;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4666666667);
}

@media screen and (max-width: 999px) {
  body .product_details {
    padding: 30px;
  }
  body .product_details .box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.4666666667);
    border-radius: 0.6rem;
    position: relative;
  }
  body .product_details .box img {
    width: 300px;
  }
  body .product_details .box .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
  }
  body .product_details .box .text .name {
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 1rem;
    position: relative;
  }
  body .product_details .box .text .name::before {
    content: "";
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
  }
  body .product_details .box .text .header {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
  }
  body .product_details .box .text ul li {
    font-size: 0.9rem;
    color: var(--ass);
  }
}/*# sourceMappingURL=productDetailsPage.css.map */