/* ============================================
   Gasia AI Shop — Styles
   แก้สี/ฟอนต์/ขนาดได้ที่ :root variables
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors */
  --purple: #E8D5F5;
  --purple-dark: #C9A7E4;
  --pink: #FFD6E0;
  --pink-dark: #FFB0C1;
  --mint: #C1F0DB;
  --mint-dark: #8DE0B8;
  --cream: #FFF8E7;
  --cream-dark: #FFE9B8;
  --gradient-btn: linear-gradient(135deg, #C9A7E4 0%, #FFB0C1 100%);
  --gradient-btn-hover: linear-gradient(135deg, #B88FDB 0%, #FF8FA8 100%);
  --radius: 20px;
  --radius-sm: 12px;

  /* Light mode tokens */
  --text: #4A3F5C;
  --text-light: #7B6F8E;
  --text-muted: #A99BBF;
  --shadow: rgba(138, 100, 180, 0.12);
  --shadow-hover: rgba(138, 100, 180, 0.22);
  --bg-body: linear-gradient(180deg, #FFF8E7 0%, #FFFFFF 40%, #F5EEFF 100%);
  --bg-card: #FFFFFF;
  --bg-subtle: linear-gradient(135deg, #F8F0FF 0%, #FFF0F5 100%);
  --bg-order: var(--cream);
  --bg-bank: #F9FAFB;
  --bg-upload-hover: #FAF5FF;
  --border: #EDE5F5;
  --navbar-bg: rgba(255, 255, 255, 0.85);
  --toast-bg: #FFFFFF;
  --back-bg: #FFFFFF;
  --qr-bg: #FFFFFF;
  --input-bg: #FFFFFF;
  --success-card-bg: linear-gradient(135deg, #E8FFF0 0%, #F0FFFA 100%);
  --success-card-border: #C1F0DB;
  --email-preview-bg: #FFFFFF;
  --ep-header-border: #EDE5F5;
  --slip-divider-line: #EDE5F5;
}

[data-theme="dark"] {
  --text: #E8D5F5;
  --text-light: #B8A8D0;
  --text-muted: #7B6F8E;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(0, 0, 0, 0.45);
  --bg-body: linear-gradient(180deg, #0D0B14 0%, #110F1C 40%, #160E28 100%);
  --bg-card: #1C1730;
  --bg-subtle: linear-gradient(135deg, #231A38 0%, #2A1A30 100%);
  --bg-order: #1A1530;
  --bg-bank: #16122A;
  --bg-upload-hover: #1E1838;
  --border: #2D2445;
  --navbar-bg: rgba(15, 12, 28, 0.9);
  --toast-bg: #1C1730;
  --back-bg: #1C1730;
  --qr-bg: #FFFFFF;
  --input-bg: #16122A;
  --success-card-bg: linear-gradient(135deg, #0D2A1A 0%, #0A2020 100%);
  --success-card-border: #1A4A30;
  --email-preview-bg: #16122A;
  --ep-header-border: #2D2445;
  --slip-divider-line: #2D2445;
  /* Adjust cat/size tags for dark */
  --purple: #3D2E55;
  --mint: #0D3025;
  --cream: #2A2015;
}

body {
  font-family: 'Kanit', 'Nunito', sans-serif;
  background: var(--bg-body);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ===== Navbar ===== */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,170,228,0.2);
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-btn {
  font-family: 'Kanit', sans-serif;
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-btn:hover { background: var(--purple); color: var(--text); }

.nav-btn.primary {
  background: var(--gradient-btn);
  color: white;
  box-shadow: 0 4px 15px rgba(201,167,228,0.4);
}

.nav-btn.primary:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-1px);
}

.nav-btn.fb { color: #1877F2; }
.nav-btn.fb:hover { background: #E7F0FD; }

/* ===== Pages ===== */
.page { display: none; padding: 32px 24px 60px; max-width: 1100px; margin: 0 auto; }
.page.active { display: block; }

/* ===== Hero ===== */
.hero { text-align: center; padding: 48px 20px 36px; }

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero h1 span {
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p { color: var(--text-light); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }

.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}

/* ===== Categories ===== */
.categories { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }

.cat-btn {
  font-family: 'Kanit', sans-serif;
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cat-btn:hover, .cat-btn.active { background: var(--purple); color: var(--text); border-color: var(--purple-dark); }

/* ===== Product Grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.35s ease;
  cursor: pointer;
}

.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px var(--shadow-hover); }

.product-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-thumb .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
}

.badge.new { background: linear-gradient(135deg, #FF6B9D, #C44DFF); }
.badge.hot { background: linear-gradient(135deg, #FF8A48, #FF4757); }
.badge.free { background: linear-gradient(135deg, #2ED573, #1E90FF); }

.product-info { padding: 18px 20px 22px; }
.product-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.product-info p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }

.product-footer { display: flex; justify-content: space-between; align-items: center; }

.price { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 800; color: #9B59B6; }
.price.free-price { color: #2ED573; }

.btn-buy {
  font-family: 'Kanit', sans-serif;
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  background: var(--gradient-btn);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buy:hover { background: var(--gradient-btn-hover); transform: scale(1.05); }

/* ===== Product Detail Page ===== */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.pd-main { display: flex; flex-direction: column; gap: 20px; }

.pd-hero {
  border-radius: var(--radius);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pd-hero-emoji { font-size: 7rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)); }

.pd-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.pd-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px var(--shadow);
}

.pd-meta-row { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }

.pd-cat-tag, .pd-size-tag {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.pd-cat-tag { background: var(--purple); color: var(--text); }
.pd-size-tag { background: var(--mint); color: #1a7a50; }

.pd-title { font-size: 1.7rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.pd-short { color: var(--text-light); font-size: 1rem; line-height: 1.7; }

.pd-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.9;
  white-space: pre-line;
}

.pd-features { list-style: none; }
.pd-features li {
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pd-features li:last-child { border-bottom: none; }
.pd-features li::before { content: '\2714\FE0F'; flex-shrink: 0; margin-top: 1px; }

/* Video Embed */
.pd-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pd-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-sm);
}

/* Images Gallery */
.pd-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.pd-images img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.pd-images img:hover { transform: scale(1.02); }

/* Sidebar Buy Card */
.pd-sidebar { position: sticky; top: 88px; }

.pd-buy-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px var(--shadow);
  text-align: center;
}

.pd-buy-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.pd-buy-name { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.4; }
.pd-buy-price {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #9B59B6;
  margin-bottom: 20px;
}

.pd-buy-btn { width: 100%; font-size: 1.05rem; padding: 14px; margin-bottom: 20px; }

.pd-buy-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: left;
}

.pd-buy-perks div { display: flex; align-items: center; gap: 6px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Checkout ===== */
.checkout-container { max-width: 520px; margin: 20px auto; }

.checkout-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 30px var(--shadow);
  margin-bottom: 20px;
}

.checkout-card h3 { font-size: 1.1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

.order-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-order);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.order-summary .thumb { font-size: 2.5rem; }
.order-summary .details h4 { font-size: 1rem; margin-bottom: 4px; }
.order-summary .details p { font-size: 0.82rem; color: var(--text-light); }

.email-card-inner {
  padding: 20px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
}

.email-card-inner label { display: block; font-size: 0.88rem; color: var(--text-light); margin-bottom: 8px; }
.email-card-inner .email-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }

.form-input {
  font-family: 'Kanit', sans-serif;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  background: var(--input-bg);
  color: var(--text);
}

.form-input:focus { border-color: var(--purple-dark); }

.amount-box {
  text-align: center;
  padding: 28px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 2px dashed var(--purple-dark);
  margin-bottom: 20px;
}

.amount-label { font-size: 0.88rem; color: var(--text-light); margin-bottom: 6px; }
.amount-value { font-family: 'Nunito', sans-serif; font-size: 2.8rem; font-weight: 800; color: #9B59B6; letter-spacing: 1px; }
.amount-unit { font-size: 1rem; color: var(--text-light); font-weight: 600; }
.amount-note { font-size: 0.78rem; color: var(--pink-dark); margin-top: 8px; }

.bank-info { padding: 16px; background: var(--bg-bank); border-radius: var(--radius-sm); margin-bottom: 8px; }
.bank-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; align-items: center; }
.bank-row .label { color: var(--text-light); }
.bank-row .value { font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }

.copy-btn {
  font-family: 'Kanit', sans-serif;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--purple);
  background: transparent;
  color: var(--text-light);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover { background: var(--purple); color: var(--text); }

.qr-box { text-align: center; padding: 20px; }

.qr-placeholder {
  width: 100%;
  max-width: 540px;
  background: var(--qr-bg);
  border: 2px solid #EDE5F5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-direction: column;
  gap: 6px;
}

.qr-placeholder .qr-icon { font-size: 3rem; }

/* ===== Upload ===== */
.upload-area {
  border: 2px dashed var(--purple);
  border-radius: var(--radius-sm);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.upload-area:hover { border-color: var(--purple-dark); background: var(--bg-upload-hover); }
.upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 8px; }
.upload-area p { font-size: 0.9rem; color: var(--text-light); }
.upload-area .upload-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.upload-preview { display: none; text-align: center; }
.upload-preview img {
  max-width: 280px;
  max-height: 300px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px var(--shadow);
  margin-bottom: 16px;
}

.btn-submit {
  font-family: 'Kanit', sans-serif;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  background: var(--gradient-btn);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201,167,228,0.4);
}

.btn-submit:hover { background: var(--gradient-btn-hover); transform: translateY(-2px); }
.btn-submit:disabled { background: #E0E0E0; color: #AAA; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-secondary {
  font-family: 'Kanit', sans-serif;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-secondary:hover { background: var(--bg-upload-hover); }
.btn-secondary:disabled { border-color: #DDD; color: #AAA; cursor: not-allowed; }

.slip-option-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 10px;
}
.slip-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 18px 0;
  position: relative;
}
.slip-divider::before, .slip-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--slip-divider-line);
}
.slip-divider::before { left: 0; }
.slip-divider::after { right: 0; }

/* ===== Steps ===== */
.steps { display: flex; justify-content: center; gap: 0; margin-bottom: 28px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); padding: 4px 12px; }
.step.active { color: #9B59B6; font-weight: 600; }
.step.done { color: #2ED573; }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step.active .step-num { background: #9B59B6; border-color: #9B59B6; color: white; }
.step.done .step-num { background: #2ED573; border-color: #2ED573; color: white; }
.step-line { width: 30px; height: 2px; background: var(--border); align-self: center; }

/* ===== Status & Success ===== */
.status-card { text-align: center; padding: 40px; }
.status-icon { font-size: 4rem; margin-bottom: 12px; }
.status-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.status-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

.success-card {
  text-align: center;
  padding: 40px;
  background: var(--success-card-bg);
  border-radius: var(--radius);
  border: 2px solid var(--success-card-border);
}

.success-icon { font-size: 4rem; margin-bottom: 12px; }
.success-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: #2ED573; }
.success-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

.email-highlight {
  display: inline-block;
  background: var(--bg-card);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: #9B59B6;
  margin: 12px 0;
  box-shadow: 0 2px 10px var(--shadow);
}

/* ===== Back Button ===== */
.back-btn {
  font-family: 'Kanit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--back-bg);
  color: var(--text-light);
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.back-btn:hover { border-color: var(--purple-dark); color: var(--text); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--toast-bg);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(74,63,92,0.2);
  font-size: 0.9rem;
  z-index: 999;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 32px 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer a { color: #9B59B6; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer .footer-links { display: flex; gap: 16px; justify-content: center; margin-top: 10px; }
.footer .footer-links a { display: inline-flex; align-items: center; gap: 4px; }

/* ===== Email Preview ===== */
.email-preview {
  background: var(--email-preview-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px auto 0;
  max-width: 380px;
  text-align: left;
  box-shadow: 0 2px 10px var(--shadow);
}

.email-preview .ep-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ep-header-border);
}

.email-preview .ep-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.email-preview .ep-from { font-size: 0.82rem; color: var(--text-light); }
.email-preview .ep-subject { font-weight: 600; font-size: 0.9rem; }
.email-preview .ep-body { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.email-preview .ep-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2ED573, #1E90FF);
  color: white;
  font-family: 'Kanit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* ===== Dark Mode Toggle ===== */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-subtle);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.1); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .pd-layout { grid-template-columns: 1fr; }
  .pd-sidebar { position: static; }
  .pd-buy-card { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.7rem; }
  .product-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }
  .page { padding: 20px 16px 40px; }
  .steps { gap: 2px; }
  .step { padding: 4px 6px; font-size: 0.75rem; }
  .step-line { width: 16px; }
  .nav-links { gap: 4px; }
  .pd-hero { height: 200px; }
  .pd-hero-emoji { font-size: 5rem; }
  .pd-title { font-size: 1.4rem; }
  .pd-card { padding: 20px; }
}
