.footer__nav-link--underlined {
  text-decoration: underline;
}

.footer__nav-social-icon {
  margin-right: 10px;
}

.footer-second__copyright {
  font-size: 14px;
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

#hover_bkgr_fricc_add.footer__popup-wrapper {
  display: none !important;
}

.cart-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1200;
  width: min(520px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -18px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.cart-toast__panel {
  position: relative;
  background: #fff;
  color: #231e1b;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(26, 20, 17, 0.24);
  padding: 24px 22px 18px;
}

.cart-toast__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.cart-toast__close span {
  position: absolute;
  top: 14px;
  left: 3px;
  width: 24px;
  height: 2px;
  background: #231e1b;
  border-radius: 999px;
}

.cart-toast__close span:first-child {
  transform: rotate(45deg);
}

.cart-toast__close span:last-child {
  transform: rotate(-45deg);
}

.cart-toast__title {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  padding-right: 40px;
}

.cart-toast__divider {
  height: 1px;
  background: rgba(35, 30, 27, 0.28);
  margin: 16px 0;
}

.cart-toast__product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
}

.cart-toast__image-wrap {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f3f1;
}

.cart-toast__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-toast__product-content {
  min-width: 0;
}

.cart-toast__product-name {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 24px;
  word-break: break-word;
}

.cart-toast__product-price,
.cart-toast__total-price,
.cart-toast__total-label {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.cart-toast__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 10px;
}

.cart-toast__total {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: max-content;
}

.cart-toast__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 188px;
  min-width: 188px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #ff7326;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cart-toast__button:hover {
  background: #ff6410;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .cart-toast {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .cart-toast__panel {
    border-radius: 22px;
    padding: 22px 16px 16px;
  }

  .cart-toast__title {
    font-size: 18px;
    padding-right: 34px;
  }

  .cart-toast__divider {
    margin: 14px 0;
  }

  .cart-toast__product {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .cart-toast__image-wrap {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .cart-toast__product-name {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .cart-toast__product-price,
  .cart-toast__total-price,
  .cart-toast__total-label {
    font-size: 15px;
  }

  .cart-toast__footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 8px;
  }

  .cart-toast__button {
    width: 160px;
    min-width: 160px;
    min-height: 42px;
    font-size: 11px;
    border-radius: 10px;
    padding: 10px 12px;
  }
}
