.variants {
  display: none !important;
}

#quantity,
.mb-3.col-12:first-of-type {
  display: none !important;
}

.btn-primary {
  display: none !important;
}

.btn-outline-primary {
  display: none !important;
}

.addon-item {
  display: none !important;
}

  body, html {
    overflow-x: hidden;
  }

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
}

@media (min-width: 640px) {

  /* sm breakpoint */
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title-background-text {
  position: absolute;
  bottom: 0;
  left: 0;
  user-select: none;
  white-space: nowrap;
  background: linear-gradient(to bottom, white, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3.75rem;
  font-weight: bold;
  opacity: 0.15;
  line-height: normal;
}
.btn-outline-primary-gradient {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, #0080ff 0%, #0080ff 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 110, 255, 0.3);
}

.btn-outline-primary-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0080ff 0%, #0080ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-outline-primary-gradient:hover::before {
  opacity: 1;
}

.btn-outline-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 110, 255, 0.4);
}

.btn-outline-primary-gradient span,
.btn-outline-primary-gradient svg {
  position: relative;
  z-index: 1;
}