/* Generic component styles shared across UI (cards, grids) */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* comic gift card with bold outline and speech-bubble desc */
.gift-card {
  background: linear-gradient(180deg,#fffaff,#fff6f0);
  border-radius: 8px;
  overflow: visible;
  box-shadow: 10px 16px 0 rgba(0,0,0,0.08);
  border: 4px solid var(--comic-outline);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gift-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 14px 20px 0 rgba(0,0,0,0.12);
}

.gift-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg,#fff,#fff6f8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 3px dashed rgba(0,0,0,0.06);
}
.gift-image img { width: auto; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gift-placeholder { font-size: 48px; opacity: 0.6; }

.gift-content { padding: 18px; position: relative; }
.gift-content h3 { margin: 0 0 8px 0; font-size: 22px; color: var(--comic-accent); text-shadow: 2px 2px 0 rgba(0,0,0,0.05); }
.gift-desc { margin: 0 0 12px 0; color: var(--comic-outline); font-size: 15px; line-height: 1.5; font-weight:700; }
.gift-why {
  margin: 0;
  font-size: 14px;
  color: #111;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4));
  padding: 10px;
  border-radius: 8px;
  border: 3px solid var(--comic-outline);
  line-height: 1.4;
}

/* comic panel table */
.table-scroll { margin-top: 28px; padding: 18px; border-radius: 8px; background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,245,0.98)); box-shadow: 10px 16px 0 rgba(0,0,0,0.08); border: 4px solid var(--comic-outline); }
.table-scroll table { width: 100%; border-collapse: collapse; min-width: 1000px; font-size: 18px; }
.table-scroll th { text-align: left; padding: 14px 16px; border-bottom: 3px solid rgba(0,0,0,0.06); color: var(--comic-blue); font-weight: 900; font-size: 18px; text-transform: uppercase; }
.table-scroll td { padding: 12px 16px; vertical-align: top; border-bottom: 2px dotted rgba(0,0,0,0.04); color: #111; line-height: 1.6; font-size: 18px; }