.elementor-5384 .elementor-element.elementor-element-779956f{--display:flex;}@media(min-width:768px){.elementor-5384 .elementor-element.elementor-element-779956f{--content-width:1450px;}}/* Start custom CSS for html, class: .elementor-element-bce4a3b */:root {
  --patient-primary: #4A3C8C;
  --patient-primary-light: #6B5AAE;
  --patient-primary-glow: rgba(74, 60, 140, 0.08);
  --patient-surface: #FFFFFF;
  --patient-background: #F8F9FB;
  --patient-text: #1E293B;
  --patient-text-muted: #64748B;
  --patient-border: #E2E8F0;
}

.patient-info-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--patient-background);
  color: var(--patient-text);
  -webkit-font-smoothing: antialiased;
}

.patient-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.patient-page-header {
  margin-bottom: 48px;
}

.patient-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--patient-text-muted);
  margin-bottom: 16px;
}

.patient-breadcrumb a {
  color: var(--patient-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.patient-breadcrumb a:hover {
  color: var(--patient-primary);
}

.patient-breadcrumb-separator {
  color: var(--patient-border);
}

.patient-page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--patient-text);
  margin: 0;
  letter-spacing: -0.02em;
}

.patient-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--patient-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: gap 0.2s;
}

.patient-back-link:hover {
  gap: 12px;
}

.patient-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.patient-info-card {
  background: var(--patient-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--patient-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.patient-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 60, 140, 0.1);
  border-color: var(--patient-primary);
}

.patient-card__image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F1F5F9;
}

.patient-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.patient-info-card:hover .patient-card__image {
  transform: scale(1.05);
}

.patient-card__content {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.patient-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.patient-card__icon {
  width: 44px;
  height: 44px;
  background: var(--patient-primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.patient-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--patient-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patient-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--patient-text);
  margin: 0;
  line-height: 1.3;
}

.patient-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.patient-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--patient-text);
}

.patient-checklist__item::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--patient-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  position: relative;
}

.patient-checklist__item::after {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  text-align: center;
}

.patient-checklist__highlight {
  color: var(--patient-primary);
  font-weight: 600;
}

.patient-split-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.patient-info-box {
  background: var(--patient-background);
  border: 1px solid var(--patient-border);
  border-radius: 10px;
  padding: 16px;
}

.patient-info-box__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--patient-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.patient-info-box__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--patient-text);
}

.patient-prep-section {
  background: var(--patient-surface);
  border-radius: 16px;
  border: 1px solid var(--patient-border);
  padding: 32px 28px;
  margin-bottom: 32px;
}

.patient-prep__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.patient-prep__icon {
  width: 44px;
  height: 44px;
  background: var(--patient-primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-prep__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--patient-primary);
  fill: none;
  stroke-width: 2;
}

.patient-prep__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--patient-text);
  margin: 0;
}

.patient-prep__badge {
  display: inline-flex;
  align-items: center;
  background: #FEF3C7;
  color: #92400E;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid #FDE68A;
}

.patient-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.patient-accordion__item {
  background: var(--patient-background);
  border: 1px solid var(--patient-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.patient-accordion__item--active {
  background: var(--patient-surface);
  border-color: var(--patient-primary);
  box-shadow: 0 4px 12px rgba(74, 60, 140, 0.08);
}

.patient-accordion__trigger {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--patient-text);
  text-align: left;
  transition: color 0.2s;
}

.patient-accordion__trigger:hover {
  color: var(--patient-primary);
}

.patient-accordion__arrow {
  width: 28px;
  height: 28px;
  background: var(--patient-primary-glow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.patient-accordion__arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--patient-primary);
  transition: transform 0.3s ease;
}

.patient-accordion__item--active .patient-accordion__arrow {
  background: var(--patient-primary);
}

.patient-accordion__item--active .patient-accordion__arrow svg {
  stroke: white;
  transform: rotate(180deg);
}

.patient-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.patient-accordion__item--active .patient-accordion__panel {
  max-height: 500px;
}

.patient-accordion__content {
  padding: 0 20px 20px;
}

.patient-prep-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}

.patient-prep-detail__image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--patient-border);
}

.patient-legal-footer {
  background: linear-gradient(135deg, var(--patient-primary) 0%, var(--patient-primary-light) 100%);
  border-radius: 16px;
  padding: 36px 32px;
  color: white;
}

.patient-legal-footer__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
}

.patient-legal-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.patient-legal-footer__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.96;
}

.patient-legal-footer__item::before {
  content: '→';
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.content li, .type-product li {font-size: 15px;}
.patient-legal-footer__link {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.patient-legal-footer__link:hover {
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .patient-cards-grid {
	grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .patient-info-container {
	padding: 32px 16px 48px;
  }
  
  .patient-page-title {
	font-size: 28px;
  }
  
  .patient-card__content {
	padding: 24px 20px;
  }
  
  .patient-prep-section {
	padding: 24px 20px;
  }
  
  .patient-prep-detail {
	grid-template-columns: 1fr;
  }
  
  .patient-prep-detail__image {
	width: 100%;
	height: 180px;
  }
  
  .patient-legal-footer {
	padding: 28px 24px;
  }
}/* End custom CSS */