/* BlastMyCV — App Promotion Styles */

/* Store buttons row */
.bmcv-store-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.bmcv-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a3a5c;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.bmcv-store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  text-decoration: none;
  color: #1a3a5c;
}

.bmcv-store-btn strong {
  font-size: 13px;
  display: block;
  line-height: 1;
}

.bmcv-store-label {
  font-size: 9px;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* QR codes row */
.bmcv-qr-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bmcv-qr-item { text-align: center; }

.bmcv-qr-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.bmcv-qr-wrap img { display: block; border-radius: 4px; }

.bmcv-qr-label {
  margin-top: 6px;
  font-size: 10px;
  color: #aabbcc;
  font-weight: bold;
}

/* App section portal block override */
.bmcv-app-section .portal-block-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .bmcv-qr-row { display: none; }
  .bmcv-store-btns { flex-direction: column; align-items: center; }
  #bmcv-sidebar-app { display: none; }
  #bmcv-footer-cta .container { flex-direction: column; }
}
