/** Shopify CDN: Minification failed

Line 66:2 Unexpected "}"
Line 133:0 Expected "}" to go with "{"

**/
/* ===== TOATE PRODUSELE – BANDĂ DOAR PE TEXT ===== */

.t4s-btn-all-products {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;   /* 🔥 IMPORTANT – text pe un singur rând */

  padding: 10px 26px;

  background: rgba(255, 255, 255, 0.18);
  color: #000;

  font-size: 18px;
  font-weight: 600;      /* 🔥 puțin mai îngroșat */
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 2px;
  z-index: 9999;

  transition: background 0.25s ease, color 0.25s ease;
}

/* ===== MOBILE – bandă perfect centrată full width ===== */
@media (max-width: 768px) {
  .t4s-btn-all-products {
    position: fixed; /* 🔥 cheie */
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) !important;

    width: 100vw;
    max-width: 100vw;

    padding: 14px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.22);
    border-radius: 0;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;

    z-index: 9999;
  }
}
  }
@media (max-width: 768px) {
  .t4s-btn-all-products {
    font-size: 14px;   /* mai micuț, elegant */
    letter-spacing: 0.8px;
    font-weight: 600; /* rămâne ușor îngroșat */
  }
}



.t4s-btn-all-products:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff !important;
}
/* permite click pe butonul TOATE PRODUSELE */
.t4s-btn-all-products {
  pointer-events: auto !important;


/* ===== FIX CLICK IMAGINE PRODUS – KALLES ===== */

/* imaginea produsului trebuie sa fie clickabila */
.t4s-product-img-wrap a,
.t4s-product-img-wrap,
.t4s-product-img {
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

/* orice overlay / heading NU mai blocheaza click */
.t4s-content-wrap,
.t4s-top-heading,
.heading-testimonials-star,
.t4s-des-title,
.t4s-section-title {
  pointer-events: none !important;
}

/* iconitele raman clickabile */
.t4s-product-btns,
.t4s-pr-item-btn,
.t4s-pr-wishlist,
.t4s-pr-compare {
  pointer-events: auto !important;
}
/* PERMITE CLICK PE IMAGINILE DE PRODUSE */
.t4s-product-card,
.t4s-product-card * {
  pointer-events: auto !important;
}

/* DEZACTIVEAZĂ overlay-urile invizibile */
.t4s-product-card::before,
.t4s-product-card::after {
  pointer-events: none !important;
}

/* imaginea produsului să fie clickabilă */
.t4s-product-card a,
.t4s-product-card a img {
  pointer-events: auto !important;
  position: relative;
  z-index: 2;
}

