/* ===========================================
   PunRealm — EzWriter Full Component Styles
   Niche: Puns, Jokes, Kids Gifts & Toys
   Vibe: Playful · Warm · Joyful · Energetic
   Version: 1.0.0
   All rules scoped to .ezw-wrap
   Works standalone — no base CSS required
=========================================== */

/* ══════════════════════════════════════════
   0. RESET / BASE — scoped to .ezw-wrap
══════════════════════════════════════════ */
.ezw-wrap *,
.ezw-wrap *::before,
.ezw-wrap *::after {
  box-sizing: border-box;
}

/* ══════════════════════════════════════════
   1. BRAND COLOUR TOKENS + WRAP BASE
══════════════════════════════════════════ */
.ezw-wrap {
  --ezw-primary:       #f97316;
  --ezw-primary-dark:  #ea580c;
  --ezw-accent:        #facc15;
  --ezw-secondary:     #8b5cf6;
  --ezw-soft-bg:       #fff7ed;
  --ezw-soft-blue:     #fef9c3;
  --ezw-border:        #fed7aa;
  --ezw-text:          #1c1917;
  --ezw-heading:       #1c1917;
  --ezw-heading-soft:  #fde68a;
  --ezw-muted:         #78716c;

  font-family: 'Nunito', 'Quicksand', 'Comic Neue', 'Segoe UI', sans-serif;
  color: var(--ezw-text);
  line-height: 1.75;
  background: transparent;
}

/* ══════════════════════════════════════════
   2. HEADINGS
══════════════════════════════════════════ */
.ezw-wrap h2 {
  font-size: 1.55em;
  font-weight: 800;
  color: var(--ezw-heading);
  margin: 2em 0 0.6em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ezw-heading-soft);
  position: relative;
}

.ezw-wrap h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--ezw-primary), var(--ezw-accent));
  border-radius: 2px;
}

.ezw-wrap h3 {
  font-size: 1.18em;
  font-weight: 700;
  color: var(--ezw-heading);
  margin: 1.5em 0 0.5em;
  letter-spacing: 0;
}

.ezw-wrap p {
  margin: 0 0 1em;
  color: var(--ezw-text);
}

.ezw-wrap ul,
.ezw-wrap ol {
  margin: 0.5em 0 1em 1.4em;
  padding: 0;
}

.ezw-wrap li {
  margin-bottom: 0.35em;
  color: var(--ezw-text);
}

.ezw-wrap a {
  color: var(--ezw-primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ezw-wrap a:hover {
  color: var(--ezw-primary);
}

/* ══════════════════════════════════════════
   3. QUICK ANSWER BOX
══════════════════════════════════════════ */
.ezw-quick-answer {
  background: var(--ezw-soft-bg);
  border-left: 5px solid var(--ezw-primary);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 1.6em 0;
}

.ezw-qa-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ezw-primary);
  margin-bottom: 8px;
}

.ezw-qa-label::before {
  content: '💡 ';
}

.ezw-quick-answer p {
  margin: 0;
  font-size: 0.97em;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   4. TIP BOX
══════════════════════════════════════════ */
.ezw-tip-box {
  background: #fefce8;
  border-left: 5px solid var(--ezw-accent);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
}

.ezw-tip-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #ca8a04;
  margin-bottom: 7px;
}

.ezw-tip-label::before {
  content: '✨ ';
}

.ezw-tip-box p {
  margin: 0;
  font-size: 0.96em;
}

/* ══════════════════════════════════════════
   5. NOTE BOX
══════════════════════════════════════════ */
.ezw-note-box {
  background: #f5f3ff;
  border-left: 5px solid var(--ezw-secondary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
}

.ezw-note-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-secondary);
  margin-bottom: 7px;
}

/* NOTE: Do NOT put emoji in the HTML label text.
   The CSS adds it automatically via ::before     */
.ezw-note-label::before {
  content: '📝 ';
}

.ezw-note-box p {
  margin: 0;
  font-size: 0.96em;
}

/* ══════════════════════════════════════════
   6. WARNING BOX
══════════════════════════════════════════ */
.ezw-warning-box {
  background: #fff1f2;
  border-left: 5px solid #f43f5e;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
}

.ezw-warn-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #e11d48;
  margin-bottom: 7px;
}

.ezw-warn-label::before {
  content: '⚠️ ';
}

.ezw-warning-box p {
  margin: 0;
  font-size: 0.96em;
}

/* ══════════════════════════════════════════
   7. TAKEAWAY BOX
══════════════════════════════════════════ */
.ezw-takeaway-box {
  background: #faf5ff;
  border-left: 5px solid var(--ezw-secondary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.6em 0;
}

.ezw-takeaway-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-secondary);
  margin-bottom: 7px;
}

.ezw-takeaway-label::before {
  content: '🎯 ';
}

.ezw-takeaway-box p {
  margin: 0;
  font-size: 0.96em;
}

/* ══════════════════════════════════════════
   8. SUMMARY / RECAP BOX
══════════════════════════════════════════ */
.ezw-summary-box {
  background: #faf5ff;
  border-left: 5px solid var(--ezw-secondary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.6em 0;
}

.ezw-summary-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-secondary);
  margin-bottom: 10px;
}

.ezw-summary-label::before {
  content: '📋 ';
}

.ezw-summary-box ul {
  margin: 0;
  padding-left: 1.4em;
}

.ezw-summary-box li {
  margin-bottom: 0.4em;
  font-size: 0.96em;
}

/* ══════════════════════════════════════════
   9. NUMBERED STEPS
══════════════════════════════════════════ */
.ezw-steps {
  margin: 1.6em 0;
}

.ezw-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #fde8d0;
}

.ezw-step:last-child {
  border-bottom: none;
}

.ezw-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--ezw-primary);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(249,115,22,.30);
  margin-top: 2px;
}

.ezw-step-body {
  flex: 1;
}

.ezw-step-body strong {
  display: block;
  font-weight: 700;
  font-size: 1em;
  color: var(--ezw-heading);
  margin-bottom: 5px;
}

.ezw-step-body p {
  margin: 0;
  font-size: 0.96em;
  color: var(--ezw-muted);
}

/* ══════════════════════════════════════════
   10. CHECKLIST
══════════════════════════════════════════ */
.ezw-checklist {
  background: var(--ezw-soft-bg);
  border: 1.5px solid var(--ezw-border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 1.4em 0;
}

.ezw-checklist-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-primary);
  margin-bottom: 10px;
}

.ezw-checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ezw-checklist li {
  padding: 5px 0 5px 26px;
  position: relative;
  font-size: 0.96em;
  border-bottom: 1px solid #fde8d0;
}

.ezw-checklist li:last-child {
  border-bottom: none;
}

.ezw-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--ezw-primary);
  font-weight: 800;
  font-size: 1em;
}

/* ══════════════════════════════════════════
   11. DOS & DON'TS
══════════════════════════════════════════ */
.ezw-dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.6em 0;
}

@media (max-width: 600px) {
  .ezw-dos-donts {
    grid-template-columns: 1fr;
  }
}

.ezw-dos,
.ezw-donts {
  border-radius: 12px;
  padding: 16px 18px;
}

.ezw-dos {
  background: #fff7ed;
  border-top: 4px solid var(--ezw-primary);
}

.ezw-donts {
  background: #fff1f2;
  border-top: 4px solid #f43f5e;
}

.ezw-dos-title,
.ezw-donts-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.ezw-dos-title {
  color: var(--ezw-primary);
}

.ezw-dos-title::before {
  content: '✅ ';
}

.ezw-donts-title {
  color: #e11d48;
}

.ezw-donts-title::before {
  content: '❌ ';
}

.ezw-dos ul,
.ezw-donts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ezw-dos li,
.ezw-donts li {
  padding: 4px 0;
  font-size: 0.95em;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.ezw-dos li:last-child,
.ezw-donts li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════════
   12. TABLE
══════════════════════════════════════════ */
.ezw-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(249,115,22,.12);
  margin: 1.6em 0;
}

.ezw-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}

.ezw-table-wrap thead {
  background: var(--ezw-primary);
}

.ezw-table-wrap th {
  color: #fff;
  font-family: 'Nunito', 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.ezw-table-wrap td {
  padding: 11px 16px;
  border-bottom: 1px solid #fde8d0;
  color: var(--ezw-text);
}

.ezw-table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.ezw-table-wrap tbody tr:nth-child(even) {
  background: #fffbf5;
}

.ezw-table-wrap tbody tr:hover {
  background: #fff7ed;
}

/* ══════════════════════════════════════════
   13. FAQ ACCORDION
══════════════════════════════════════════ */
.ezw-faq {
  margin: 1.6em 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #fde8d0;
}

.ezw-faq-item {
  border-bottom: 1px solid #fde8d0;
}

.ezw-faq-item:last-child {
  border-bottom: none;
}

.ezw-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  font-weight: 700;
  font-size: 0.97em;
  color: var(--ezw-heading);
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: background 0.18s ease, color 0.18s ease;
  gap: 12px;
}

.ezw-faq-q:hover {
  background: var(--ezw-soft-bg);
  color: var(--ezw-primary);
}

.ezw-faq-q::after {
  content: '＋';
  color: var(--ezw-primary);
  font-size: 1.25em;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  line-height: 1;
}

.ezw-faq-item.open .ezw-faq-q {
  background: var(--ezw-soft-bg);
  color: var(--ezw-primary);
}

.ezw-faq-item.open .ezw-faq-q::after {
  transform: rotate(45deg);
}

.ezw-faq-a {
  display: none;
  padding: 0 18px 15px;
  background: var(--ezw-soft-bg);
}

.ezw-faq-item.open .ezw-faq-a {
  display: block;
}

.ezw-faq-a p {
  margin: 10px 0 0;
  font-size: 0.95em;
  color: var(--ezw-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   14. STAT STRIP
══════════════════════════════════════════ */
.ezw-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.6em 0;
}

.ezw-stat-item {
  flex: 1 1 140px;
  background: #fff7ed;
  border-top: 3px solid var(--ezw-primary);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(249,115,22,.10);
}

.ezw-stat-number {
  display: block;
  font-size: 1.8em;
  font-weight: 800;
  color: var(--ezw-primary);
  line-height: 1.1;
}

.ezw-stat-desc {
  display: block;
  font-size: 0.8em;
  color: var(--ezw-muted);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   15. HIGHLIGHT STRIP
══════════════════════════════════════════ */
.ezw-highlight {
  background: linear-gradient(135deg, #fff7ed 0%, #fefce8 100%);
  border-left: 5px solid var(--ezw-primary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
}

.ezw-highlight-text {
  font-weight: 700;
  color: var(--ezw-primary);
  font-size: 1em;
}

/* ══════════════════════════════════════════
   16. PRO TIPS
══════════════════════════════════════════ */
.ezw-pro-tips {
  background: #fff7ed;
  border-left: 5px solid var(--ezw-primary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.6em 0;
}

.ezw-pro-tips-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-primary);
  margin-bottom: 10px;
}

/* NOTE: Do NOT put emoji in the HTML label.
   CSS adds it via ::before automatically      */
.ezw-pro-tips-title::before {
  content: '🔥 ';
}

.ezw-pro-tips ul {
  margin: 0;
  padding-left: 1.4em;
}

.ezw-pro-tips li {
  margin-bottom: 0.4em;
  font-size: 0.96em;
}

/* ══════════════════════════════════════════
   17. COST BOX
══════════════════════════════════════════ */
.ezw-cost-box {
  border: 1.5px solid var(--ezw-border);
  border-left: 5px solid var(--ezw-primary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
  background: #fff;
}

.ezw-cost-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-primary);
  margin-bottom: 10px;
}

.ezw-cost-label::before {
  content: '💰 ';
}

.ezw-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #fde8d0;
  font-size: 0.95em;
}

.ezw-cost-row:last-child {
  border-bottom: none;
}

.ezw-cost-row span:last-child {
  font-weight: 700;
  color: var(--ezw-primary-dark);
}

/* ══════════════════════════════════════════
   18. TOOLS BOX / SPEC TAGS
══════════════════════════════════════════ */
.ezw-tools-box {
  background: #fff7ed;
  border: 1.5px solid var(--ezw-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
}

.ezw-tools-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ezw-primary);
  margin-bottom: 10px;
}

.ezw-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ezw-tool-tag {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--ezw-border);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.85em;
  font-weight: 700;
  color: var(--ezw-primary-dark);
  transition: background 0.15s ease;
}

.ezw-tool-tag:hover {
  background: var(--ezw-soft-bg);
}

/* ══════════════════════════════════════════
   19. DID YOU KNOW
══════════════════════════════════════════ */
.ezw-did-you-know {
  background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ezw-dyk-icon {
  font-size: 1.6em;
  flex-shrink: 0;
  line-height: 1.2;
}

.ezw-dyk-body {
  flex: 1;
}

.ezw-dyk-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #b45309;
  margin-bottom: 5px;
}

/* NOTE: Do NOT add emoji in HTML for dyk-label.
   Use the ezw-dyk-icon element for the emoji.   */

.ezw-dyk-body p {
  margin: 0;
  font-size: 0.95em;
  color: #78350f;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   20. ALERT BOX
══════════════════════════════════════════ */
.ezw-alert-box {
  background: #fff1f2;
  border-left: 5px solid #f43f5e;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.4em 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ezw-alert-icon {
  font-size: 1.4em;
  color: #f43f5e;
  flex-shrink: 0;
}

.ezw-alert-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #e11d48;
  margin-bottom: 5px;
}

.ezw-alert-box p {
  margin: 0;
  font-size: 0.95em;
}

/* ══════════════════════════════════════════
   21. COMPARE COLS (Good vs Bad)
══════════════════════════════════════════ */
.ezw-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.6em 0;
}

@media (max-width: 600px) {
  .ezw-compare {
    grid-template-columns: 1fr;
  }
}

.ezw-compare-col {
  border-radius: 12px;
  padding: 16px 18px;
}

.ezw-compare-col.good {
  background: #fff7ed;
  border-top: 4px solid var(--ezw-primary);
}

.ezw-compare-col.bad {
  background: #fff1f2;
  border-top: 4px solid #f43f5e;
}

.ezw-compare-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.ezw-compare-col.good .ezw-compare-title {
  color: var(--ezw-primary);
}

.ezw-compare-col.bad .ezw-compare-title {
  color: #e11d48;
}

.ezw-compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ezw-compare-col li {
  padding: 4px 0;
  font-size: 0.95em;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.ezw-compare-col li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════════
   22. EXPERT BOX
══════════════════════════════════════════ */
.ezw-expert-box {
  background: #f5f3ff;
  border-left: 5px solid var(--ezw-secondary);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.6em 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ezw-expert-icon {
  font-size: 1.6em;
  flex-shrink: 0;
  line-height: 1.2;
}

.ezw-expert-body {
  flex: 1;
}

.ezw-expert-label {
  display: block;
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ezw-secondary);
  margin-bottom: 5px;
}

.ezw-expert-body p {
  margin: 0;
  font-size: 0.95em;
  color: var(--ezw-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   23. PROS & CONS (for reviews/amazon)
══════════════════════════════════════════ */
.ezw-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.6em 0;
}

@media (max-width: 600px) {
  .ezw-pros-cons {
    grid-template-columns: 1fr;
  }
}

.ezw-pros {
  background: #f0fdf4;
  border-top: 4px solid #22c55e;
  border-radius: 12px;
  padding: 16px 18px;
}

.ezw-cons {
  background: #fff1f2;
  border-top: 4px solid #f43f5e;
  border-radius: 12px;
  padding: 16px 18px;
}

.ezw-pros-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #16a34a;
  margin-bottom: 10px;
}

.ezw-cons-title {
  display: block;
  font-weight: 800;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e11d48;
  margin-bottom: 10px;
}

.ezw-pros ul,
.ezw-cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ezw-pros li,
.ezw-cons li {
  padding: 4px 0;
  font-size: 0.95em;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
}

.ezw-pros li:last-child,
.ezw-cons li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════════
   24. PUN CARD ✨ (PunRealm exclusive)
══════════════════════════════════════════ */
.ezw-pun-card {
  background: linear-gradient(135deg, #fefce8 0%, #fff7ed 100%);
  border: 2px dashed var(--ezw-accent);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 1.8em 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ezw-pun-card::before {
  content: '😂';
  position: absolute;
  top: -6px;
  right: 14px;
  font-size: 2.4em;
  opacity: 0.18;
  pointer-events: none;
}

.ezw-pun-card-label {
  display: block;
  color: var(--ezw-primary);
  font-weight: 800;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ezw-pun-card-joke {
  font-size: 1.18em;
  font-weight: 700;
  color: var(--ezw-heading);
  line-height: 1.5;
  margin: 0 0 10px;
}

.ezw-pun-card-punchline {
  font-size: 1em;
  font-weight: 600;
  color: var(--ezw-primary);
  margin: 0;
  font-style: italic;
}

/* ══════════════════════════════════════════
   25. GIFT CARD ✨ (PunRealm exclusive)
══════════════════════════════════════════ */
.ezw-gift-card {
  background: #fff;
  border: 1.5px solid var(--ezw-border);
  border-top: 4px solid var(--ezw-primary);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 1.6em 0;
  box-shadow: 0 4px 16px rgba(249,115,22,.09);
}

.ezw-gift-card-badge {
  display: inline-block;
  background: var(--ezw-primary);
  color: #fff;
  font-size: 0.78em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ezw-gift-card-title {
  font-size: 1.1em;
  font-weight: 800;
  color: var(--ezw-heading);
  margin: 0 0 8px;
  line-height: 1.35;
}

.ezw-gift-card-desc {
  margin: 0 0 14px;
  color: var(--ezw-muted);
  font-size: 0.96em;
  line-height: 1.6;
}

.ezw-gift-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88em;
  color: var(--ezw-muted);
}

.ezw-gift-card-meta span {
  background: var(--ezw-soft-bg);
  border: 1px solid var(--ezw-border);
  border-radius: 20px;
  padding: 3px 11px;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   26. AGE BADGE ✨ (inline utility)
══════════════════════════════════════════ */
.ezw-age-badge {
  display: inline-block;
  background: var(--ezw-accent);
  color: #78350f;
  font-size: 0.82em;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════
   27. STAR RATING ✨ (inline utility)
══════════════════════════════════════════ */
.ezw-stars {
  color: var(--ezw-accent);
  font-size: 1.1em;
  letter-spacing: 0.05em;
  font-style: normal;
  -webkit-text-stroke: 0.5px #d97706;
}

/* ══════════════════════════════════════════
   28. RESPONSIVE TWEAKS
══════════════════════════════════════════ */
@media (max-width: 640px) {
  .ezw-pun-card       { padding: 18px 16px; }
  .ezw-gift-card      { padding: 16px 14px; }
  .ezw-pun-card-joke  { font-size: 1.05em; }
  .ezw-step           { gap: 12px; }
  .ezw-step-num       { width: 32px; height: 32px; font-size: 13px; }
  .ezw-stat-item      { flex: 1 1 100px; }
  .ezw-table-wrap th,
  .ezw-table-wrap td  { padding: 9px 12px; }
  .ezw-faq-q          { padding: 13px 14px; font-size: 0.94em; }
}

/* ══════════════════════════════════════════
   29. AMAZON PRODUCT IMAGE BLOCK
══════════════════════════════════════════ */
.ezw-wrap .tcbs-product-image-block {
  text-align: center;
  margin: 1.5em 0 1.8em;
}

.ezw-wrap .tcbs-pa-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  display: block;
  margin: 0 auto;
}

.ezw-wrap .tcbs-amazon-btn {
  display: inline-block;
  background: #FF9900;
  color: #111 !important;
  font-weight: 700;
  padding: 0.65em 1.6em;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  margin-top: 0.85em;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
}

.ezw-wrap .tcbs-amazon-btn:hover {
  background: #e68900;
}
