/* ============================================================
   Fees Table Section — transfer-to-card
   ============================================================ */

.ttc-fees-section {
  padding: 120px 0 0;
}

/* ---- Heading — max-width 864px centered ------------------- */
.ttc-fees-heading {
  max-width: 864px;
  margin: 0 auto 64px;
}

.ttc-fees-heading__mobile {
  display: none;
}

.ttc-fees-heading__desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ttc-fees-heading__intro {
  display: block;
  color: var(--Shades-Dark-Side-Soft-Grey, #888);
  text-align: center;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ttc-fees-heading__title {
  margin: 24px 0 0;
  color: var(--Shades-Dark-Side-Rich-Black, #000);
  text-align: center;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}

.ttc-fees-heading__desc {
  margin: 48px 0 0;
  margin-bottom: 0 !important;
  color: var(--Shades-Dark-Side-Rich-Black, #000);
  text-align: center;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

/* ---- Table wrap — centred to match row width -------------- */
.ttc-fees-table-wrap {
  width: 1088px;
  margin: 0 auto;
}

/* ---- Meta row: intro text in label column, value area empty */
.ttc-fees-table-meta {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 40px;
  box-sizing: border-box;
}

.ttc-fees-table-meta__intro {
  color: var(--Shades-Dark-Side-Soft-Grey, #888);
  text-align: right;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.ttc-fees-table-meta__value-spacer {
  flex-shrink: 0;
  width: 280px;
}

/* ---- Desktop/mobile visibility ---------------------------- */
.ttc-fees-table__label--mobile,
.ttc-fees-table__value--mobile {
  display: none;
}

/* ---- Table rows ------------------------------------------- */
.ttc-fees-table {
  display: flex;
  flex-direction: column;
}

.ttc-fees-table__row {
  display: flex;
  align-items: center;
  width: 1088px;
  min-height: 99px;
  border-radius: 49.5px;
  background: var(--White, #FFF);
  padding: 0 40px;
  box-sizing: border-box;
}

.ttc-fees-table__row:nth-child(even) {
  background: transparent;
}

.ttc-fees-table__label {
  flex: 1;
  color: #000;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

/* ---- Button ----------------------------------------------- */
.ttc-fees-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}

.ttc-fees-btn--mobile {
  display: none;
}

.ttc-fees-btn.clp_btn--accent:hover {
  transition: all .3s ease-in-out;
  border: 2px solid #000;
  background: #f7f7f7;
  color: #222;
  text-align: center;
  font-family: Nunito;
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, .15);
  background-image: url(https://www.zen.com/wp-content/themes/zen/images/deals-landing/patern.webp);
  background-position: center;
  background-size: cover;
}

/* ---- Value cell ------------------------------------------- */
.ttc-fees-table__value {
  flex-shrink: 0;
  width: 280px;
  color: #000;
  text-align: right;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

/* ============================================================
   Mobile styles
   ============================================================ */
@media (max-width: 767px) {

  .ttc-fees-section {
    padding: 64px 24px;
    box-sizing: border-box;
  }

  /* ---- Heading -------------------------------------------- */
  .ttc-fees-heading {
    max-width: 304px;
    margin: 0 auto 32px;
  }

  .ttc-fees-heading__desktop {
    display: none;
  }

  .ttc-fees-heading__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ttc-fees-heading__intro {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .ttc-fees-heading__title {
    margin: 16px 0 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
  }

  .ttc-fees-heading__desc {
    margin: 32px 0 0;
    color: var(--Shades-Dark-Side-Antracite, #222);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  /* ---- Table wrap ----------------------------------------- */
  .ttc-fees-table-wrap {
    width: 100%;
  }

  /* ---- Meta row ------------------------------------------- */
  .ttc-fees-table-meta {
    padding: 0 24px;
    width: 100%;
  }

  .ttc-fees-table-meta__intro {
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-bottom: 12px;
    color: var(--Dark-Grey, #86868B);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: normal;
    text-transform: none;
  }

  .ttc-fees-table-meta__value-spacer {
    display: none;
  }

  .ttc-fees-table__label--mobile,
  .ttc-fees-table__value--mobile {
    display: block;
  }

  .ttc-fees-table__label--desktop,
  .ttc-fees-table__value--desktop {
    display: none;
  }

  /* ---- Meta margin ---------------------------------------- */
  .ttc-fees-table-meta {
    margin-bottom: 0;
  }

  /* ---- Rows ----------------------------------------------- */
  .ttc-fees-table__row {
    width: 100%;
    min-height: 64px;
    border-radius: 36px;
    padding: 16px 24px;
  }

  .ttc-fees-table__label {
    color: var(--Shades-Dark-Side-Rich-Black, #000);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .ttc-fees-table__value {
    width: auto;
    color: var(--Shades-Dark-Side-Rich-Black, #000);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }

  /* ---- Button --------------------------------------------- */
  .ttc-fees-btn--desktop {
    display: none;
  }

  .ttc-fees-btn-wrap {
    margin-top: 32px;
  }

  .ttc-fees-btn--mobile {
    display: flex;
    width: fit-content;
  }

}
