@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Black.ttf");
  font-weight: 800;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

html {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
  overflow-x: hidden;
  background: #282828;
}

body {
  overflow-x: hidden;
  min-width: 360px;
}

.btn {
  transition: 0.2s;
  box-shadow: 0px 0px 0px 0px #000000;
}

.btn:hover {
  transform: translateY(-2px) translateX(-2px);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.662745098);
}

.btn:active {
  transform: translateY(0px) translateX(0px);
  box-shadow: 0px 0px 0px 0px #000000;
}

.btn_primary:active {
  background-color: #c50000;
}

input {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

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

.container__small {
  padding-left: 32px;
}

.header {
  padding: 6px 0;
  display: flex;
}

.header__content {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 16px;
}

.header__content-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header__logo {
  width: 169px;
  height: 169px;
  overflow: hidden;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__content-top {
  font-size: 22px;
}

.header__title {
  font-size: 68px;
  font-weight: 100;
  color: #fdc403;
  text-align: center;
  margin-bottom: 27px;
}

.header__title_mobile {
  display: none;
  font-size: 8px;
  font-weight: 100;
  color: #fdc403;
  text-align: center;
  margin-bottom: 27px;
}

.header__search-label {
  opacity: 0;
  position: absolute;
  z-index: -2;
  width: 1px;
  height: 1px;
}

.header__search {
  height: 40px;
  max-width: 458px;
  width: 100%;
  display: flex;
}

.header__search-input {
  font-size: 18px;
  flex-grow: 2;
  border-radius: 8px 0 0 8px;
  border: 1px solid #5a5a5a;
  padding: 0 10px;
}

.header__search-btn {
  cursor: pointer;
  width: 80px;
  background-image: url("./img/search-icon.svg");
  background-position: 50%;
  background-size: 20px;
  background-repeat: no-repeat;
  height: 100%;
  padding: 0 20px;
  border-radius: 0 8px 8px 0;
  border: 1px solid #5a5a5a;
  border-left: 0;
  transition: 0.3s;
}

.header__search-btn:hover {
  background-color: #dadada;
}

.header__search-btn:active {
  background-color: #c5c5c5;
}

.contact-item_address,
.contact-item_mail {
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-item_address::before {
  width: 23px;
  height: 28px;
  content: "";
  display: block;
  background: url("./img/location.svg") 50%/contain no-repeat;
}

.contact-item_mail::before {
  width: 25px;
  height: 26px;
  content: "";
  display: block;
  background: url("./img/mail.svg") 50%/contain no-repeat;
}

.nav {
  background: #fdc403;
  border-radius: 10px;
  padding: 15px 100px;
}

.nav__list {
  list-style: none;
  color: #000000;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: nowrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__item {
  transition: 0.3s;
}

.nav__item:hover {
  transform: scale(1.2);
}

.stocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 20px 0;
}

.stocks__item {
  position: relative;
  border: 6px solid #3b3b3b;
  height: 180px;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 5px;
  overflow: hidden;
}

.stocks__item:hover .stocks__item-title {
  min-width: 100%;
  background: rgba(255, 0, 0, 0);
  color: #ff0000;
}

.stocks__item-title {
  position: absolute;
  top: 2px;
  left: 0;
  min-width: 70%;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background-color: #ff0000;
  padding: 5px 14px;
  text-wrap: nowrap;
  text-align: center;
  transition: 0.5s;
}

.stocks__item-text {
  color: #000000;
  text-align: center;
  text-wrap: nowrap;
}

.stocks__item-img_wrapper {
  height: 60%;
}

.stocks__item-img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero {
  height: 330px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  border: 2px solid #000000;
}

.hero__img_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__product {
  padding: 25px 12px;
  background-color: #ffffff;
  color: #000000;
  display: flex;
}

.hero__product-img_wrapper {
  width: 50%;
}

.hero__product-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-price__item {
  max-width: 280px;
  display: flex;
  justify-content: space-between;
  text-wrap: nowrap;
}

.product-price__item-dash {
  overflow: hidden;
  flex-shrink: 2;
  display: block;
}

.hero__product-title {
  font-size: 24px;
}

.btn_primary {
  font-size: 24px;
  padding: 9px 30px;
  border-radius: 5px;
  color: #ffffff;
  background-color: #ff0000;
}

.btn_hero {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
}

.hero__product-desc {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why__title {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}

.why__item-icon {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #a48900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.why__item:hover .why__item-icon {
  transform: scale(0.95);
}

.why__item-icon svg {
  transition: 0.3s;
}

.why__item:hover .why__item-icon svg {
  transform: scale(1.5);
}

.why__item-title {
  text-wrap: nowrap;
  font-size: 18px;
  text-align: center;
}

.why__items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about {
  margin: 30px 0;
}

.section__title {
  gap: 30px;
  display: flex;
  align-items: center;
}

.title_dash {
  flex-grow: 2;
  background-color: #fdc403;
  height: 2px;
  width: 100%;
  margin-top: 5px;
}

.section__title-text {
  text-wrap: nowrap;
  font-weight: 500;
  font-size: 30px;
}

.about__info {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__info-img-wrapper {
  width: 100%;
  height: 330px;
  background: #6e6e6e;
  overflow: hidden;
}

.about__info-img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__info-text {
  font-size: 18px;
  line-height: 23px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about__title {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 5px;
}

.contacts {
  padding-bottom: 30px;
}

.contanct-item {
  font-size: 22px;
  transition: 0.3s;
}

.contanct-item:hover {
  color: #fdc403;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contanct-item {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.location_img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background: url("./img/location.svg") 50%/contain no-repeat;
}

.mail_img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background: url("./img/mail.svg") 50%/contain no-repeat;
}

.phone_img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background: url("./img/phone.svg") 50%/contain no-repeat;
}

.contacts__info-working {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 30px;
}

.info__working-title {
  font-size: 26px;
}

.info__working,
.info__working-weekend {
  display: flex;
  align-items: center;
  max-width: 300px;
  gap: 20px;
  justify-content: space-between;
}

.info__working-weekend {
  color: #fdc403;
}

.contacts__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 87px;
  margin-top: 30px;
}

.map {
  background: #6e6e6e;
  height: 350px;
}

.footer {
  padding: 30px 0;
}

.footer__items {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
}

.copyright {
  font-size: 17px;
  padding: 15px;
  text-align: center;
  background: #2d2d2d;
  border: 1px solid #393939;
  border-left: 0;
  border-right: 0;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
}

.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #ffffff;
}

.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #ffffff;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

.menu-list {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 42px 10px;
  margin: 0;
  background: #fdc403;
  list-style-type: none;
  transform: translateX(-100%);
  transition: 0.3s;
  width: 70%;
  min-height: 100vh;
  text-align: center;
  z-index: 20;
  color: #000000;
}

.menu-item {
  display: block;
  padding: 8px;
  color: #000000;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

.desktop-hidden {
  display: none;
}

.catalog {
  margin-top: 30px;
}

.catalog__items,
.product__items {
  margin: 25px 0px;
  min-height: 446px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.catalog__item-img {
  width: 100%;
  opacity: 0.53;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.catalog__item,
.product__item {
  border: 1px solid #fff;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 7px;
  transition: 0.3s;
}

.product__item {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product__item-img {
  border: 1px solid #fff;
  border-radius: 15px;
  margin: 6% 7%;
  width: 87%;
  opacity: 0.73;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.product__item-desc {
  border: 0px solid #fff;
  margin: 2% 7%;
  width: 87%;
  padding: 7px;
  flex-grow: 5;
}

.details__item-desc {
  border: 0px solid #fff;
  padding: 7px;
  flex-grow: 5;
}

.details-item .details__item-desc {
  flex-grow: 0;
}

.product__item-btn {
  border-radius: 15px;
  border: 1px solid #fff;
  margin: 12% 7%;
  width: 87%;
  padding: 17px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  background: #fff;
  transition: 0.3s;
}

.details__item-btn {
  border-radius: 15px;
  border: 1px solid #fff;
  padding: 17px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  background: #fff;
  transition: 0.3s;
}

.product__item-btns_wrapper a {
  display: block;
}

.product__item-btn_basket {
  border-radius: 15px;
  width: 100%;
  padding: 17px 0;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #282828;
  background: #fdc403;
  transition: 0.3s;
}

.details__item-btn:hover,
.product__item-btn:hover {
  background: #fdc403;
}

.product__item-prices {
  border: 0px solid #fff;
  margin: 2% 7%;
  width: 87%;
  padding: 7px;
  font-size: 17px;
  font-weight: 500;
  color: #fdc403;
}

.details__item-prices {
  border: 0px solid #fff;
  padding: 7px;
  font-size: 17px;
  font-weight: 500;
  color: #fdc403;
}

.catalog__item:hover,
.product__item:hover {
  transform: scale(1.0377);
}

.product__item-btns_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 5px;
  width: 87%;
  margin: 30px auto;
}

.details-item .product__item-btns_wrapper {
  width: 100%;
  margin: 0;
}

.counter {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  background: rgba(255, 255, 255, 0.8980392157);
  border-radius: 15px;
}

.counter__descrement,
.counter__increment {
  width: 30%;
  border: 0;
  border-radius: 0 15px 15px 0;
  background: rgba(0, 0, 0, 0);
  font-size: 17px;
  font-weight: 500;
  transition: 0.2s;
}

.counter__descrement {
  border-radius: 15px 0 0 15px;
}

.counter__descrement:hover,
.counter__increment:hover {
  background: rgba(45, 45, 45, 0.0549019608);
}

.counter__descrement:active,
.counter__increment:active {
  background: rgba(45, 45, 45, 0.3019607843);
}

.counter__value {
  padding: 17px 0;
}

.catalog__item-title {
  font-size: 14px;
  text-transform: uppercase;
  background: #fdc403;
  color: #111;
  position: absolute;
  max-width: 196px;
  text-align: right;
  bottom: 17px;
  right: 17px;
  border: 1px solid #fff;
  padding: 7px 15px;
}


.details-wrapper {
  width: 100%;
  border: 1px solid #fff;
  margin-top: 33px;
  margin-bottom: 73px;
  padding: 33px;
  display: grid;
  gap: 33px;
  grid-template-columns: 3fr 2fr;
}

.details-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.details-img {
  width: 100%;
  padding: 5px;
  border: 1px solid #fff;
}

.details-desc {
  padding: 25px;
  border: 1px solid #fff;
}

.catalog-header {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.catalog-header__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 47px 11px 0 11px;
}

.select-item {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  outline: none;
}
.select-item:checked {
  background-color: #fdc403;
  border-color: #fdc403;
}
.select-item:checked::after {
  content: "✔";
  color: #000;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkout-btn {
  display: block;
  text-align: center;
  background: #fdc403;
  color: #000;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-width: 30%;
  height: 50px;
  border-radius: 15px;
  margin-top: 47px;
  transition: 0.5s all;
}

.checkout-btn:hover {
  transform: scale(1.1);
}

.selection-items {
  display: flex;
  gap: 20px;
  color: rgb(133, 132, 132);
  font-size: 16px;
}
.selection-items input {
  width: 25px;
  height: 25px;
}
.selection-items label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.selection-items p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.delete-all {
  display: flex;
  align-items: center;
  cursor: default;
  border: none;
  background: none;
  font-size: 16px;
  color: rgb(133, 132, 132);
  padding: 3px;
  border-radius: 5px;
}

.delete-all:active {
  color: #000;
  background-color: #fdc403;
}
.delete-all:active path {
  fill: #000;
}

.delete-icon {
  width: 35px;
  height: 35px;
}
.delete-icon path {
  fill: rgb(133, 132, 132);
}

.catalog__inside {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cart-items {
  width: 100%;
  border: 0px solid red;
  color: #fff;
  font-size: 11px;
  padding: 47px 11px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  width: 100%;
  border: 0px solid red;
  color: #fff;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 1px;
  position: relative;
  padding-left: 30px;
}
.cart-item input {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
}
.cart-item__details {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-left: 10px;
}
.cart-item__summary {
  display: flex;
  align-items: start;
  height: 100%;
  flex-direction: column;
  gap: 20px;
}
.cart-item__count {
  background-color: #f5f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item__count button, .cart-item__count span {
  font-size: 20px;
  color: #000;
}
.cart-item__count button {
  width: 30px;
  height: 30px;
  border: none;
}
.cart-item__count span {
  text-align: center;
}
.cart-item img {
  width: 100px;
}
.cart-item button:active {
  background-color: #fdc403;
}

.cart-item__img-wrapper {
  padding: 6px;
  border-left: 1px solid #fff;
  color: #fff;
  font-size: 11px;
}

.cart-item__title {
  border: 0px solid #fff;
  color: #fff;
  font-size: 17px;
}

.cart-item__btn-wrapper {
  width: 100%;
  max-width: 100px;
  border: 0px solid #fff;
  color: #fff;
  font-size: 11px;
}

.cart-item__price {
  border: 0px solid #fff;
  color: #fff;
  font-size: 15px;
}

.cart-summary {
  min-width: 30%;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-summary h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.cart-summary .total {
  font-size: 17px;
  font-weight: bold;
}

@media (max-width: 1140px) {
  .header__logo {
    width: 100px;
    height: 100px;
  }
  .container__small {
    padding: 0;
  }
  .container {
    padding: 0 10px;
  }
  .header__content-bottom {
    display: none;
  }
  .header__title_mobile {
    display: block;
    text-align: start;
    font-size: 60px;
  }
  .header {
    align-items: center;
  }
  .header__content {
    padding: 0;
  }
  .hero {
    height: auto;
    grid-template-columns: 2fr 1fr;
  }
  .contacts__info {
    padding-left: 30px;
    text-wrap: nowrap;
  }
  .details-wrapper {
    padding: 15px;
    gap: 15px;
  }
  .details-item {
    gap: 15px;
  }
  .details-desc {
    padding: 10px;
  }
  .catalog-header,
  .catalog__inside {
    gap: 40px;
  }
}
@media (max-width: 980px) {
  .contact-item_address {
    display: none;
  }
  .contact-item_mail {
    display: none;
  }
  .header__search {
    max-width: none;
    margin: 0 30px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background: #282828;
    padding: 0 10px;
  }
  .mobile_hidden {
    display: none;
  }
  .desktop-hidden {
    display: block;
  }
  .header__logo {
    width: 60px;
    height: 60px;
  }
  .header__title_mobile {
    margin: 60px 0;
    margin-top: 80px;
  }
  .hero {
    height: auto;
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .stocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .why__items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .about__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
  }
  .footer__items {
    display: none;
  }
  .why__item {
    width: 30%;
  }
  .catalog__items,
  .product__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .details-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 750px) {
  .about__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
  }
  .about__info-img-wrapper {
    grid-row: 1;
  }
  .contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 87px;
    margin-top: 30px;
  }
  .catalog__items,
  .product__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .checkout-btn {
    height: auto;
    min-width: 27%;
  }
  .checkout-btn a {
    font-size: 14px;
  }
  .cart-item__title {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .product-price__item-dash {
    display: none;
  }
  .product-price__item {
    flex-direction: column;
  }
  .section__title-text {
    text-wrap: balance;
    font-weight: 500;
    font-size: 25px;
	min-width: 77%;
  }
  .product-price__item span:last-child {
    text-align: end;
  }
  .why {
    display: none;
  }
  .details-wrapper {
    grid-template-columns: 1fr;
  }
  .catalog-header,
  .catalog__inside {
    width: 97%;
    gap: 0px;
  }
  .selection-items {
    font-size: 12px;
  }
  .selection-items button {
    font-size: 12px;
  }
  .delete-icon {
    width: 29px;
    height: 29px;
  }
  .checkout-btn {
    font-size: 14px;
    min-width: 20%;
    padding: 10px;
  }
  .cart-item__details {
    gap: 10px;
  }
  .cart-item__details img {
    width: 75px;
  }
  .cart-item__title {
    font-size: 12px;
  }
  .cart-item__price {
    font-size: 12px;
  }
  .cart-item__count button {
    width: 30px;
    height: 30px;
    font-size: 27px;
  }
  .cart-summary {
    display: flex;
    flex-direction: column;
    padding: 47px 10px;
  }
  .cart-summary h3 {
    font-size: 16px;
  }
  .cart-summary p {
    font-size: 12px;
  }
  .cart-summary .total {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .header__search {
    display: none;
  }
  .header__title_mobile {
    display: block;
    text-align: center;
    font-size: 36px;
  }
  .stocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stocks__item-title {
    font-size: 16px;
    padding-left: 5px;
  }
  .hero__product-desc {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
  }
  .why__item {
    width: 100%;
  }
  .catalog__items,
  .product__items {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .catalog-header,
  .catalog__inside {
    width: 100%;
    gap: 50px;
  }
  .catalog-header__left {
    width: 70%;
    padding: 47px 11px 0 0px;
  }
  .selection-items {
    text-align: center;
  }
  .selection-items input {
    width: 30px;
  }
  .checkout-btn {
    width: 30%;
  }
  .cart-items {
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .cart-items {
    width: 70%;
  }
  .cart-summary {
    width: 30%;
  }
  .cart-item {
    flex-direction: row;
    gap: 5px;
    text-align: center;
  }
  .cart-item__details {
    flex-direction: column;
    margin: 0;
    align-items: center;
    width: 50%;
    gap: 10px;
  }
  .cart-item__summary {
    align-items: center;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */

.catalog__item-titless {

  text-transform: uppercase;
  font-weight: 500;
  color: #111;
  position: absolute;
  
  text-align: left;
  top: 17px;
  left: 17px;
  color:#fff;
  padding: 7px 15px;
    font-size: 29px !important;
}
.menu__item-details {
	width:400px;height: 443px;border: 1px solid #fff;
	float:left;
}
.menu__item-details-text {
	max-width:660px;
	float:left;font-weight: 100;font-size: 24px;color:#777;
	padding:26px;border-left: 0px solid #555;border-bottom: 1px solid #555;margin-left:22px;
}
.menu__item-details-textss {
	max-width:860px;
	float:left;font-weight: 100;font-size: 24px;color:#777;
	padding:26px;border-left: 0px solid #555;border-bottom: 1px solid #555;margin-left:22px;
}
.menu__item-details-textzz {
	max-width:1260px;
	float:left;font-weight: 100;font-size: 24px;color:#777;
	padding:26px;border-left: 0px solid #555;border-bottom: 1px solid #555;margin-left:22px;
}
.menu__item-details-text span {
	font-size:67px;font-weight: 100;color:#222;
}

.menu__item-img-details {
	width: 100%;padding:11px;border-left: 1px solid #555;border-bottom: 1px solid #555;
	object-fit: cover;height: 383px;
	
}