.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;
}

.mb-3.col-12:has(.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, #960822 0%, #383838 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(150, 8, 34, 0.3);
}

.btn-outline-primary-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #424242 0%, #474747 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(75, 75, 75, 0.4);
}

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

/* ============================= */
/* SHARED GRADIENT ANIMATION     */
/* ============================= */

@keyframes syncedGradientMove{
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}


/* ============================= */
/* HERO / MAIN GRADIENT TEXT     */
/* ============================= */

.hero-color.gradient-animate,
.red-gradient-animate {
  display: inline;
  background-image: linear-gradient(
    120deg,
    #960822 0%,
    #960822 35%,
    #ffffff 50%,
    #960822 65%,
    #960822 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: syncedGradientMove 3.5s ease-in-out infinite alternate;
}


/* Smaller emphasis word (PRODUCTS) */
.hero-small{
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: 0.05em;
  vertical-align: middle;
}


/* ============================= */
/* PAYMENT CTA TITLE GRADIENT    */
/* (MATCHES HERO RED INTENSITY)  */
/* ============================= */

.payment-cta-title.payment-cta-gradient{
  background-image: linear-gradient(
    120deg,
    #960822 0%,
    #960822 35%,
    #ffffff 50%,
    #960822 65%,
    #960822 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Same animation = perfect sync */
  animation: syncedGradientMove 3.5s ease-in-out infinite alternate;
}