.guide-card__body {
  margin-bottom: 20px;
}

.guide-card__body.guide-step-transition {
  animation: guide-step-in 0.32s ease;
}

@keyframes guide-step-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.guide-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 29, 61, 0.08);
  padding: 32px 28px;
  max-width: 520px;
  margin-inline: auto;
}

.guide-card__header {
  position: relative;
  margin-bottom: 28px;
}

.guide-card__step-label {
  display: block;
  text-align: center;
  color: #001d3d;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 32px;
}

.guide-card__back {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f2f4f7;
  color: var(--neutral-700);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.guide-card__back:hover:not(:disabled) {
  background: #e8ebf0;
}

.guide-card__back:disabled {
  opacity: 0.35;
}

.guide-card__progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #e8ebf0;
  overflow: hidden;
}

.guide-card__progress-fill {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  border-radius: 999px;
  background: hsl(var(--main));
  transition: width 0.4s ease;
}

.guide-card__question {
  color: #001d3d;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 24px;
}

.guide-card__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.guide-card__option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid #e0e4ea;
  background: #ffffff;
  color: #001d3d;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.guide-card__option:hover {
  border-color: #d1d5db;
}

.guide-card__option--selected {
  border-color: hsl(var(--main));
  background: #fff9e6;
  color: hsl(var(--main));
}

.guide-card__option--selected .guide-card__option-icon {
  color: hsl(var(--main));
}

.guide-card__option-icon {
  font-size: 20px;
  display: flex;
  color: #001d3d;
}

.guide-card__download-box {
  background: #f2f4f7;
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.guide-card__download-text {
  color: #001d3d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 16px;
}

.guide-card__download-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-card__download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid hsl(var(--main));
  background: #ffffff;
  color: hsl(var(--main));
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.guide-card__download-link:hover {
  background: #fff9e6;
  color: hsl(var(--main));
}

.guide-card__download-link i {
  font-size: 20px;
}

.guide-card__next {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  margin-bottom: 20px;
}

.guide-card__next--enabled {
  background: hsl(var(--main));
}

.guide-card__next--enabled:hover {
  background: var(--main-700);
}

.guide-card__next--disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

.guide-card__divider {
  height: 1px;
  background: #e8ebf0;
  margin-block: 16px;
}

.guide-card__share {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: #f2f4f7;
  color: #001d3d;
  font-size: 15px;
  margin-top: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.guide-card__share:hover {
  background: #e8ebf0;
}

.guide-card__share i {
  font-size: 18px;
}

.guide-page-header__title {
  color: #001d3d;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
}

.guide-page-header__description {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

.guide-card__instructions {
  background: #f2f4f7;
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 20px;
}

.guide-card__instructions-title {
  color: #001d3d;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 16px;
}

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

.guide-steps-accordion__static,
.guide-steps-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: none;
  background: #ffffff;
  color: #001d3d;
  text-align: start;
}

.guide-steps-accordion__static {
  cursor: default;
}

.guide-steps-accordion__trigger {
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.guide-steps-accordion__trigger:hover {
  box-shadow: 0 2px 8px rgba(0, 29, 61, 0.06);
}

.guide-steps-accordion__trigger:focus {
  outline: none;
}

.guide-steps-accordion__chevron {
  flex-shrink: 0;
  width: 16px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  font-size: 16px;
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.2s ease;
}

.guide-steps-accordion__trigger:not(.collapsed) .guide-steps-accordion__chevron {
  transform: rotate(180deg);
  color: #001d3d;
}

.guide-steps-accordion__title {
  flex: 1 1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.guide-steps-accordion__badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: hsl(var(--main));
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


.guide-steps-accordion__screenshot {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
  line-height: 0;
  display: flex;
  justify-content: center;
}

.guide-steps-accordion__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.guide-steps-accordion .accordion-collapse.collapsing {
  transition: height 0.35s ease;
}

.guide-card__pos-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid hsl(var(--main));
  background: #ffffff;
  color: hsl(var(--main));
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.guide-card__pos-link:hover {
  background: #fff9e6;
  color: hsl(var(--main));
}

.guide-card__pos-link i {
  font-size: 18px;
}

.guide-payment-detail {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.guide-payment-detail__intro {
  color: #001d3d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 12px;
}

.guide-payment-detail__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;

}
.guide-payment-detail__list  div {
  display: flex;
  gap: 4px;
}

.guide-payment-detail__list dt {
  color: var(--neutral-500);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.guide-payment-detail__list dd {
  color: var(--neutral-900);
  font-size: 14px;
  font-weight: 600;
  text-align: start;
  margin: 0;
}

.guide-payment-detail__phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}

.guide-payment-detail__phone {
  color: #001d3d;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.guide-payment-detail__phone:hover {
  color: hsl(var(--main));
}

.guide-payment-detail__qr {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.guide-whatsapp-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.guide-whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid hsl(var(--main));
  background: #ffffff;
  color: hsl(var(--main));
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.guide-whatsapp-link:hover {
  background: #fff9e6;
  color: hsl(var(--main));
}

.guide-whatsapp-link i {
  font-size: 20px;
}

.guide-complete-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 12px 4px;
}

.guide-complete-dialog__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.guide-complete-dialog__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.guide-complete-dialog__title {
  margin: 0;
  color: hsl(var(--main));
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-complete-dialog__message {
  margin: 0;
  color: #001d3d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.guide-complete-dialog__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: hsl(var(--main));
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.guide-complete-dialog__cta:hover {
  color: #ffffff;
  opacity: 0.92;
}

