body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #434455;
  margin: 0 auto;
}

body::selection {
  background-color: #000;
  color: #ffffff;
}

main {
  padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
  /* width: 100%; */
}

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

ul,
ol {
  margin: 0;
  padding-left: 0;
}

.btn-hover {
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
}

.btn-hover:hover {
  transform: scale(1.1);
  box-shadow: 0px 20px 35px 20px rgba(0, 0, 0, 0.15);
}

button {
  cursor: pointer;
  color: currentColor;
}

textarea {
  resize: none;
}

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

.cart {
  position: relative;
}

.counter-orders {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #000;
  color: #fff;
  font-size: 11px;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 2px 1px #494949;
  z-index: 1;
}

.text-list {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2e2f42;
  margin-bottom: 8px;
  text-align: center;
}

.p-list {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #434455;
  text-align: center;
}

.text-sections {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.11;
  letter-spacing: 0.02em;
  text-align: center;
  color: #2e2f42;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.container {
  max-width: 1158px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.product-proposition-container {
  position: relative;
  transition: transform 250ms ease-in-out;
}

.product-container {
  position: relative;
  transition: transform 250ms ease-in-out;
}

.modal-window {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(58, 58, 58, 0.72);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
}

.product-proposition-container:hover {
  transform: scale(0.9);
}

.product-proposition-container:hover .modal-window {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-container:hover {
  transform: scale(1.1);
}

.product-container:hover .modal-window {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.buttons-container-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.button-add-cart-modal {
  font-family: "Poppins", sans-serif;
  width: 207px;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
}

.button-add-favorite-modal {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  color: #fff;
  border: none;
  outline: none;
}

.button-account {
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* header */

.menu-item.dropdown {
  position: relative;
}

.nav-bar-container {
  position: fixed;
  padding-top: 20px;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.text-nav-menu {
  font-weight: 500;
}

.logo-name {
  font-weight: 700;
  font-size: 34px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-menu-container {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  flex-direction: column;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
}

.photo-logo {
  width: 100%;
}

.pages-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.icon-header {
  width: 28px;
  height: 28px;
}

.submenu-item {
  text-align: center;
  padding-bottom: 7px;
}

.link-submenu-item {
  font-size: 18px;
  font-weight: 700;
}

.link-submenu-item:hover {
  text-decoration: underline;
}

.link-submenu-item-info {
  font-size: 15px;
  font-weight: 700;
}

.link-submenu-item-info:hover {
  text-decoration: underline;
}

.list-navbar-info {
  position: relative;
}

.submenu {
  position: absolute;
  top: 40px;
  left: -46px;
  background-color: white;
  padding: 10px 0;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 100;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
    visibility 0.3s;
}

.submenu-info {
  position: absolute;
  top: 40px;
  left: -46px;
  background-color: white;
  padding: 10px 0;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 100;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
    visibility 0.3s;
}

.icon-search-button {
  outline: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.icon-cart-button {
  outline: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.header-search.active {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #434455;
}

.header-search {
  display: none;
  position: absolute;
  top: 100%; /* сразу под хедером */
  left: 0;
  width: 100%;
  background-color: white;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0px 4px 10px 0px #d3d3d3;
}

.input-search {
  padding: 8px 12px;
  font-size: 16px;
  width: 70%;
  outline: none;
  border: none;
  border-bottom: 1px solid #494949;
}

.nav-menu-container.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 10px 13px 0px #cecece;
}

.burger {
  display: flex;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* footer */

.footer {
  margin-top: 43px;
  text-align: center;
  padding: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.17);
}

.footer-all-info-blocks-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  padding-bottom: 47px;
}

.footer-all-info-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 0px;
  padding-bottom: 50px;
}

.footer-all-info-2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 100px;
}

.footer-info-dog {
  border-top: 1px solid rgba(217, 217, 217, 1);
}

.p-dog-footer {
  padding-top: 35px;
  font-size: 14px;
  font-weight: 400;
}

.footer-logo-container {
  padding-bottom: 50px;
}

.footer-address-container {
  padding-bottom: 20px;
}

.h3-footer {
  font-size: 24px;
  font-weight: 700;
}

.p-footer-address {
  font-size: 16px;
  font-weight: 400;
  color: rgba(159, 159, 159, 1);
}

.block-links {
  display: flex;
  flex-direction: column;
}

.title-link-footer {
  padding-bottom: 30px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(159, 159, 159, 1);
}

.links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.link-footer {
  font-size: 16px;
  font-weight: 500;
}

.contacts-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* modal-cart */

.cart {
  position: relative;
}

.cart-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 42px 0px;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 2px 5px 1px #ccc;
}

.link-cart-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-orders {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #000;
  color: #fff;
  font-size: 11px;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 2px 1px #494949;
  z-index: 1;
}

.backdrop-cart {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(46, 47, 66, 0.4);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  /* display: flex;
    justify-content: center;         способ номер 1 отцентрирование
    align-items: center; */
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.backdrop-cart.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1002;
}

body.is-open {
  overflow: hidden;
}

.modal-cart {
  width: 88%;
  height: 70%;
  background-color: #fcfcfc;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 20px 20px;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.backdrop-cart.is-open .modal-cart {
  transform: translateX(0);
}

.modal-close-cart {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.container-title-cart {
  border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.modal-title-cart {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000;
  text-align: left;
  margin-bottom: 16px;
}

.cart-products {
  flex: 1 1 auto;
  overflow-y: auto;
  max-height: calc(100vh - 160px);
}

.btn-remove-cart-item {
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  border: none;
  outline: none;
  width: 32px;
  height: 32px;
}

.checkout-summary-box {
  padding-top: 30px;
}

#summary-products {
  font-size: 20px;
  padding-bottom: 10px;
}

#summary-total {
  font-size: 20px;
}

.button-send-order-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

.button-send-order {
  font-family: "Roboto", sans-serif;
  padding: 10px;
  font-size: 20px;
  background-color: #404bbf;
  color: #fff;
  border: 2px solid #404bbf;
  border-radius: 15px;
  outline: none;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}

.button-send-order:hover {
  background-color: #605df3;
}

.cart-buttons-control {
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(-32%);
}

.cart-list-cart {
  padding-left: 15px;
  padding-right: 15px;
}

.cart-item-img {
  width: 80px;
  height: auto;
}

.info-container-cart {
  padding-bottom: 30px;
}

.button-remove-cart {
  font-family: "Roboto", sans-serif;
  position: relative;
  z-index: 3;
  color: #fff;
  outline: none;
  border: 1px solid #4d5ae5;
  border-radius: 30px;
  background-color: #4d5ae5;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}

.button-remove-cart:hover {
  background-color: #fff;
  color: red;
}

.cart-empty-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 75px;
}

.size-product-cart {
  margin: 4px 0;
  font-weight: 500;
  font-size: 14px;
}

.price-quantity-cart {
  margin: 9px 0;
  font-weight: 500;
  font-size: 16px;
}

.name-product-cart {
  font-size: 16px;
  margin: 2px 0;
  font-weight: 600;
}

.summary-product-cart {
  font-size: 16px;
  margin: 2px 0;
  font-weight: 600;
}

.gender-product-cart {
  font-size: 15px;
  font-weight: 600;
}

.cart-total {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 22px;
  padding-top: 20px;
}

.total-amount {
  padding-left: 30px;
  font-size: 16px;
  font-weight: 600;
}

.button-container {
  border-top: 1px solid rgba(217, 217, 217, 1);
  padding-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-checkout {
  font-family: "Poppins", sans-serif;
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
}

.btn-checkout:hover {
  transform: scale(1.1);
  box-shadow: 0px 20px 35px 20px rgba(0, 0, 0, 0.15);
}

.btn-checkout-cart {
  display: none;
  font-family: "Poppins", sans-serif;
  padding: 6px 15px;
  font-size: 13px;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
}

.btn-checkout-cart:hover {
  transform: scale(1.1);
  box-shadow: 0px 20px 35px 20px rgba(0, 0, 0, 0.15);
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 9999;
}

/* Когда лоадер активен */
.loading-container.active {
  opacity: 1;
  visibility: visible;
}

/* Спиннер */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 1158px) {
  img {
    width: auto;
  }
  .cart {
    position: relative;
  }

  .counter-orders {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 2px 1px #494949;
    z-index: 1;
  }

  .text-list {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #2e2f42;
    margin-bottom: 8px;
    text-align: center;
  }

  .p-list {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #434455;
    text-align: center;
  }

  .text-sections {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.11;
    letter-spacing: 0.02em;
    text-align: center;
    color: #2e2f42;
    text-transform: capitalize;
    margin-bottom: 30px;
  }

  .container {
    max-width: 1158px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }

  .product-proposition-container {
    position: relative;
    transition: transform 250ms ease-in-out;
  }

  .product-container {
    position: relative;
    transition: transform 250ms ease-in-out;
  }

  .modal-window {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(58, 58, 58, 0.72);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
  }

  .product-proposition-container:hover {
    transform: scale(1.1);
  }

  .product-proposition-container:hover .modal-window {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .product-container:hover {
    transform: scale(1.1);
  }

  .product-container:hover .modal-window {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .buttons-container-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }

  .button-add-cart-modal {
    font-family: "Poppins", sans-serif;
    width: 207px;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
    transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
  }

  .button-add-favorite-modal {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
  }

  .button-account {
    background-color: transparent;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  /* header */

  .menu-item.dropdown {
    position: relative;
  }

  .nav-bar-container {
    position: fixed;
    padding-top: 20px;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    z-index: 1000;
  }

  .nav-bar {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
  }

  .text-nav-menu {
    font-weight: 500;
  }

  .logo-name {
    font-weight: 700;
    font-size: 34px;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .nav-menu-container {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    top: 0;
    gap: 70px;
    background-color: transparent;
  }

  .photo-logo {
    width: 100%;
  }

  .pages-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .icon-header {
    width: 28px;
    height: 28px;
  }

  .submenu-item {
    text-align: center;
    padding-bottom: 7px;
  }

  .link-submenu-item {
    font-size: 18px;
    font-weight: 700;
  }

  .link-submenu-item:hover {
    text-decoration: underline;
  }

  .link-submenu-item-info {
    font-size: 15px;
    font-weight: 700;
  }

  .link-submenu-item-info:hover {
    text-decoration: underline;
  }

  .list-navbar-info {
    position: relative;
  }

  .menu-item.dropdown:hover .submenu,
  .menu-item.dropdown:hover .submenu-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .submenu,
  .submenu-info {
    position: absolute;
    top: 40px;
    left: -46px;
    background-color: white;
    padding: 10px 0;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25),
      0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
      visibility 0.3s;
  }

  .icon-search-button {
    outline: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
  }

  .icon-cart-button {
    outline: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
  }

  .header-search.active {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #434455;
  }

  .header-search {
    display: none;
    position: absolute;
    top: 100%; /* сразу под хедером */
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0px 4px 10px 0px #d3d3d3;
  }

  .input-search {
    padding: 8px 12px;
    font-size: 16px;
    width: 70%;
    outline: none;
    border: none;
    border-bottom: 1px solid #494949;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
  }

  .burger span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
  }

  /* footer */

  .footer {
    margin-top: 43px;
    padding: 48px 100px;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.17);
  }

  .footer-all-info-blocks-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 47px;
  }

  .footer-all-info-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 136px;
    padding-bottom: 0;
  }

  .footer-all-info-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 123px;
  }

  .footer-info-dog {
    border-top: 1px solid rgba(217, 217, 217, 1);
  }

  .p-dog-footer {
    padding-top: 35px;
    font-size: 16px;
    font-weight: 400;
  }

  .footer-logo-container {
    padding-bottom: 50px;
  }

  .footer-address-container {
    padding-bottom: 0;
  }

  .h3-footer {
    font-size: 24px;
    font-weight: 700;
  }

  .p-footer-address {
    font-size: 16px;
    font-weight: 400;
    color: rgba(159, 159, 159, 1);
  }

  .block-links {
    display: flex;
    flex-direction: column;
  }

  .title-link-footer {
    padding-bottom: 55px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(159, 159, 159, 1);
  }

  .links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 46px;
  }

  .link-footer {
    font-size: 16px;
    font-weight: 500;
  }

  .contacts-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  /* modal-cart */

  .cart {
    position: relative;
  }

  .cart-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 42px 0px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 5px 1px #ccc;
  }

  .link-cart-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .counter-orders {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 2px 1px #494949;
    z-index: 1;
  }

  .backdrop-cart {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: rgba(46, 47, 66, 0.4);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* display: flex;
    justify-content: center;         способ номер 1 отцентрирование
    align-items: center; */
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
      visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .backdrop-cart.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1002;
  }

  body.is-open {
    overflow: hidden;
  }

  .modal-cart {
    width: 25%;
    height: 70%;
    background-color: #fcfcfc;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px 20px;
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  .backdrop-cart.is-open .modal-cart {
    transform: translateX(0);
  }

  .modal-close-cart {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
      color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .container-title-cart {
    border-bottom: 1px solid rgba(217, 217, 217, 1);
  }

  .modal-title-cart {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #000;
    text-align: left;
    margin-bottom: 16px;
  }

  .cart-products {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: calc(100vh - 160px);
  }

  .btn-remove-cart-item {
    font-family: "Poppins", sans-serif;
    background-color: transparent;
    border: none;
    outline: none;
    width: 32px;
    height: 32px;
  }

  .checkout-summary-box {
    padding-top: 30px;
  }

  #summary-products {
    font-size: 20px;
    padding-bottom: 10px;
  }

  #summary-total {
    font-size: 20px;
  }

  .button-send-order-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
  }

  .button-send-order {
    font-family: "Roboto", sans-serif;
    padding: 10px;
    font-size: 20px;
    background-color: #404bbf;
    color: #fff;
    border: 2px solid #404bbf;
    border-radius: 15px;
    outline: none;
    transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
  }

  .button-send-order:hover {
    background-color: #605df3;
  }

  .cart-buttons-control {
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(-32%);
  }

  .cart-list-cart {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cart-item-img {
    width: 100px;
    height: auto;
  }

  .info-container-cart {
    padding-bottom: 30px;
  }

  .button-remove-cart {
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 3;
    color: #fff;
    outline: none;
    border: 1px solid #4d5ae5;
    border-radius: 30px;
    background-color: #4d5ae5;
    transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
  }

  .button-remove-cart:hover {
    background-color: #fff;
    color: red;
  }

  .cart-empty-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 75px;
  }

  .size-product-cart {
    margin: 4px 0;
    font-weight: 500;
    font-size: 14px;
  }

  .price-quantity-cart {
    margin: 9px 0;
    font-weight: 500;
    font-size: 16px;
  }

  .name-product-cart {
    font-size: 16px;
    margin: 2px 0;
    font-weight: 600;
  }

  .summary-product-cart {
    font-size: 16px;
    margin: 2px 0;
    font-weight: 600;
  }

  .gender-product-cart {
    font-size: 15px;
    font-weight: 600;
  }

  .cart-total {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 22px;
    padding-top: 20px;
  }

  .total-amount {
    padding-left: 30px;
    font-size: 16px;
    font-weight: 600;
  }

  .button-container {
    border-top: 1px solid rgba(217, 217, 217, 1);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .btn-checkout {
    font-family: "Poppins", sans-serif;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
    transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
  }

  .btn-checkout:hover {
    transform: scale(1.1);
    box-shadow: 0px 20px 35px 20px rgba(0, 0, 0, 0.15);
  }

  .btn-checkout-cart {
    display: block;
    font-family: "Poppins", sans-serif;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    border: none;
    outline: none;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15);
    transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
  }

  .btn-checkout-cart:hover {
    transform: scale(1.1);
    box-shadow: 0px 20px 35px 20px rgba(0, 0, 0, 0.15);
  }
}
