.footer-qr-placeholder {
  display: flex;
  padding: 18px;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 172px;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: rgba(247, 241, 229, 0.7);
  font-size: 12px;
  text-align: center;
  line-height: 1.7;
}

.footer-qr-image {
  display: block;
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: 8px;
}

.footer-brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(197, 166, 106, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.footer-brand-panel span {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: #f7f1e5;
}

.footer-brand-summary {
  margin: 0;
  color: rgba(247, 241, 229, 0.86);
  line-height: 1.9;
}

.footer-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-brand-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.footer-brand-actions a:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f1e5;
  border: 1px solid rgba(197, 166, 106, 0.24);
}

.footer-brand-actions a:last-child {
  background: linear-gradient(135deg, #e4c98d 0, #d3af61 100%);
  color: #14304a;
}

@media (max-width: 1199px) {
  .footer-brand-panel {
    min-height: 0;
  }
}

@media (max-width: 991px) {
  .footer-brand-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 420px;
    padding: 20px;
  }

  .footer-brand-actions a {
    flex: 1 1 0;
  }
}

@media (max-width: 767px) {
  .footer-brand-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .footer-brand-actions {
    flex-direction: column;
  }

  .footer-brand-actions a {
    width: 100%;
  }
}
