/* ========================================
   INTRO SLIDE - HOMEPAGE (Durr Dental)
   ======================================== */

.intro-slide {
  background-image: url('/themes/custom/catalog_theme/images/bg-home.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0C233B;
}

.intro-slide .slide-content__body {
  text-align: center;
  padding: 0 24px;
}

/* -- Caption "CATALOGO 2026" -- */
.intro-badge {
  color: var(--primary-500);
  font-family: var(--font-family);
  font-size: var(--text-xs);
  font-weight: var(--fw-demi);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* -- Main title -- */
.intro-title {
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--text-6xl);
  font-weight: var(--fw-light);
  line-height: 60px;
  margin: 0 0 20px;
}

.intro-title em,
.intro-title i {
  font-style: italic;
  color: var(--primary-500);
}

/* -- Subtitle -- */
.intro-subtitle {
  color: var(--primary-50);
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--fw-book);
  line-height: 18px;
  margin: 0 0 40px;
  max-width: 600px;
}

/* -- Buttons -- */
.intro-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary-500);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: var(--text-xs);
  font-weight: var(--fw-demi);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-browse:hover {
  background: var(--primary-700);
}

.btn-view-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: var(--text-xs);
  font-weight: var(--fw-demi);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-view-index:hover {
  border-color: var(--white);
  color: var(--white);
}

/* -- Navigation hint -- */
.intro-hint {
  margin-top: 80px;
  padding-top: 80px;
  /* bottom: 72px;
  left: 50%;
  transform: translateX(-50%); */
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--fw-book);
  line-height: 18px;
  opacity: 0.7;
}



/*==============MOBILE================*/

@media (max-width: 575px) {
  .intro-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .intro-buttons .btn-browse,
  .intro-buttons .btn-view-index {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .intro-hint { 
    padding-top: 60px; 
    margin-top: 60px; 
  }
}
