
  .cashard-footer {
    background: linear-gradient(180deg, #0f1218 0%, #13161d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #f1f3f5;
    padding-top: 60px;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
  }

  .cashard-footer-main {
    padding-bottom: 50px;
  }

  .cashard-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .cashard-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  /* BRAND COLUMN */
  .cashard-footer-col.cashard-footer-brand {
    display: flex;
    flex-direction: column;
  }

  .cashard-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
  }

  .cashard-footer-logo img {
    height: 36px;
  }

  .cashard-brand-text {
    color: #ced4da;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .cashard-trust-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .cashard-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ced4da;
    font-size: 14px;
  }

  .cashard-trust-item i {
    color: #00D09C;
    font-size: 16px;
    width: 20px;
    text-align: center;
  }

  /* NEWSLETTER BOX */
  .cashard-newsletter-box {
    padding: 24px;
    background: rgba(42, 45, 50, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
      inset 3px 3px 8px rgba(0, 0, 0, 0.4),
      inset -3px -3px 8px rgba(255, 255, 255, 0.02);
  }

  .cashard-newsletter-label {
    display: block;
    color: #f1f3f5;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 14px;
  }

  .cashard-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-input-container {
    position: relative;
    display: flex;
    gap: 8px;
  }

  .footer-input-container input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 23, 29, 0.6);
    color: #f1f3f5;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
  }

  .footer-input-container input:focus {
    border-color: #FFB800;
    background: rgba(20, 23, 29, 0.8);
  }

  .footer-input-container input::placeholder {
    color: #868e96;
  }

  .footer-input-container button {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #FFB800, #FF8A00);
    color: #0b0d13;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-input-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
  }

  .footer-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #868e96;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
  }

  .footer-checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 2px;
  }

  .footer-checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: rgba(20, 23, 29, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .footer-checkbox-container:hover input~.footer-checkmark {
    background-color: rgba(20, 23, 29, 0.8);
  }

  .footer-checkbox-container input:checked~.footer-checkmark {
    background-color: #FFB800;
    border-color: #FFB800;
  }

  .footer-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #0b0d13;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .footer-checkbox-container input:checked~.footer-checkmark:after {
    display: block;
  }

  /* FOOTER COLUMNS */
  .cashard-footer h4 {
    color: #f1f3f5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
  }

  .cashard-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .cashard-footer ul li {
    margin-bottom: 12px;
  }

  .cashard-footer ul li a {
    color: #ced4da;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .cashard-footer ul li a:hover {
    color: #FFB800;
    transform: translateX(4px);
  }

  .cashard-footer ul li a strong {
    color: #FFB800;
  }

  /* FOOTER BOTTOM */
  .cashard-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0;
    text-align: center;
  }

  .cashard-footer-bottom p {
    color: #868e96;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
  }

  .cashard-footer-bottom a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .cashard-footer-bottom a:hover {
    color: #FFB800;
  }

  .cashard-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .cashard-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ced4da;
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .cashard-social-links a:hover {
    background: rgba(255, 184, 0, 0.1);
    color: #FFB800;
    transform: translateY(-3px);
  }

  /* RESPONSIVE */
  @media (max-width: 968px) {
    .cashard-footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .cashard-footer-col.cashard-footer-brand {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 640px) {
    .cashard-footer {
      padding-top: 40px;
    }

    .cashard-footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .cashard-footer-container {
      padding: 0 20px;
    }

    .footer-input-container {
      flex-direction: column;
    }

    .footer-input-container button {
      width: 100%;
    }
  }

  /* Skip Link (Accessibility) */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB800;
    color: #0b0d13;
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    font-weight: 700;
    font-size: 14px;
    z-index: 99999;
    transition: top 0.3s
  }

  .skip-link:focus {
    top: 0
  }

  /* Focus Indicators (Accessibility) */
  *:focus-visible {
    outline: 2px solid #FFB800;
    outline-offset: 3px;
    border-radius: 4px
  }

  a:focus-visible,
  button:focus-visible {
    outline: 2px solid #FFB800;
    outline-offset: 3px
  }

  /* Color Contrast Fix â€” Muted text improved */
  .cashard-footer .cashard-trust-item span,
  .cashard-footer ul li a,
  .cashard-footer-bottom p {
    color: #d1d5db
  }

  /* WhatsApp Float */
  #whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9000
  }

  #whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none
  }

  #whatsapp-float a:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6)
  }

  .wa-label {
    display: inline
  }

  @media(max-width:640px) {
    .wa-label {
      display: none
    }

    #whatsapp-float a {
      padding: 14px;
      border-radius: 50%
    }

    #whatsapp-float {
      bottom: 80px;
      right: 16px
    }
  }

  /* Back to Top */
  /* [removed back-to-top] */

  /* [removed back-to-top] */

  #back-to-top:hover {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-3px)
  }

  /* Cookie Consent */
  #cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 15, 20, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 28px;
    z-index: 99998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center
  }

  #cookie-consent.visible {
    transform: translateY(0)
  }

  .cc-inner {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%
  }

  .cc-text {
    flex: 1
  }

  .cc-text strong {
    color: #f1f3f7;
    font-size: 15px
  }

  .cc-text p {
    color: #b8c0cc;
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.6
  }

  .cc-text a {
    color: #FFB800;
    text-decoration: underline
  }

  .cc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
  }

  .cc-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s
  }

  .cc-btn-accept {
    background: linear-gradient(135deg, #00D09C, #00E5A8);
    color: #0b0d13;
    box-shadow: 0 4px 14px rgba(0, 208, 156, 0.3)
  }

  .cc-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 156, 0.5)
  }

  .cc-btn-essential {
    background: rgba(255, 255, 255, 0.08);
    color: #b8c0cc;
    border: 1px solid rgba(255, 255, 255, 0.12)
  }

  .cc-btn-essential:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #f1f3f7
  }

  @media(max-width:768px) {
    .cc-inner {
      flex-direction: column;
      text-align: center
    }

    .cc-actions {
      width: 100%
    }

    .cc-btn {
      flex: 1
    }
  }

  /* Sticky Mobile CTA */
  #mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9500;
    background: rgba(13, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    gap: 10px
  }

  @media(max-width:640px) {
    #mobile-cta-bar {
      display: flex
    }

    #cookie-consent.visible {
      transform: translateY(-60px)
    }

    #whatsapp-float {
      bottom: 80px
    }
  }

  .mcta-sell,
  .mcta-buy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s
  }

  .mcta-sell {
    background: linear-gradient(135deg, #00D09C, #00E5A8);
    color: #0b0d13
  }

  .mcta-buy {
    background: linear-gradient(135deg, #4A9EFF, #6BB5FF);
    color: #fff
  }

  #wa-rate-pill {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px 11px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, opacity .3s;
    opacity: 0;
    transform: translateY(12px) scale(.95);
    pointer-events: none;
  }

  #wa-rate-pill.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  #wa-rate-pill:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
  }

  #wa-rate-pill .wa-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    animation: wa-blink 1.6s infinite;
  }

  @keyframes wa-blink {

    0%,
    100% {
      opacity: .4
    }

    50% {
      opacity: 1
    }
  }

  #wa-rate-pill svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  /* Hide when the main WA chat btn is in viewport */
  @media(max-width:480px) {
    #wa-rate-pill {
      bottom: 18px;
      right: 14px;
      font-size: 12px;
      padding: 10px 14px 10px 12px;
    }
  }
