@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 .products {
  width: 100%;
  min-height: 100vh;
  padding: 70px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
body .products .header_texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .products .header_texts .header {
  font-size: 1.2rem;
  position: relative;
}
body .products .header_texts .header::before {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-bright));
  position: absolute;
  top: 0%;
}
body .products .header_texts .justifier {
  font-size: 0.8rem;
  text-align: center;
  color: var(--ass);
}
body .products .product_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
body .products .product_list .prod_box {
  width: 290px;
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4666666667);
  border-radius: 0.7rem;
}
body .products .product_list .prod_box img {
  width: 200px;
}
body .products .product_list .prod_box .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 .products .product_list .prod_box .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 .products .product_list .prod_box a {
  color: var(--ass);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
body .products .product_list .prod_box a ion-icon {
  transition: all 0.3s ease;
}
body .products .product_list .prod_box a:hover ion-icon {
  margin-left: 0.6rem;
}

@media screen and (max-width: 999px) {
  body .products {
    padding: 70px 30px;
  }
  body .products .product_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
  body .products .product_list .prod_box {
    width: 100%;
    min-height: 290px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.4666666667);
    border-radius: 0.7rem;
  }
  body .products .product_list .prod_box img {
    width: 200px;
  }
  body .products .product_list .prod_box .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 .products .product_list .prod_box .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 .products .product_list .prod_box a {
    color: var(--ass);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }
  body .products .product_list .prod_box a ion-icon {
    transition: all 0.3s ease;
  }
  body .products .product_list .prod_box a:hover ion-icon {
    margin-left: 0.6rem;
  }
}/*# sourceMappingURL=CardsDesign.css.map */