﻿/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #0f0e17 0%, #171628 100%);
  color: #fff;
  margin-top: 60px
}

.footer-top {
  padding: 52px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

@media(min-width:640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.footer-logo-img {
  height: 38px;
  width: auto
}

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 18px
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition)
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px)
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition)
}

.footer-links a:hover {
  color: var(--primary)
}

.footer-payments {
  background: rgba(255, 255, 255, .04);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-payments .container {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.payment-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .4px
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.payment-icon {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  padding: 4px 10px;
  border-radius: 4px
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .35)
}

/* ─── NEW WHITE FOOTER ───────────────────────────────────── */
.site-footer--light {
      background: hsl(220deg 13% 87% / 11%) !important;
  color: #1e293b;
      border-top: 1px solid #c8cdd51a;
  margin-top: 48px
}

/* Payment Strip */
.footer-pay-strip {
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0
}

.footer-pay-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.footer-pay-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.footer-pay-badge {
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 3px 10px;
  letter-spacing: .3px
}

.footer-pay-more {
  font-size: 12px;
  color: #6366f1;
  font-weight: 500
}

/* Footer Body */
.footer-body {
  padding: 10px 0 10px
}

.footer-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px
}

@media(min-width:600px) {
  .footer-body-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:900px) {
  .footer-body-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1100px) {
  .footer-body-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.site-footer--light .footer-col-heading {
  font-size: 11px;
  font-weight: 800;
  color: #565656;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px
}

/* Mobile collapsible footer columns */
.footer-col-chevron {
  display: none
}

@media(max-width:639px) {
  .footer-col-accordion {
    border-bottom: 1px solid hsl(220 13% 87%);
    padding-bottom: 0
  }

  .footer-col-accordion .footer-col-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0;
    padding: 14px 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none
  }

  .footer-col-chevron {
    display: block;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .25s ease
  }

  .footer-col-accordion .footer-col-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding-top: 0;
    padding-bottom: 0
  }

  .footer-col-accordion.open .footer-col-links {
    max-height: 300px;
    padding-bottom: 14px
  }

  .footer-col-accordion.open .footer-col-chevron {
    transform: rotate(180deg)
  }
}

.site-footer--light .footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.site-footer--light .footer-col-links a {
  font-size: 13.5px;
  color: #475569;
  transition: color .15s
}

.site-footer--light .footer-col-links a:hover {
  color: #6366f1
}

.site-footer--light .footer-col-links span {
  font-size: 13.5px;
  color: #94a3b8
}

/* App Panel */
.footer-app-panel {
  display: flex;
  flex-direction: column
}

.footer-app-inner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px
}

.footer-app-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px
}

.footer-app-desc {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 10px
}

.footer-app-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px
}

.footer-app-stars {
  display: flex;
  gap: 1px
}

.footer-app-rating-num {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b
}

.footer-app-votes {
  font-size: 12px;
  color: #94a3b8
}

.footer-app-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .15s, transform .15s
}

.footer-store-btn:hover {
  background: #6366f1;
  transform: translateY(-1px)
}

.footer-download-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  flex: 1;
  justify-content: center
}

.footer-download-btn:hover {
  background: linear-gradient(135deg, #818cf8, #6366f1)
}

.footer-app-logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid #f1f5f9;
  padding: 14px 0
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.site-footer--light .footer-copy {
  font-size: 13px;
  color: #94a3b8;
  margin: 0
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: background .15s, color .15s
}

.footer-social-icon:hover {
  background: #6366f1;
  color: #fff
}

.footer-currency-select {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer
}

/* Dark mode footer */
[data-theme="dark"] .site-footer--light {
  background: #0d1117 !important;
  color: #c9d1d9;
  border-top-color: #21262d
}

[data-theme="dark"] .footer-pay-strip {
  border-bottom-color: #21262d
}

[data-theme="dark"] .footer-pay-badge {
  background: #161b22;
  border-color: #30363d;
  color: #c9d1d9
}

[data-theme="dark"] .footer-pay-more {
  color: #818cf8
}

[data-theme="dark"] .site-footer--light .footer-col-heading {
  color: #6e7681
}

[data-theme="dark"] .footer-col-accordion {
  border-bottom-color: #1e293b
}

[data-theme="dark"] .site-footer--light .footer-col-links a {
  color: #8b949e
}

[data-theme="dark"] .site-footer--light .footer-col-links a:hover {
  color: #818cf8
}

[data-theme="dark"] .footer-app-inner {
  background: #161b22;
  border-color: #30363d
}

[data-theme="dark"] .footer-app-title {
  color: #e6edf3
}

[data-theme="dark"] .footer-app-desc {
  color: #8b949e
}

[data-theme="dark"] .footer-store-btn {
  background: #21262d;
  color: #e6edf3
}

[data-theme="dark"] .footer-store-btn:hover {
  background: #6366f1
}

[data-theme="dark"] .footer-download-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5)
}

[data-theme="dark"] .footer-download-btn:hover {
  background: linear-gradient(135deg, #818cf8, #6366f1)
}

[data-theme="dark"] .footer-bottom-bar {
  border-top-color: #21262d
}

[data-theme="dark"] .site-footer--light .footer-copy {
  color: #6e7681
}

[data-theme="dark"] .footer-social-icon {
  background: #161b22;
  color: #8b949e
}

[data-theme="dark"] .footer-social-icon:hover {
  background: #6366f1;
  color: #fff
}

[data-theme="dark"] .footer-currency-select {
  background: #161b22;
  color: #c9d1d9;
  border-color: #30363d
}

/* ─── FLOATING BUTTONS ───────────────────────────────────── */
.float-support-wrap {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.float-support-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatBounce 3s ease-in-out infinite
}

.float-support-btn:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-xl);
  animation: none
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.whatsapp-btn {
  background: #25d366;
  color: #fff
}

.telegram-btn {
  background: #0088cc;
  color: #fff
}

/* ─── THANK YOU PAGE ─────────────────────────────────────── */
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px
}

.thankyou-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 8px
}

.thankyou-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 32px
}

/* ─── SPINNERS ───────────────────────────────────────────── */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .7s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, #e8eaed 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius-sm)
}

@keyframes shimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

