/* Crowdcube Investment Page Styles
   Pixel-perfect match to Figma design */

/* ========================================
   Page Layout
   ======================================== */

.rand-crowdcube {
  background-color: #ffffff;
}

.rand-crowdcube__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 24px 100px;
}

@media (min-width: 992px) {
  .rand-crowdcube__content {
    padding: 112px 40px 100px;
  }
}

/* ========================================
   Mobile Language Toggle (simplified header)
   ======================================== */

.rand-header__lang-mobile {
  display: flex;
  align-items: center;
}

.rand-header__lang-mobile-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bec7d5;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.rand-header__lang-mobile-link:hover {
  color: #ffffff;
}

@media (min-width: 992px) {
  .rand-header__lang-mobile {
    display: none;
  }
}

/* ========================================
   Section: Video Hero
   ======================================== */

.rand-crowdcube__hero {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.rand-crowdcube__hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #000628;
  margin: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-crowdcube__hero-title {
    font-size: 32px;
    line-height: 40px;
  }
}

/* Video wrapper */
.rand-crowdcube__video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fb;
}

.rand-crowdcube__video {
  width: 100%;
  display: block;
  aspect-ratio: 880 / 496;
  object-fit: cover;
}

.rand-crowdcube__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.rand-crowdcube__video-play:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translate(-50%, -50%) scale(1.05);
}

.rand-crowdcube__video-play svg {
  width: 24px;
  height: 24px;
}

.rand-crowdcube__video-play.is-hidden {
  display: none;
}

/* Disclaimer */
.rand-crowdcube__disclaimer {
  width: 100%;
  max-width: 880px;
  background-color: #ebeef2;
  border-radius: 8px;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #5a6c84;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .rand-crowdcube__disclaimer {
    max-width: none;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    padding: 12px 24px;
    border-radius: 0;
    text-align: left;
  }
}

/* ========================================
   Section: Steps Timeline
   ======================================== */

.rand-crowdcube__steps-section {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Steps header: title + badges */
.rand-crowdcube__steps-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

@media (min-width: 992px) {
  .rand-crowdcube__steps-header {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.rand-crowdcube__steps-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000628;
  margin: 0;
  flex: 1 0 0;
}

.rand-crowdcube__badges {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.rand-crowdcube__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 32px;
  border: 1.5px solid #dfe3ea;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000628;
  white-space: nowrap;
  box-sizing: border-box;
}

.rand-crowdcube__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #2c52f5;
}

/* Steps row - cards */
.rand-crowdcube__steps-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .rand-crowdcube__steps-row {
    flex-direction: row;
    align-items: stretch;
  }
}

/* Connector lines */
.rand-crowdcube__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile: vertical connector */
.rand-crowdcube__connector {
  width: auto;
  height: 16px;
}

.rand-crowdcube__connector-line {
  width: 2px;
  height: 16px;
  background-color: #dfe3ea;
}

@media (min-width: 992px) {
  .rand-crowdcube__connector {
    width: 16px;
    height: auto;
  }

  .rand-crowdcube__connector-line {
    width: 16px;
    height: 2px;
  }
}

/* Step card base — defaults to grey/upcoming look before JS applies state */
.rand-crowdcube__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #dfe3ea;
  background-color: #f8f9fb;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 992px) {
  .rand-crowdcube__step {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
}

/* Step top row: icon + CTA */
.rand-crowdcube__step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Step icon button — defaults to grey before JS applies state */
.rand-crowdcube__step-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 32px;
  border: 1.5px solid transparent;
  background-color: #bec7d5;
  flex-shrink: 0;
}

.rand-crowdcube__step-icon-btn svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* Checkmark icon hidden by default */
.rand-crowdcube__step-check {
  display: none;
}

/* Step CTA pill button — hidden by default, shown by active state */
.rand-crowdcube__step-cta {
  display: none;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 8px 12px;
  border-radius: 32px;
  background-color: #2c52f5;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.rand-crowdcube__step-cta:hover {
  background-color: #1e3fd4;
  color: #ffffff;
}

/* "Add to Calendar" button — hidden by default, shown by JS for upcoming */
.rand-crowdcube__step-calendar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  padding: 8px 12px;
  border-radius: 32px;
  background-color: #ffffff;
  border: 1.5px solid #dfe3ea;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000628;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}

.rand-crowdcube__step-calendar svg,
.rand-crowdcube__step-calendar img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Step status tab — defaults to grey */
.rand-crowdcube__step-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #97a4b7;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #97a4b7;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Step title — defaults to grey */
.rand-crowdcube__step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #97a4b7;
  margin: 0;
  white-space: nowrap;
}

/* Step description — defaults to grey */
.rand-crowdcube__step-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #97a4b7;
  margin: 0;
  width: 100%;
}

/* ----------------------------------------
   Step State: Active
   ---------------------------------------- */
.rand-crowdcube__step--active {
  background-color: #ffffff;
  border-color: #dfe3ea;
}

.rand-crowdcube__step--active .rand-crowdcube__step-icon-btn {
  background-color: #ffffff;
  border: 1.5px solid #2c52f5;
}

.rand-crowdcube__step--active .rand-crowdcube__step-icon-btn svg {
  color: #2c52f5;
}

.rand-crowdcube__step--active .rand-crowdcube__step-tab {
  border-color: #2c52f5;
  color: #2c52f5;
}

.rand-crowdcube__step--active .rand-crowdcube__step-title {
  color: #000628;
}

.rand-crowdcube__step--active .rand-crowdcube__step-desc {
  color: #5a6c84;
}

.rand-crowdcube__step--active .rand-crowdcube__step-cta {
  display: inline-flex;
  background-color: #2c52f5;
  color: #ffffff;
}

/* Hide calendar button for active step */
.rand-crowdcube__step--active .rand-crowdcube__step-calendar {
  display: none;
}

/* ----------------------------------------
   Step State: Upcoming
   ---------------------------------------- */
.rand-crowdcube__step--upcoming {
  background-color: #f8f9fb;
  border-color: #dfe3ea;
}

.rand-crowdcube__step--upcoming .rand-crowdcube__step-icon-btn {
  background-color: #bec7d5;
  border-color: transparent;
}

.rand-crowdcube__step--upcoming .rand-crowdcube__step-icon-btn svg {
  color: #ffffff;
}

.rand-crowdcube__step--upcoming .rand-crowdcube__step-tab {
  border-color: #97a4b7;
  color: #97a4b7;
}

.rand-crowdcube__step--upcoming .rand-crowdcube__step-title {
  color: #97a4b7;
}

.rand-crowdcube__step--upcoming .rand-crowdcube__step-desc {
  color: #97a4b7;
}

/* Hide CTA pill for upcoming */
.rand-crowdcube__step--upcoming .rand-crowdcube__step-cta {
  display: none;
}

/* ----------------------------------------
   Step State: Completed
   ---------------------------------------- */
.rand-crowdcube__step--completed {
  background-color: #f8f9fb;
  border-color: #dfe3ea;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-icon-btn {
  background-color: #2c52f5;
  border-color: transparent;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-icon-btn svg {
  color: #ffffff;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-tab {
  border-color: #97a4b7;
  color: #97a4b7;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-title {
  color: #97a4b7;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-desc {
  color: #97a4b7;
}

/* Hide CTA and calendar for completed */
.rand-crowdcube__step--completed .rand-crowdcube__step-cta {
  display: none;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-calendar {
  display: none;
}

/* Show checkmark, hide original icon */
.rand-crowdcube__step--completed .rand-crowdcube__step-icon {
  display: none;
}

.rand-crowdcube__step--completed .rand-crowdcube__step-check {
  display: block;
}

/* Invest CTA button (below steps) */
.rand-crowdcube__invest-cta {
  display: none;
  align-items: center;
  justify-content: center;
  align-self: center;
  height: 56px;
  padding: 16px 24px;
  border-radius: 12px;
  background-color: #2c52f5;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.rand-crowdcube__invest-cta.is-visible {
  display: inline-flex;
}

.rand-crowdcube__invest-cta:hover {
  background-color: #1e3fd4;
  color: #ffffff;
}

@media (max-width: 991px) {
  .rand-crowdcube__invest-cta {
    width: 100%;
  }
}

/* ========================================
   Section: Investor Deck
   ======================================== */

.rand-crowdcube__deck-section {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.rand-crowdcube__deck-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000628;
  margin: 0;
  width: 100%;
}

.rand-crowdcube__deck-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.rand-crowdcube__deck-preview {
  width: 100%;
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover;
  aspect-ratio: 1920 / 1280;
}

.rand-crowdcube__deck-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: #ebeef2;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .rand-crowdcube__deck-bar {
    flex-direction: row;
    gap: 10px;
  }
}

.rand-crowdcube__deck-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5a6c84;
  flex: 1 0 0;
  width: 100%;
}

.rand-crowdcube__deck-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 8px 12px;
  border-radius: 32px;
  background-color: #2c52f5;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .rand-crowdcube__deck-download {
    width: 100%;
  }
}

.rand-crowdcube__deck-download:hover {
  background-color: #1e3fd4;
  color: #ffffff;
}

/* ========================================
   Divider Line
   ======================================== */

.rand-crowdcube__divider {
  width: 100%;
  max-width: 880px;
  height: 1px;
  background-color: #dfe3ea;
  flex-shrink: 0;
}

/* ========================================
   Section: Request a Call
   ======================================== */

.rand-crowdcube__call-section {
  width: 100%;
  max-width: 880px;
}

.rand-crowdcube__call-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background-color: #ffffff;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-crowdcube__call-card {
    flex-direction: row;
    text-align: left;
  }
}

.rand-crowdcube__call-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  flex: 1 0 0;
}

@media (max-width: 991px) {
  .rand-crowdcube__call-text {
    align-items: center;
  }
}

.rand-crowdcube__call-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000628;
  margin: 0;
  width: 100%;
}

.rand-crowdcube__call-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5a6c84;
  margin: 0;
  width: 100%;
}

.rand-crowdcube__call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1.5px solid #dfe3ea;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #2c52f5;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .rand-crowdcube__call-btn {
    width: 100%;
  }
}

.rand-crowdcube__call-btn:hover {
  border-color: #2c52f5;
  background-color: #f8f9fb;
}

/* Completed state */
.rand-crowdcube__call-completed {
  display: none;
  padding: 24px;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #ffffff;
}

.rand-crowdcube__call-completed.is-visible {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.rand-crowdcube__call-card.is-hidden {
  display: none;
}

.rand-crowdcube__call-check {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.rand-crowdcube__call-completed-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000628;
  margin: 0;
  white-space: nowrap;
}

/* Hidden when round closed */
.rand-crowdcube__call-section.is-hidden {
  display: none;
}

/* ========================================
   Section: FAQ
   ======================================== */

.rand-crowdcube__faq-section {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.rand-crowdcube__faq-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000628;
  margin: 0;
  width: 100%;
}

.rand-crowdcube__faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* FAQ item */
.rand-crowdcube__faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.rand-crowdcube__faq-question {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 12px 0;
  background: none;
  border: none;
  text-align: left;
}

.rand-crowdcube__faq-question-text {
  flex: 1 0 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000628;
  margin: 0;
}

.rand-crowdcube__faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #000628;
}

/* Open state: rotate chevron */
.rand-crowdcube__faq-item.is-open .rand-crowdcube__faq-chevron {
  transform: rotate(180deg);
}

/* Answer */
.rand-crowdcube__faq-answer {
  display: none;
  padding: 0 0 12px;
  width: 100%;
}

.rand-crowdcube__faq-item.is-open .rand-crowdcube__faq-answer {
  display: block;
}

.rand-crowdcube__faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5a6c84;
  margin: 0;
}

/* ========================================
   Simplified Footer
   ======================================== */

.rand-footer--simple .rand-footer__nav {
  display: none;
}

.rand-footer--simple .rand-footer__qr {
  display: none;
}

.rand-footer--simple .rand-footer__top {
  flex-direction: row;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .rand-footer--simple .rand-footer__app-btn {
    display: none;
  }
}

/* ========================================
   Modal
   ======================================== */

.rand-crowdcube__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.rand-crowdcube__modal.is-open {
  display: flex;
}

.rand-crowdcube__modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 6, 40, 0.6);
}

.rand-crowdcube__modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dfe3ea;
  padding: 24px;
  max-width: 600px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rand-crowdcube__modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: color 0.2s ease;
}

.rand-crowdcube__modal-close:hover {
  color: #222222;
}

.rand-crowdcube__modal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000628;
  margin: 0;
}

.rand-crowdcube__modal-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #5a6c84;
  margin: 0;
}

.rand-crowdcube__modal-input {
  width: 100%;
  height: 48px;
  padding: 16px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #000628;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  margin: 0;
}

.rand-crowdcube__modal-input:focus {
  border-color: #2c52f5;
}

.rand-crowdcube__modal-input.is-invalid {
  border-color: #EF4444;
}

.rand-crowdcube__modal-error {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #EF4444;
  margin: 0;
  min-height: 0;
}

.rand-crowdcube__modal-error:empty {
  display: none;
}

.rand-crowdcube__modal-submit {
  width: 100%;
  height: 48px;
  background-color: #2c52f5;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.rand-crowdcube__modal-submit:hover:not(:disabled) {
  background-color: #1e3fd4;
}

.rand-crowdcube__modal-submit:disabled {
  background-color: #bec7d5;
  opacity: 1;
  cursor: not-allowed;
}

/* ========================================
   Toast
   ======================================== */

.rand-crowdcube__toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: #166534;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  padding: 14px 28px;
  border-radius: 12px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.rand-crowdcube__toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

