/** Shopify CDN: Minification failed

Line 79:0 Expected "}" to go with "{"

**/
.sticky-atc-bar {
  position: fixed;
  bottom: 3rem;
  inset-inline-end: 3rem;
  width: min(85vw, 41.8rem);
  z-index: 29;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(var(--color-border), var(--color-border-alpha, 1));
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s all;
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  visibility: hidden;
  padding: 1.2rem;
}
.sticky-atc-bar--show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.sticky-atc-bar__product-image {
  width: 7rem;
}
@media (max-width: 767.98px) {
  .sticky-atc-bar {
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
    box-shadow: inset 0 1px 0 0 rgba(var(--color-border), var(--color-border-alpha, 1));
    border-radius: 0;
  }
  
}

/* ===============================
   DESKTOP – Rahmen rundherum
   =============================== */
@media (min-width: 768px) {
  .sticky-atc-bar {
    border: 2px solid #812424;
    box-shadow: none;
    border-radius: 1.2rem; /* optional, kannst du anpassen */
  }
}

@media (max-width: 767.98px) {
  .sticky-atc-bar {
    border: none;
    box-shadow: inset 0 2px 0 0 #812424;
    border-radius: 0;

   
}


/* ===============================
   STICKY ATC – BUTTON ROT
   =============================== */
.sticky-atc-bar .product-form__submit {
  background-color: #812424;
  border-color: #812424;
  color: #fff;
}

/* Hover (Desktop) */
@media (hover: hover) {
  .sticky-atc-bar .product-form__submit:hover {
    background-color: #6f1f1f;
    border-color: #6f1f1f;
    color:rgb(0, 0, 0);
  }
}


