/** Shopify CDN: Minification failed

Line 11:0 Unexpected "{"
Line 11:1 Expected identifier but found "%"
Line 12:2 Unexpected "="
Line 15:16 Expected identifier but found "%"
Line 15:62 Expected identifier but found whitespace
Line 17:1 Expected identifier but found "%"

**/
{%- comment -%}
  ============================================================
  STYLES
  Static rules in <style> inside section; dynamic values
  injected via {% style %} block above using CSS custom props.
  ============================================================
{%- endcomment -%}


  /* ── Layout ────────────────────────────────────────────── */
  .vpv-ct-section {
    padding-top:    var(--vpv-ct-pad-top,    40px);
    padding-bottom: var(--vpv-ct-pad-bottom, 40px);
  }

  .vpv-ct-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 40px);
  }

  .vpv-ct-heading {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .vpv-ct-subheading {
    text-align: center;
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
  }

  /* ── Scroll wrapper (mobile) ───────────────────────────── */
  .vpv-ct-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    
  }

  /* ── Table base ────────────────────────────────────────── */
  .vpv-ct-table {
    border-spacing: 0;
    width: 100%;
    border-collapse: separate;
    overflow:hidden;
  }

  /* ── Header ────────────────────────────────────────────── */
  .vpv-ct-th {
background-color: #FFFFFF;
border: 1px solid var(--vpv-ct-border, #000000);
border-bottom: 0;
border-collapse: collapse;
border-right: 0;
border-spacing: 0;
display: table-cell;
font-family: ginto-nord;
font-size: 12px;
line-height: 14px;
font-weight: 600;
height: 60px;
padding: 22px 8px;
text-align: center;
vertical-align: bottom;
  }


.vpv-ct-th:last-child{
  border-right: 1px solid var(--vpv-ct-border, #000000);
  border-top-right-radius: 8px;
}

.vpv-ct-th--empty+.vpv-ct-th {
  border-top-left-radius: 8px;
}

.vpv-ct-th:last-of-type {
    border-top-right-radius: 8px;
}

  .vpv-ct-th--empty {
    background: transparent;
    min-width: var(--vpv-ct-label-min, 220px);
    border: none;
  }

  .vpv-ct-col-title {
    display: block;
  }
  .vpv-ct-col-title-link{text-decoration:underline;}

  .vpv-ct-col-subtitle {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 4px;
  }

  /* ── Rows & Cells ──────────────────────────────────────── */
 .vpv-ct-tr--body:last-of-type .vpv-ct-td {
    border-bottom: 1px solid var(--vpv-ct-border, #000000);
  }

  .vpv-ct-td {
background-color: #FFFFFF;
border: 1px solid var(--vpv-ct-border, #000000);
border-bottom: 0;
border-collapse: collapse;
border-right: 0;
border-spacing: 0;
display: table-cell;
height: 60px;
font-size: 0.9375rem;
line-height: 1.45;
padding: 16px 20px;
vertical-align: middle;
  
  }


  .vpv-ct-td:last-child {
  border-right: 1px solid var(--vpv-ct-border, #000000);
}

  .vpv-ct-td--label {
    text-align: left;
    min-width: var(--vpv-ct-label-min, 220px);
    color: #111827;
  }

  .vpv-ct-td--bold {
    font-weight: 700;
  }

  .vpv-ct-td--data {
    text-align: center;
  }

    .vpv-ct-tr--body:first-of-type >.vpv-ct-td--label {border-top-left-radius: 8px;}
    .vpv-ct-tr--body:last-of-type >.vpv-ct-td--label {border-bottom-left-radius: 8px;}
     .vpv-ct-tr--body:last-of-type .vpv-ct-td:last-child {border-bottom-right-radius: 8px;}

  /* ── Text cells ────────────────────────────────────────── */
  .vpv-ct-cell-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .vpv-ct-cell-inner p a,
  .vpv-ct-cell-inner li a {text-decoration: underline;}

  .vpv-ct-text-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .vpv-ct-text-link:hover {
    opacity: 0.7;
  }

  /* ── Icon cells ────────────────────────────────────────── */
  .vpv-ct-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vpv-ct-icon svg {
    display: block;
    flex-shrink: 0;
  }

  /* ── Image cells ───────────────────────────────────────── */
  .vpv-ct-cell-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vpv-ct-cell-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  /* ── Per-cell CTA ──────────────────────────────────────── */
  .vpv-ct-cell-cta {
    display: block;
    margin-top: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: inherit;
  }

  .vpv-ct-cell-cta:hover {
    opacity: 0.7;
  }

  /* ── Section-level footer CTA ──────────────────────────── */
  .vpv-ct-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .vpv-ct-footer-btn {
    font-family:"ginto-nord";
    display: inline-block;
    padding: 13px 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }

  .vpv-ct-footer-btn:hover {
    opacity: 0.82;
  }

  /* Match common theme button classes */
  .vpv-ct-footer-btn.button--primary {
    background-color: var(--color-button, #111827);
    color: var(--color-button-text, #ffffff);
    border: 2px solid transparent;
  }

  .vpv-ct-footer-btn.button--secondary {
    background-color: transparent;
    color: var(--color-button, #111827);
    border: 2px solid var(--color-button, #111827);
  }

  .vpv-ct-footer-btn.button--link {
    background: transparent;
    padding-inline: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    border: none;
  }

  /* ── Responsive ────────────────────────────────────────── */
  @media (max-width: 768px) {
    .vpv-ct-th--empty,
    .vpv-ct-td--label {
      min-width: 140px;
      font-size: 0.875rem;
    }

    .vpv-ct-th,
    .vpv-ct-td {
      padding: 12px 12px;
    }


    .vpv-ct-icon svg,
    .vpv-ct-cell-img {
      width: 32px;
      height: 32px;
    }
  }

  @media (min-width: 768px) {
  .vpv-ct-th{
    font-size: 16px;
    line-height: 20px;}

    .vpv-ct-td{
        font-size: 16px;
        line-height: 20px;
        padding: 8px 20px;
    }
  }
