/* fonts */
@font-face {
  font-family: "PT Sans";
  src: url("../fonts/ptsans.woff2") format("woff2"),
    url("../fonts/ptsans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/ptsans-bold.woff2") format("woff2"),
    url("../fonts/ptsans-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/*Global*/
.page-body {
  padding: 0;
  margin: 0;
  font-family: "PT Sans", "Arial", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #333333;
  background-color: #eeeeee;
  position: relative;
  min-width: 1200px;
  height: 100%;
}

.page {
  height: 100%;
}

.page-wrap {
  background-color: #ffffff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-content: start;
  box-shadow: 0 0 15px rgba(0, 1, 1, 0.2);
  position: relative;
}

.page-body a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.field-reset {
  margin: 0;
  padding: 0;
  border: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.main {
  flex-grow: 1;
}

.button {
  border: none;
  padding: 8px 34px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s;
  cursor: pointer;
  font-family: "PT Sans", "Arial", sans-serif;
  text-align: center;
}

.button--brown {
  background-color: #756157;
}

.button--brown:hover {
  background-color: #615048;
}

.button--brown:focus {
  background-color: #615048;
}

.button--brown:active {
  background-color: #756157;
  color: rgba(255, 255, 255, 0.3);
}

.button--blue {
  background-color: #82b3d3;
}

.button--blue:hover {
  background-color: #68a2ca;
}

.button--blue:focus {
  background-color: #68a2ca;
}

.button--blue:active {
  background-color: #82b3d3;
  color: rgba(255, 255, 255, 0.3);
}

.button:disabled {
  background-color: #e5e5e5;
  pointer-events: none;
}

.button:disabled:hover:not(:active) {
  background-color: #e5e5e5;
}

.button--transparent {
  background-color: transparent;
}

.button--transparent:hover {
  color: rgba(255, 255, 255, 0.6);
}

.button--transparent:focus {
  color: #ffffff;
  border-color: #83b3d3;
}

.button--transparent:active {
  color: rgba(255, 255, 255, 0.3);
}

.button--transparent:disabled {
  opacity: 0.1;
  background-color: transparent;
  pointer-events: none;
}

.button--green {
  background-color: #7db54f;
}

.button--green:hover,
.button--green:focus {
  background-color: #6c9e42;
}

.button--green:active {
  background-color: #7db54f;
  color: rgba(255, 255, 255, 0.3);
}

.main-header {
  padding: 0 70px;
  display: grid;
  grid-template-columns: 138px 1fr 88px 160px;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: flex-start;
}

.main-header__logo {
  display: block;
  width: 138px;
  height: 64px;
}

.navigation__list {
  display: flex;
  margin-left: 10px;
  flex-wrap: wrap;
}

.navigation__item {
  padding: 20px 16px;
}

.navigation__link {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  position: relative;
  transition: color 0.3s;
}

.navigation__link:hover {
  color: #756157;
}

.navigation__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: -21px;
}

.navigation__link--active::after {
  background-color: #756257;
}

.navigation-user__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 44px;
  min-height: 64px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #000000;
}

.navigation-user__link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #000000;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.navigation-user__link:hover {
  color: #756157;
}

.navigation-user--search::before {
  -webkit-mask-image: url("../img/search.svg");
  mask-image: url("../img/search.svg");
}

.main-header__button {
  margin: 14px 0;
}

.navigation-user--favorite::before {
  -webkit-mask-image: url("../img/heart.svg");
  mask-image: url("../img/heart.svg");
  position: relative;
}

.favorite__number {
  position: absolute;
  top: 11px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #7db54f;
  font-size: 10px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
}

.navigation-user {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-banner {
  height: 485px;
  padding: 50px 0 82px;
  background: #273744 url("../img/welcome-bg.jpg") no-repeat;
  text-align: center;
  position: relative;
}

.main-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 57px;
  background: url("../img/welcome-decor.png") no-repeat;
  left: 0;
  bottom: 0;
}

.main-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 652px;
  margin: 0 auto 20px;
  text-align: center;
  color: #000000;
}

.main-subtitle {
  font-size: 22px;
  line-height: 26px;
  margin: 0 auto;
  max-width: 655px;
  text-align: center;
  font-weight: 400;
  color: #333333;
}

.main-advantages__title {
  margin-bottom: 25px;
}

.main-advantages {
  padding-top: 70px;
}

.main-advantages__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 90px;
}

.main-advantages__item {
  width: 400px;
  min-height: 385px;
}

.main-advantages__item:first-child,
.main-advantages__item:last-child {
  width: 100%;
  position: relative;
  justify-content: flex-start;
}

.advantages-card {
  text-align: center;
  background-color: rgba(131, 179, 211, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.main-advantages__item:first-child .advantages-card__img {
  right: 0;
}

.main-advantages__item:last-child .advantages-card__img {
  left: 0;
}

.main-advantages__item:nth-child(odd):not(.advantages-card--blue) {
  background-color: rgba(131, 179, 211, 0.2);
}

.advantages-card__title {
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 30px;
  margin: 0 0 30px;
  position: relative;
  max-width: 175px;
  color: #000000;
}

.advantages-card__title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.advantages-card--blue .advantages-card__title {
  color: #ffffff;
}

.main-advantages__img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.advantages-card__text {
  font-size: 18px;
  line-height: 21px;
  margin: 0;
}

.main-advantages__wrap {
  height: 100%;
  width: 400px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  padding: 85px 84px;
}

.advantages-card--blue {
  background-color: #82b3d3;
  color: #ffffff;
  width: 100%;
}

.advantages-card--blue .advantages-card__title::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.main-features__title {
  max-width: 505px;
}

.main-features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.features__item {
  padding: 183px 85px 80px;
  position: relative;
  text-align: center;
}

.features__item:nth-child(odd) {
  background-color: rgba(131, 179, 211, 0.1);
}

.features-list__title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.features-list__text {
  font-size: 18px;
  line-height: 21px;
  margin: 0;
}

.features__item--home {
  background: rgba(131, 179, 211, 0.1) url("../img/house.svg") no-repeat center
    80px;
}

.features__item--meal {
  background: #ffffff url("../img/burger.svg") no-repeat center 80px;
}

.features__item--gift {
  background: rgba(131, 179, 211, 0.1) url("../img/gift.svg") no-repeat center
    80px;
}

.main-features {
  padding-top: 64px;
}

.main-form {
  padding: 96px 0;
}

.main-form__button {
  padding: 8px 50px;
  display: block;
  margin: 54px auto 0;
  font-size: 20px;
  line-height: 36px;
  max-width: 376px;
}

.main-subcribe {
  padding: 96px 0 104px;
  text-align: center;
  background: #273744 url("../img/form-bg.jpg") no-repeat;
  color: #ffffff;
}

.main-subcribe .main-title {
  color: #ffffff;
}

.main-subcribe .main-subtitle {
  color: #ffffff;
}

.main-subcribe__desc {
  max-width: 475px;
}

.subcribe-form__wrap {
  display: grid;
  justify-content: center;
  grid-template-columns: 452px 232px;
}

.subcribe-form__wrap input {
  width: 452px;
  height: 52px;
  border: none;
  background-color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  padding: 0 20px;
  border-radius: 4px 0 0 4px;
  transition: background-color 0.3s;
  font-family: inherit;
}

.subcribe-form__wrap input:hover {
  background-color: #e5e5e5;
}

.subcribe-form__button {
  border-radius: 0 4px 4px 0;
  font-size: 20px;
  padding: 16px 34px;
}

.main-subcribe__form {
  margin-top: 54px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 70px 35px;
  background-color: #ffffff;
  flex-grow: 0;
  flex-shrink: 0;
}

.footer__social {
  width: 142px;
}

.social-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.social-list__link {
  display: block;
  height: 40px;
  padding: 13px 11px;
  position: relative;
}

.social-list__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #83b3d3;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.3s;
}

.social-list__link--vk::before {
  -webkit-mask-image: url("../img/vk.svg");
  mask-image: url("../img/vk.svg");
  -webkit-mask-size: 24px 14px;
  mask-size: 24px 14px;
}

.social-list__link--tg::before {
  -webkit-mask-image: url("../img/tg.svg");
  mask-image: url("../img/tg.svg");
  -webkit-mask-size: 18px 16px;
  mask-size: 18px 16px;
}

.social-list__link--tube::before {
  -webkit-mask-image: url("../img/tube.svg");
  mask-image: url("../img/tube.svg");
  -webkit-mask-size: 22px 17px;
  mask-size: 22px 17px;
}

.social-list__link:hover:not(:active)::before {
  background-color: #68a2ca;
}

.social-list__link:active::before {
  background-color: rgba(104, 162, 202, 0.3);
}

.footer__phonewrap {
  width: 720px;
  text-align: center;
}

.footer__phone {
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  color: #000000;
}

.footer__phone:hover,
.footer__phone:focus {
  color: #756157;
}

.footer__phone:active {
  color: rgba(117, 97, 87, 0.3);
}

.footer__logo {
  display: block;
  width: 115px;
  height: 33px;
}

.footer__logo:hover:not(:active) svg {
  fill: #756157;
}

.footer__logo:active svg {
  fill: rgba(117, 97, 87, 0.3);
}

.footer__logo:active {
  opacity: 0.3;
}

.form-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(242, 242, 242, 0.8);
  z-index: 3;
  overflow-y: scroll;
  scrollbar-width: none;
}

.form-wrap--hidden {
  display: none;
}

.form-wrap__block {
  width: 100%;
  max-width: 717px;
  border-radius: 30px;
  background-color: #ffffff;
  padding: 64px 70px;
  box-shadow: 0px 0 15px rgba(0, 1, 1, 0.15);
  position: absolute;
  z-index: 5;
  top: 396px;
  left: 50%;
  transform: translateX(-50%);
}

.form-wrap__title {
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 64px;
}

.form-wrap__close {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  background: #f2f2f2 url("../img/close.svg") no-repeat center;
  border: none;
  padding: 0;
  position: absolute;
  right: 52px;
  top: 64px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-wrap__close:hover {
  background-color: #e5e5e5;
}

.form-wrap__close:active {
  background-color: #e5e5e5;
  opacity: 0.3;
}

.form__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 0 18px;
  margin-bottom: 48px;
}

.form__calendar {
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  position: absolute;
  right: 21px;
  background: url("../img/date.svg") no-repeat;
  top: 50%;
  transform: translateY(-50%);
}

.form__item input {
  width: 100%;
  height: 48px;
  border: none;
  padding: 0 50px 0 20px;
  background-color: #f2f2f2;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  transition: background-color 0.3s;
  font-family: inherit;
}

.form__input input:hover {
  background-color: #e5e5e5;
}

.form__input {
  position: relative;
}

.form__text {
  font-size: 16px;
  line-height: 21px;
  position: absolute;
  top: calc(100% + 4px);
  left: 20px;
  width: 100%;
}

.form__text--red {
  color: #ff5757;
}

.form__name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.subcribe-form__wrap input::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-family: "PT Sans", "Arial", sans-serif;
}

.form__input input::placeholder,
.input-number input {
  color: #000000;
  font-family: "PT Sans", "Arial", sans-serif;
}

.form__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 90px;
}

.input-number {
  display: flex;
}

.input-number__item {
  width: 40px;
  height: 48px;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
}

.input-number__item:hover::before,
.input-number__item:focus-visible::before {
  background-color: rgba(0, 0, 0, 1);
}
.input-number__item:active::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.input-number__item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(117, 97, 87, 0.3);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 20px 20px;
  mask-size: 20px 20px;
}

.input-number__item--munus::before {
  -webkit-mask-image: url("../img/minus.svg");
  mask-image: url("../img/minus.svg");
  border-radius: 4px 0 0 4px;
}

.input-number__item--plus::before {
  -webkit-mask-image: url("../img/plus.svg");
  mask-image: url("../img/plus.svg");
  border-radius: 0 4px 4px 0;
}

.input-number input {
  width: calc(100% - 80px);
  padding: 0;
  text-align: center;
  border-radius: 0;
}

.form__right {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 85px;
}

.tooltip {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #82b3d3 url("../img/tool.svg") no-repeat center;
  padding: 0;
  border: none;
  cursor: pointer;
}

.tooltip:hover:not(:active) {
  background-color: #68a2ca;
}

.tooltip__text {
  position: absolute;
  width: 256px;
  padding: 20px 18px 23px 22px;
  background-color: #333333;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-align: left;
  font-family: "PT Sans", "Arial", sans-serif;
  border-radius: 10px;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.tooltip:hover .tooltip__text {
  display: block;
}

.tooltip__text::before {
  content: "";
  position: absolute;
  top: -9px;
  width: 19px;
  height: 9px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/triangle.svg") no-repeat;
}

.form__button {
  width: 100%;
  padding: 20px 34px;
  font-size: 20px;
  border-radius: 10px;
}

.range__input::-webkit-outer-spin-button,
.input-number input::-webkit-outer-spin-button,
.range__input::-webkit-inner-spin-button,
.input-number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.range__input,
.range__input:hover,
.range__input:focus,
.input-number input,
.input-number input:hover,
.input-number input:focus {
  appearance: none;
  -moz-appearance: textfield;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 70px;
}

.filter {
  padding: 35px 70px 70px;
  background: #273744 url("../img/filter-bg.jpg") no-repeat;
  background-size: cover;
  color: #ffffff;
}

.filter__item:has(input:disabled) {
  opacity: 0.3;
  pointer-events: none;
}

.filter__title {
  font-size: 60px;
  line-height: 78px;
  font-weight: bold;
  margin: 0 0 8px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}

.breadcrumbs__link {
  display: block;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus-visible {
  opacity: 0.6;
}

.breadcrumbs__link:active {
  opacity: 0.3;
}

.breadcrumbs__item {
  position: relative;
  font-size: 16px;
  line-height: 21px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 7px;
  height: 10px;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/arrow-bread.svg") no-repeat;
}

.filter__wrap {
  display: grid;
  grid-template-columns: 151px 151px 1fr 191px;
  justify-content: space-between;
  gap: 69px;
}

.filter__range {
  padding-left: 70px;
}

.filter__desc {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.filter__item:not(:last-child) {
  margin-bottom: 15px;
}

.checkbox__name {
  font-size: 18px;
  line-height: 23px;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  color: #ffffff;
  display: block;
}

.checkbox__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.checkbox__name:hover::before {
  background-color: rgba(242, 242, 242, 0.6);
}

.checkbox__name:hover {
  color: rgba(242, 242, 242, 0.6);
}

.checkbox__name--check::before {
  border-radius: 4px;
}

.checkbox__name--radio::before {
  border-radius: 100%;
}

.checkbox__name::after {
  content: "";
  position: absolute;
  opacity: 0;
}

.checkbox__name--check::after {
  left: 4px;
  top: 7px;
  width: 13px;
  height: 10px;
  background: url("../img/check.svg") no-repeat;
}

.checkbox__name--radio::after {
  left: 5px;
  top: 7px;
  width: 10px;
  height: 10px;
  background-color: #3f5e72;
  border-radius: 100%;
}

.checkbox input:checked + .checkbox__name::after {
  opacity: 1;
}

.checkbox input:focus-visible + .checkbox__name::before {
  border: 3px solid #83b3d3;
}

.checkbox input:active + .checkbox__name::before {
  background-color: rgba(242, 242, 242, 0.3);
}

.checkbox input:active + .checkbox__name {
  color: rgba(242, 242, 242, 0.3);
}

.filter__right {
  display: grid;
  grid-template-columns: 288px 191px;
  gap: 20px 70px;
}

.range-filter__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.range__price {
  position: relative;
}

.range__price:first-child .range__input {
  border-radius: 4px 0 0 4px;
}

.range__price:last-child .range__input {
  border-radius: 0 4px 4px 0;
}

.range__input {
  width: 100%;
  height: 48px;
  padding: 0 41px 0 20px;
  border: none;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #000000;
  font-family: "PT Sans", "Arial", sans-serif;
  transition: background-color 0.3s;
}

.range__input:hover {
  background-color: #e5e5e5;
}

.range__name {
  position: absolute;
  font-size: 18px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  right: 20px;
  top: 12px;
}

.range__controls {
  width: 100%;
  position: relative;
  margin-top: 45px;
}

.range__scale {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}

.range__bar {
  width: 72%;
  height: 100%;
  background-color: #ffffff;
}

.range__toggle {
  position: absolute;
  top: -8px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  cursor: pointer;
  padding: 0;
  border: none;
  border-radius: 5px;
}

.range__toggle:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.range__toggle:focus-visible {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.range__toggle:active {
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.4);
  outline: 2px solid #83b3d3;
}

.filter__buttons .button {
  width: 100%;
}

.filter__reset {
  margin-top: 32px;
}

.range__toggle--max {
  left: 72%;
}

.filter__buttons {
  padding-top: 56px;
}

.catalog {
  padding: 0 70px;
}

.catalog__nav {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.catalog__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  color: #000000;
  width: 460px;
}

.catalog__select {
  margin: 0 70px 0 auto;
  width: 292px;
  padding: 11px 40px 12px 17px;
  border: 2px solid #e5e5e5;
  color: #333333;
  border-radius: 4px;
  font-family: "PT Sans", "Arial", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  background: url("../img/arrow-select.svg") no-repeat right 20px center;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
}

.catalog__select:hover {
  border-color: #68a2ca;
  cursor: pointer;
}

.catalog__select:disabled {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
}

.catalog__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 160px;
}

.sort-buttons__item {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 2px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sort-buttons__item--active,
.sort-buttons__item:hover,
.sort-buttons__item:active {
  border-color: #000000;
}

.sort-buttons__item:focus-visible {
  border-color: #68a2ca;
}

.catalog-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

.catalog-list__item {
  padding: 19px 19px 18px 19px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.catalog-list__link {
  display: block;
}

.catalog-list__title {
  margin: 12px 0 0 0;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  font-weight: bold;
}

.catalog-list__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.catalog-list__desc {
  margin: 0;
  font-size: 18px;
  line-height: 21px;
}

.catalog-list__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 20px;
  margin-top: 15px;
}

.catalog-list__buttons .button {
  padding: 8px 18px;
}

.catalog-list__rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.rating-list__star {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.rating-list__logo {
  background-image: url("../img/star.svg");
  width: 18px;
  height: 17px;
}

.rating-list__number {
  padding: 9px 22px 9px 23px;
  background-color: #f2f2f2;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.pagination__link {
  min-width: 60px;
  min-height: 60px;
  font-size: 20px;
  line-height: 36px;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #82b3d3;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.pagination__link:hover,
.pagination__link:focus {
  background-color: #68a2ca;
}

.pagination__link:active {
  color: rgba(255, 255, 255, 0.3);
}

.pagination-item-active .pagination__link {
  color: #000000;
  background-color: #f2f2f2;
}

.pagination__hero {
  width: 60px;
  height: 60px;
  font-size: 22px;
  line-height: 26px;
  padding-top: 15px;
  display: block;
  text-align: center;
}

.page-subcribe {
  background: none;
  padding-top: 155px;
}

.page-subcribe .main-title {
  color: #000000;
}

.page-subcribe .main-subtitle {
  color: #333333;
}

.page-subcribe input {
  background-color: #f2f2f2;
}
