html {
  scroll-behavior: smooth;
}

/* Product image */
.product-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .product-image {
    max-height: 280px;
    object-fit: cover;
    object-position: center;
  }
  
  main.mt-5 {
    margin-top: 0.5rem !important;
  }
}
/* FAQ Accordion */
.collapsible-link {
  padding-right: 50px !important;
  position: relative;
}

.collapsible-link::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.collapsible-link::after {
  content: '';
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.collapsible-link[aria-expanded='true']::after {
  transform: translateY(-50%) rotate(90deg);
}

.collapsible-link[aria-expanded='true']::before {
  transform: translateY(-50%) rotate(180deg);
}