@charset "UTF-8";

.sig {
    display: block;
    margin-top: 2rem;
    text-align: right;
}

.fixed-shop-btn {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 9999;

  width: 180px;
  -webkit-filter: drop-shadow(0 8px 18px rgba(111, 98, 92, 0.15));
  filter: drop-shadow(0 12px 28px rgba(111, 98, 92, 0.22));

  transition: all 0.3s ease;
}

.fixed-shop-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.fixed-shop-btn:hover {
  transform: translateY(-4px);
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .fixed-shop-btn {
    width: 125px;
    right: 1.2rem;
    bottom: 1.2rem;
  }
}