.salesinv-download-button {
  display: flex;
}

.salesinv-download-button--center {
  justify-content: center;
}

.salesinv-download-button--right {
  justify-content: flex-end;
}

.salesinv-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.salesinv-button:hover,
.salesinv-button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.salesinv-button--primary {
  background: var(--salesinv-primary, #1b2b6b);
  box-shadow: 0 12px 28px rgba(27, 43, 107, 0.18);
  color: #fff;
}

.salesinv-button--accent {
  background: var(--salesinv-accent, #f2994a);
  box-shadow: 0 12px 28px rgba(242, 153, 74, 0.24);
  color: #fff;
}

.salesinv-button--ghost {
  border: 1px solid rgba(27, 43, 107, 0.22);
  background: #fff;
  color: var(--salesinv-primary, #1b2b6b);
}

.salesinv-button--light {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.salesinv-pricing-block {
  padding: 86px 0;
  background: #fff;
}

.salesinv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.salesinv-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--salesinv-border, #e4e7ec);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.05);
  padding: 28px;
}

.salesinv-plan--featured {
  border-color: rgba(242, 153, 74, 0.5);
  box-shadow: 0 20px 60px rgba(242, 153, 74, 0.18);
}

.salesinv-plan__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: rgba(242, 153, 74, 0.13);
  color: #b55d1c;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
}

.salesinv-plan__price {
  margin: 12px 0 22px;
  color: var(--salesinv-primary, #1b2b6b);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.salesinv-plan ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.salesinv-plan li {
  position: relative;
  padding-left: 24px;
  color: var(--salesinv-text, #333);
  font-size: 15px;
  font-weight: 700;
}

.salesinv-plan li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #10b981;
  border-left: 2px solid #10b981;
  content: "";
  transform: rotate(-45deg);
}

.salesinv-plan .salesinv-button {
  margin-top: auto;
}

.salesinv-plan__price .woocommerce-Price-amount,
.salesinv-plan__price .woocommerce-Price-currencySymbol {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

@media (max-width: 900px) {
  .salesinv-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .salesinv-download-button,
  .salesinv-download-button .salesinv-button {
    width: 100%;
  }

  .salesinv-plan__badge {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
  }
}

