*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.text-bold {
  font-weight: bold;
}

.text-padding {
  padding: 0 0.5rem;
}

.text-center {
  text-align: center;
}

.line-through {
  text-decoration: line-through;
}

.text-red {
  color: #e70000;
}

.text-green {
  color: #1eb336;
}

.text-gray {
  font-size: 1.2rem;
  color: #aaaaaa;
}

.text-gray {
  color: #a7a7a7;
}

.text-white {
  color: white;
}

.text-bg-green {
  background-color: #19ae30;
}

.text-bg-red {
  background-color: #cf0000;
}

.text-bg-yellow {
  background-color: #f2cc0f;
}

.header {
  background: #000000 url("../images/header-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.header__container {
  width: 100%;
  max-width: 1248px;
  padding: 15px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__btn {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "PT Sans", sans-serif;
  background: transparent linear-gradient(180deg, #ff0000 0%, #8b1502 100%) 0% 0% no-repeat padding-box;
  border-radius: 25px;
  border: 2px solid #b80000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}
.header__btn span {
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  color: white;
}
.header__btn img {
  width: 34px;
  height: 34px;
}

main {
  margin-top: 80px;
}

.heading--1 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  line-height: 39px;
  font-weight: 700;
  color: #7b7b7b;
  margin-bottom: 32px;
}
.heading--2 {
  font-family: "Roboto", sans-serif;
  font-size: 42px;
  line-height: 51px;
  font-weight: 700;
  margin-bottom: 22px;
}
.heading--3 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}
.heading--4 {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  line-height: 33px;
  font-weight: 700;
}
.heading--5 {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.heading--6 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
}

.text-shadow {
  text-shadow: 0px 3px 50px rgba(0, 25, 255, 0.5019607843);
}

.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
}

.product-image {
  width: 350px;
  height: auto;
}

.row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-gap: 5px;
  margin-bottom: 40px;
}

.product {
  background-color: #f6f6f6;
  border-radius: 11px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  text-align: center;
}
.product__header {
  background-color: #0c9e11;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  padding: 16px;
}
.product__body {
  text-align: center;
  padding: 33px;
}
.product .counter {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 65px;
  padding: 24px 12px;
  background-color: black;
  border-radius: 8px;
  border: 3px solid #686868;
  box-shadow: inset 0px 3px 6px rgba(255, 255, 255, 0.1607843137), 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.product .counter__inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: white;
  text-align: center;
  padding: 10px 30px;
  border: 2px solid #686868;
  border-radius: 8px;
  box-shadow: inset 0px 8px 6px rgba(0, 0, 0, 0.3019607843);
}
.product__bracelet {
  background-image: url("../images/wave_magne pulso.png");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 150px 0;
  margin-top: -200px;
}
.product__bracelet img {
  margin-inline: auto;
  padding-top: 55px;
}
.product__inner {
  margin-top: -100px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 30px;
  max-width: 650px;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "PT Sans", sans-serif;
  background: transparent linear-gradient(180deg, #ff0000 0%, #8b1502 100%) 0% 0% no-repeat padding-box;
  border-radius: 35px;
  margin: 30px auto;
  border: 2px solid #b80000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  cursor: pointer;
}
.button span {
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  color: white;
}
.button img {
  width: 34px;
  height: 34px;
}
.button--hidden {
  display: none;
}

.picture-error {
  font-size: 15px;
  line-height: 20px;
  color: red;
  font-weight: 700;
  margin-bottom: 10px;
}

.summary-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #009f20;
  padding: 1.5rem;
  border: 1px solid #009f20;
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  border-radius: 1rem;
  margin: 1.5rem auto;
  transition: all 0.35s ease-in-out;
}
.summary-button:hover {
  cursor: pointer;
  background-color: white;
  color: #009f20;
}

.image-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 50%;
  margin: 2.5rem 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin: 0;
}
ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.container {
  width: 100%;
  max-width: 1037px;
  margin-left: auto;
  margin-right: auto;
}

.main-top {
  margin-bottom: 80px;
}

.main-top,
.main-bottom,
.main-summary {
  background-color: white;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1607843137);
  border-radius: 16px;
  padding: 64px;
}

.main-bottom .comments-title {
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
}
.main-bottom .form-add-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.main-bottom .form-add-comment input {
  margin-bottom: 0.8rem;
}
.main-bottom .form-add-comment textarea {
  margin-bottom: 2.2rem;
  resize: none;
  min-height: 10rem;
}
.main-bottom .form-add-comment input,
.main-bottom .form-add-comment textarea {
  padding: 0.4rem 0.7rem 0.5rem 0.5rem;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
  border: 1px solid gray;
  border-radius: 8px;
}
.main-bottom .form-add-comment input::-moz-placeholder, .main-bottom .form-add-comment textarea::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment input::placeholder,
.main-bottom .form-add-comment textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.main-bottom .form-add-comment .form-buttons {
  display: flex;
  gap: 1.1rem;
}
.main-bottom .form-add-comment .form-buttons .form-btn {
  padding: 0.9rem;
  color: white;
  background-color: #868e96;
  border-radius: 0.3rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.main-bottom .form-add-comment .form-buttons .form-btn:hover {
  background-color: #5f6468;
}
.main-bottom .comments-wrapper .comment,
.main-bottom .added-comments .comment {
  display: flex;
  margin-bottom: 2.3rem;
}
.main-bottom .comments-wrapper .comment .comment-avatar,
.main-bottom .added-comments .comment .comment-avatar {
  width: 48px;
  height: 48px;
  margin-right: 2.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row {
  display: flex;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row-image,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row-image {
  display: flex;
  flex-direction: column;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-author,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-author {
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  margin-right: 0.9rem;
  margin-bottom: 0.8rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
  color: #7f919e;
  font-size: 1.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-content,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-content {
  margin-bottom: 1.1rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-attachment,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-attachment {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 20rem;
  margin-bottom: 1.8rem;
}

footer {
  margin-top: 150px;
  padding-bottom: 40px;
}
footer .text-gray {
  text-align: center;
}
footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 55.6rem;
}
footer .copyright {
  margin-bottom: 2.3rem;
}
footer .attachments {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
footer .attachments .text-gray {
  text-decoration: underline;
}
footer .company-address {
  margin-top: 2.3rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 991px) {
  .product__bracelet {
    background-image: none;
  }
}
@media (max-width: 768px) {
  .main-top,
  .main-bottom {
    padding: 20px;
  }
  .main-top {
    margin-bottom: 40px;
  }
  .row {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    justify-items: center;
  }
  .heading--1 {
    font-size: 20px;
    line-height: 30px;
  }
  .heading--2 {
    font-size: 28px;
    line-height: 38px;
  }
  .heading--4 {
    font-size: 18px;
    line-height: 28px;
  }
  .heading--5 {
    font-size: 27px;
    line-height: 37px;
  }
  .product__body {
    padding: 15px;
  }
  .button span {
    font-size: 16px;
    line-height: 24px;
  }
  .header__btn {
    padding: 7px 12px;
  }
  .header__btn span {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 525px) {
  .header__container {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .header__btn {
    justify-content: center;
    gap: 5px;
  }
  .header__btn img {
    width: 24px;
    height: 24px;
  }
  .header__btn span {
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */