/* ==========================================================================
   FOOTER CSS — Blue theme
   ========================================================================== */
.bv-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  padding: var(--bv-space-2xl) 0 0;
}
.bv-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--bv-space-xl);
  padding-bottom: var(--bv-space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand */
.bv-footer-brand h3 {
  font-family: var(--bv-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bv-white);
  margin-bottom: var(--bv-space-sm);
  letter-spacing: -0.02em;
}
.bv-footer-brand h3 span { color: var(--bv-blue-light); }
.bv-footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--bv-space-md);
}

/* Newsletter */
.bv-newsletter {
  display: flex;
  gap: 0;
  border-radius: var(--bv-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.bv-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--bv-white);
  font-family: var(--bv-font-body);
  font-size: 0.85rem;
  outline: none;
}
.bv-newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.bv-newsletter button {
  padding: 0.75rem 1.25rem;
  background: var(--bv-blue);
  color: var(--bv-white);
  font-family: var(--bv-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--bv-transition);
  white-space: nowrap;
}
.bv-newsletter button:hover { background: var(--bv-blue-dark); }

/* Columns */
.bv-footer-col h4 {
  font-family: var(--bv-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bv-white);
  margin-bottom: var(--bv-space-md);
}
.bv-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}
.bv-footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--bv-transition);
}
.bv-footer-col ul li a:hover { color: var(--bv-accent); }

/* Bottom bar */
.bv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: var(--bv-space-md) 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.bv-socials { display: flex; gap: 0.5rem; align-items: center; }
.bv-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--bv-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--bv-transition), color var(--bv-transition);
}
.bv-socials a:hover { background: var(--bv-blue); color: var(--bv-white); }
.bv-socials svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; }

/* Responsive */
@media (max-width: 1024px) {
  .bv-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--bv-space-lg); }
  .bv-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .bv-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .bv-footer-grid { grid-template-columns: 1fr; }
}
/* Payment Methods */
.bv-payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.bv-payment-text {
    margin-right: 4px;
    white-space: nowrap;
}

.bv-payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 3px;
    padding: 2px 4px;
    transition: transform 0.2s ease;
}

.bv-payment-icon svg {
    height: 16px;
    width: auto;
    display: block;
}

/* Stripe ka background thoda alag — uska logo purple hai */
.bv-payment-icon[aria-label="Stripe"] {
    background: #fff;
}

.bv-payment-icon:hover {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 640px) {
    .bv-payment-methods {
        justify-content: center;
        width: 100%;
    }
}