/* Currency switcher bar */
.ccsa-currency-switcher {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 0;
  flex-wrap: wrap;
  align-items: center;
}

.ccsa-currency-label {
  font-size: 0.75rem;
  color: #fff; 
  margin-right: 0.25rem;
}

.ccsa-currency-btn {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 0.2rem 0.3rem;
  font-size: 0.7rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.ccsa-currency-btn.is-active {
  background: #f97316;   /* CooCooSA orange */
  border-color: #f97316;
  color: #ffffff;
}

/* Optional: details accordion animation */
.ccsa-pricing-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.ccsa-pricing-details.is-open {
  max-height: 1000px; /* big enough for content */
}
/* Layout – 3 cards per row on desktop, 2 on tablet, 1 on phone */
  .ccsa-pricing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .ccsa-pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    padding: 1.75rem;
    color: #111827;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ccsa-pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #f97316; /* orange heading, close to your brand */
  }

  .ccsa-pricing-card small {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.85rem;
  }

  .ccsa-price-from {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .ccsa-price-from strong {
    color: #f97316;
  }

  .ccsa-pricing-toggle {
    display: inline-block;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: none;
    background: #f97316; /* primary button orange */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
  }

  .ccsa-pricing-toggle:hover {
    background: #ea580c;
    transform: translateY(-1px);
  }

  /* Dropdown details – slide open/close instead of “jump” */
  .ccsa-pricing-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    margin-top: 0;
    border-top: 1px solid transparent;
    padding-top: 0;
  }

  .ccsa-pricing-details.is-open {
    max-height: 999px; /* enough for full content */
    opacity: 1;
    margin-top: 1rem;
    border-top-color: #e5e7eb;
    padding-top: 1rem;
  }

  .ccsa-pricing-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.4rem 0 0.2rem;
    }

  .ccsa-pricing-details ul {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
  }

  .ccsa-pricing-details li {
    margin: 0;
    line-height: 1.4;
  }

  .ccsa-pricing-details li span.ccsa-price {
    font-weight: 600;
  }

  /* “currency line” – a bit softer */
  .ccsa-price-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
  }

  /* Responsive */
  @media (max-width: 991.98px) {
    .ccsa-pricing-card {
      flex: 1 1 calc(50% - 2rem);
    }
  }

  @media (max-width: 575.98px) {
    .ccsa-pricing-card {
      flex: 1 1 100%;
    }
  }
