/* ===================================== CTA & Components ===================================== */

.custom-btn {
  position: relative;
  font-family: var(--heading-font);
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #d412ce, #144576, #2b6cb9);
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.08rem;
  width: fit-content;
  padding: 0.8rem 1.8rem;
  outline: none;
  border: none;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  z-index: 2;
}

.custom-btn:hover::before {
  left: 130%;
}

/* ===================================== Product page components ===================================== */

.info-text {
  position: relative;
  font-family: var(--heading-font);
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #d412ce, #144576, #2b6cb9);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.08rem;
  width: fit-content;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.info-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  z-index: 2;
}

.info-text:hover::before {
  left: 130%;
}

.info-text:hover {
  box-shadow: 0 8px 8px 0 rgba(36, 37, 47, 0.2);
}

.contact-hotline {
  font-family: var(--heading-font);
  width: fit-content;
  text-align: center;
  text-decoration: none;
  color: black;
  cursor: auto;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 1000px;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  margin-bottom: 0;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
}

.contact-hotline:hover {
  box-shadow: 0 8px 8px 0 rgba(36, 37, 47, 0.2);
}

/* ===================================== Accordion ===================================== */

.accordion-item {
  border-radius: 0 !important;
}

.accordion-body {
  font-family: var(--heading-font);
  min-height: 150px;
}

.accordion-body a {
  border-bottom: 1px solid transparent;
}

.accordion-body a:hover {
  border-bottom: 1px solid black;
}

.accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-button:focus,
.accordion-button.active,
.accordion-button.collapsed {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ===================================== Contact Form ===================================== */

.contact-input {
  font-family: var(--body-font);
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.8rem 1.1rem;
  border-radius: 6px;
  font-weight: 400;
  width: 100%;
}

@media (max-width: 768px) {
  .info-text {
    font-size: 0.85rem;
  }
}



.social-share {
  text-align: center;
  margin: 40px 0 20px;
}

.facebook-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  background-color: #1877F2;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.facebook-share-btn:hover {
  background-color: #145dbf;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.fb-icon {
  width: 18px;
  height: 18px;
  fill: #fff;
}

