/* ── Gift Card CSS ─────────────────────────────── */

.gc-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #3949AB, #5C6BC0);
  border-radius: 18px;
  padding: 20px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(57,73,171,0.25);
}

.gc-hero-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.18);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}

.gc-hero h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.gc-hero p  { font-size: 13px; opacity: 0.85; }

/* Grid */
.gc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.gc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gc-card:active { transform: scale(0.97); }

.gc-card-img {
  height: 90px;
  overflow: hidden;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
}

.gc-card-img img { width: 100%; height: 100%; object-fit: cover; }

.gc-placeholder { font-size: 36px; color: var(--text3); }

.gc-card-body { padding: 10px 12px; }
.gc-card-body h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.gc-card-body p  { font-size: 12px; color: var(--text2); }

/* Upload Area */
.gc-upload-area {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text3);
  font-size: 13px;
}

.gc-upload-area i { font-size: 28px; }
.gc-upload-area:active { background: var(--bg); border-color: var(--primary); }
