@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  padding: clamp(2rem, 2vw, 7rem);
  font-family: "ital", sans-serif;
}

h1 {
  padding-top: 20px;
  text-align: start;
  font-size: clamp(2rem, 2vw, 4rem);
  text-decoration: underline;
}

h2 {
  font-size: clamp(1.8rem, 2vw, 3rem);
}

P {
  text-justify: inter-word;
  text-align: justify;
  padding: 0.7rem 0;
  font-size: clamp(1.9rem, 2vw, 2.3rem);
  line-height: clamp(25px, 6vw, 30px);
}

h3 {
  text-align: center;
  padding: 0.8rem 0;
  font-size: clamp(2rem, 2vw, 4rem);
}

button,
.submit_btn input {
  font-weight: bold;
  font-size: clamp(1.5rem, 2vw, 4rem);
}

nav {
  display: none;
}

/* .h1-main-text {
  font-size: clamp(5rem, 2vw, 5rem);
} */

.banner-section {
  padding-top: 2rem;
}

.banner-section h1 {
  text-align: center;
  font-size: clamp(2.5rem, 2vw, 5rem);
  padding: 2rem 0;
  text-transform: uppercase;
  color: white;
  border-radius: 10px;
  background-color: rgb(21, 21, 56);
  box-shadow: 0 1px 10px 1px rgb(21, 21, 56);
}

.dear-friend-text {
  text-align: start;
}

.price {
  font-size: clamp(1.6rem, 2vw, 3rem);
  text-align: center;
  text-transform: uppercase;
}

.shoe-picture-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.shoe-picture-section img {
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 3rem);
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 10%;
}

.shoe-colors {
  text-align: center;
}

.h3-text-color,
.price {
  color: red;
}

.action-btn {
  background-color: red;
  color: white;
  text-transform: uppercase;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  padding: 10px;
  margin: 1.5rem 0;
  cursor: pointer;
  box-shadow: 0 1px 5px 1px rgb(255, 208, 0);
}

.order-form-section {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.h3-text-line-strike {
  text-decoration: line-through;
  font-style: italic;
  padding: 1rem 0 0 0;
}

.form-details {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: rgb(119, 115, 115);
  padding-bottom: 0.5rem;
}

.order-form-section-input,
.total-amount-sum {
  display: block;
  font-size: clamp(1.6rem, 2vw, 2rem);
  background-color: rgb(222, 228, 226);
  width: 100%;
  border: 1px solid gray;
  outline: none;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

input {
  box-shadow: 0 1px 5px 1px rgb(9, 133, 19);
}

.image-select-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
}

.image-select-section img {
  width: auto;
  border: 3px solid rgb(198, 214, 174);
  height: clamp(8rem, 10vw, 20rem);
  border-radius: 0.5rem;
  aspect-ratio: 1/1;
}

.shoe-selection-section {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  padding-top: 1rem;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
  box-shadow: 0 1px 5px 1px rgb(9, 133, 19);
}

.color-span {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.multiple-selection {
  padding: 1rem 0;
}

.preferred-sizes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.preferred-sizes div {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  row-gap: 1rem;
}

.preferred-sizes span {
  padding: 0 1.5rem 0 0.3rem;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.preferred-sizes-text {
  padding-bottom: 0.5rem;
  padding-top: 1rem;
}

.how_many_pairs {
  padding-bottom: 0.5rem;
  padding-top: 1.5rem;
}

.total-amount {
  display: flex;
  flex-direction: column;
}

.total-amount-sum-text {
  padding-top: 1.5rem;
}

.consent-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 2rem;
}

.consent-section-text {
  font-size: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}

.submit_btn {
  display: flex;
  flex-direction: column;
}

.submit_btn input {
  padding: 1rem;
  text-transform: uppercase;
  background-color: red;
  color: white;
  border: none;
  border-radius: 0.5rem;
}

.order-warning {
  width: 100%;
  border-radius: 1rem;
  color: white;
  padding: 1rem;
  margin: 1rem 0;
  background-color: rgb(21, 21, 56);
  box-shadow: 0 1px 10px 1px rgb(21, 21, 56);
}

.action-anchor-btn {
  width: 100%;
  align-items: center;
}

.call-to-action-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.call-to-action-section h1 {
  padding-top: 0;
}

.whatsapp-btn {
  background-color: rgb(116, 189, 6);
  margin: 2rem 0 1rem 0;
}

.call-us {
  background-color: rgb(43, 43, 231);
  margin: 0 0 1rem 0;
}

.customer-review-section {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  padding-bottom: 5rem;
}

.customer-review-section h1 {
  text-transform: uppercase;
}

.customer-review-section img {
  width: 100%;
  height: auto;
  border-radius: 10%;
}

.form-details::after {
  content: " *";
  color: red;
}

.whatsapp-chat-icon,
.call-icon {
  position: fixed;
  width: auto;
  height: 45px;
  border-radius: 50%;
}

.whatsapp-chat-icon {
  top: 79%;
  right: 7%;
}

.call-icon {
  top: 87%;
  right: 7%;
}

/* LAPTOP RESPONSIVENESS */

@media (min-width: 1024px) {
  body {
    padding: 3rem 10rem;
  }

  p {
    padding: 1.5rem 0;
    text-align: center;
  }

  h1,
  h2,
  h3,
  h4 {
    text-align: center;
  }

  .shoe-picture-section img {
    width: 80%;
    height: 850px;
  }

  .shoe-colors {
    font-size: 20px;
  }

  .customer-review-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .customer-review-section img {
    width: 60%;
    height: 700px;
    border-radius: 10%;
  }

  .whatsapp-chat-icon {
    top: 80%;
    right: 5%;
  }

  .call-icon {
    top: 88%;
    right: 5%;
  }
}
