/**
 * Mándale Flores - PWA & Web Push Styles (v1.1.0)
 */

/* Tarjeta Dedicada en Mi Cuenta (/my-account/) */
.mf-account-pwa-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.mf-pwa-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.mf-pwa-card-icon {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mf-pwa-card-title h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.mf-pwa-card-title p {
  margin: 0;
  font-size: 13.5px;
  color: #64748b;
}

.mf-pwa-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.mf-pwa-action-box {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.2s ease;
}

.mf-pwa-action-box:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mf-pwa-action-info strong {
  display: block;
  font-size: 14.5px;
  color: #0f172a;
  margin-bottom: 3px;
}

.mf-pwa-action-info span {
  font-size: 12.5px;
  color: #64748b;
}

.mf-btn-pwa-primary {
  background: #e05368;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease;
}

.mf-btn-pwa-primary:hover {
  background: #c83d52;
}

.mf-btn-pwa-primary.active {
  background: #10b981;
}

.mf-btn-pwa-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}

.mf-btn-pwa-secondary:hover {
  border-color: #e05368;
  color: #e05368;
}

/* Guía para iPhone Safari */
.mf-ios-guide-box {
  margin-top: 18px;
  background: #fff1f2;
  border: 1px dashed #f43f5e;
  border-radius: 12px;
  padding: 16px 20px;
}

.mf-ios-guide-box h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #9f1239;
  font-weight: 700;
}

.mf-ios-guide-box ol {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  color: #881337;
  line-height: 1.6;
}
