@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,700;1,900&display=swap");
@import "owl.carousel.min.css";
@import "owl.theme.default.min.css";
@import "nav.css";
/* @import "footer.css"; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: lato;
}

header {
  background: url("../img/product_background.png");
  background-size: cover;
  border-bottom: 6px solid #62d6ac;
  height: 83vh;
}

nav .btn {
  font-size: 1em;
  margin-left: 310px;
  background-color: white;
}

:root {
  --y: 20px;
  --x: 50px;
}

.main {
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  height: 83vh;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
}

.main h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 50px;
}

.main p {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.product-wrapper {
  padding: 50px 50px;
  margin: 50px 0;
  background-color: #fbfdff;
  display: flex;
  flex-wrap: wrap;
  border-radius: 50px;
  /* box-shadow: 1px 1px 10px 1px #dedede; */
}

.product-wrapper .product {
  flex-basis: 50%;
}

.product-wrapper .product-detail {
  flex-basis: 50%;
  color: #000000f0;
}

.product-detail .btn {
  margin: 35px 0;
  font-size: 16px;
  border-radius: 50px;
}

.product-detail p {
  font-size: 18px;
  line-height: 28px;
}

.product-detail h1 {
  font-size: 35px;
  margin: 10px 0px;
  text-decoration: underline;
  text-transform: capitalize;
}

.product-detail .overview {
  margin-top: 20px;
}

.product-detail .overview h3,
.product-detail .payment-gateway {
  color: rgb(100, 100, 100);
  /* margin-bottom: 10px; */
}

.product-detail .list {
  list-style: none;
}

.product-detail .list li {
  display: flex;
  align-items: center;
  margin: 5px 0px;
  font-size: 16px;
  text-transform: capitalize;
}

.product-detail .list li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 10px;
}

.product-detail .cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}

.product-detail .cards img {
  width: 50px;
  height: 45px;
  object-fit: contain;
  object-position: center;
  margin-right: 5px;
}

.product .product-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product .navigation {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.slider .fa-angle-left {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.slider .fa-angle-right {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.product .navigation i {
  padding: 15px 10px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.product .navigation i:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transition: 1s;
}

.product .slider {
  position: relative;
  max-width: 450px;
  /* height: 400px; */
}

.product .slider .wrapper {
  background-color: white;
  border-radius: 25px;
  height: 300px;
  overflow: hidden;
}

.product .slider .items {
  display: flex;
  transition: 0.5s ease-out;
}

.product .slider img {
  flex-shrink: 0;
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
}

.product .image-select {
  display: flex;
  justify-content: center;
  /* margin: 20px 0; */
  margin-top: 20px;
  cursor: pointer;
}

.product .image-select img {
  padding: 2px;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 2px 5px 0 #0002;
}

.product :is(.specification, .details) {
  margin: 30px auto;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  /* height: 35px; */
  max-width: 450px;
  cursor: pointer;
}

.product :is(.specification, .details) ul li {
  margin-top: 10px;
}
.product :is(.specification, .details) ul {
  padding: 0px 10px;
}
.product :is(.specification, .details) ul li h3 {
  margin-top: 10px;
}

.product :is(.specification, .details) details summary {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}

.product :is(.specification, .details) details[open] summary {
  margin-bottom: 20px;
}

.payment-terminal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #d3ffef;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 100px 0;
}

.payment-terminal h1 {
  font-size: 35px;
  font-weight: bold;
  color: #01422a;
}

.payment-terminal .btn {
  font-size: 1.5em;
}

.text-underline::after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background: black;
  margin: auto;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  background-color: #62d6ac;
  text-decoration: none;
  padding: 15px 20px;
  /* border-radius: 50px; */
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.5em;
  box-shadow: 0 2px 10px 0 #0005;
  transition: 0.5s;
}

.btn:hover {
  transform: scale(0.9) !important;
}

.primary {
  color: white;
}

.active {
  left: 0;
}

.strike-behind {
  position: relative;
  height: 100px;
}

.strike-behind::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  background: lightgray;
}

.strike-behind::after {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  background: #d3ffef;
  padding: 10px 30px;
}

@media screen and (max-width: 1200px) {
  .product-wrapper > div {
    flex-basis: 100% !important;
  }

  .product-detail {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .section-3 .sub-section .wrapper div:last-child img {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  .payment-terminal {
    justify-content: center;
  }

  .payment-terminal h1 {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 700px) {
  :root {
    --x: 20px;
  }

  .form-field {
    flex-wrap: wrap;
  }

  .customer-care {
    text-align: center;
  }

  .customer-care .info div {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .main h1 {
    font-size: calc(60px - 2vw);
  }

  .section-3 {
    border-radius: 0;
  }
}

@media screen and (max-width: 500px) {
  :root {
    --x: 5px;
  }

  /* section 2 */
  :is(.section-2, .section-3) h1 {
    font-size: 30px;
  }

  p {
    font-size: 18px !important;
  }

  .termByPoint div {
    font-size: 10px !important;
  }

  .payment img {
    width: 80%;
  }

  .product-wrapper {
    padding: 50px 15px;
    border-radius: 10px;
  }
}

/* Z.css */

.termByPoint div {
  font-size: 30px;
  margin: 40px 0px;
  font-weight: bold;
  color: #01422a;
}

section {
  /* padding: 0px 60px; */
  /* color: green; */
  /* margin: 20px 0px; */
}

ul {
  font-size: 18px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8);
}

details[open] summary ~ * {
  animation: sweep 0.5s ease-in-out;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-detail p:first-child {
  text-transform: capitalize;
}

#dropDown {
  font-size: 16px;
}
