/* ===================================
   PAGES BOOKMARKLET
   =================================== */
/* ===================================
   BASE.CSS
   =================================== */

/* ===================================
   BASE.CSS - Reset, Body, Typography
   =================================== */

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

/* Base Elements */
html {
  font-size: 16px;
  line-height: 1.6;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

body {
  font-family: var(--font-family-base, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

/* Form Elements */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  border-radius: 0;
}

/* Remove default browser styling - Flat Design */
* {
  border-radius: 0 !important;
}

/* Remove all transitions for better performance */
* {
  transition: none !important;
  animation: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}
/* Screen-reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ===================================
   LAYOUT.CSS
   =================================== */

/* ===================================
   LAYOUT.CSS - Header, Footer, Grid, Section, Utilities
   =================================== */

/* ===================================
   CONTAINER
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-5);
}

/* ===================================
   GRID SYSTEM
   =================================== */
.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

.grid-auto { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ===================================
   FLEXBOX LAYOUT
   =================================== */
.flex { display: flex; }

.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }

.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* ===================================
   SPACING UTILITIES
   =================================== */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* ===================================
   SIZING UTILITIES
   =================================== */
.w-full { width: 100%; }
.w-auto { width: auto; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }

.max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }

/* ===================================
   DISPLAY UTILITIES
   =================================== */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* ===================================
   POSITION UTILITIES
   =================================== */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }

/* ===================================
   TEXT UTILITIES
   =================================== */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }
.text-6xl { font-size: 60px; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }

/* ===================================
   BORDER UTILITIES
   =================================== */
.border { border: 1px solid var(--border); }
.border-0 { border: 0; }
.border-t { border-top: 1px solid var(--border); }
.border-r { border-right: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-l { border-left: 1px solid var(--border); }

.rounded-none { border-radius: 0; }
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }

/* ===================================
   OVERFLOW UTILITIES
   =================================== */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* ===================================
   OPACITY UTILITIES
   =================================== */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* ===================================
   CURSOR UTILITIES
   =================================== */
.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-text { cursor: text; }
.cursor-help { cursor: help; }

/* Remove padding to body since footer is no longer fixed */
body {
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===================================
   HEADER & FOOTER
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-primary);
  background: rgba(241, 140, 142, 0.1);
  transform: translateY(-1px);
}

.nav-link:active {
  transform: translateY(0);
}

.nav-link[aria-current="page"] {
  color: var(--accent-primary);
  background: rgba(241, 140, 142, 0.08);
}

.nav-link::after {
  display: none;
}

.nav-link:hover::after {
  display: none;
}

.nav-link:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ===================================
   SECTION LAYOUTS
   =================================== */
.section {
  padding: var(--space-16) 0;
}

.section-sm {
  padding: var(--space-8) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

.section-xl {
  padding: var(--space-32) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
  margin: 0 0 var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ===================================
   MAIN LAYOUT
   =================================== */
main {
  flex: 1;
}


/* ===================================
   THEME.CSS
   =================================== */

/* ===================================
   BOOKMARKLET PAGE CSS
   =================================== */

/* ===================================
   BODY & MAIN LAYOUT
   =================================== */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--primary, #F18C8E);
}

main {
  flex: 0 1 auto;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
  text-align: center;
  margin: 20px 0 30px;
  position: relative;
  padding-top: 20px;
  flex-shrink: 0;
}

.page-header::before {
  display: none;
}

.page-header::after {
  display: none;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-header-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header-content h1 i {
  color: var(--accent-primary, #F18C8E);
  font-size: 28px;
  flex-shrink: 0;
}

.subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* ===================================
   INSTRUCTIONS SECTION
   =================================== */
.instructions {
  background: var(--bg-secondary, #FFFFFF);
  border: 2px solid var(--accent-primary, #F18C8E);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 0;
  flex-shrink: 0;
}

.instructions h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
  margin: 0 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.instructions h3 i {
  color: var(--accent-primary, #F18C8E);
  font-size: var(--font-size-xl);
}

.instructions ol {
  margin: 0 0 var(--space-6);
  padding-left: var(--space-6);
}

.instructions li {
  font-size: var(--font-size-base);
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: var(--line-height-relaxed);
}

.instructions li strong {
  color: var(--accent-primary, #F18C8E);
  font-weight: var(--font-weight-semibold);
}

.browser-notes {
  background: var(--bg-tertiary, #F3F4F6);
  border: 2px solid var(--border-color, #E5E7EB);
  padding: var(--space-4);
  margin-top: var(--space-4);
  border-radius: var(--radius-md, 6px);
}

.browser-notes p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.browser-notes strong {
  color: var(--text);
  font-weight: var(--font-weight-semibold);
}

/* ===================================
   NO RESULTS MESSAGE
   =================================== */
.no-results {
  text-align: center;
  padding: var(--space-12);
  color: var(--text-muted);
  font-size: var(--font-size-lg);
  display: none;
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: var(--font-size-4xl);
  color: var(--border);
  margin-bottom: var(--space-4);
  display: block;
}

/* ===================================
   PAGE LAYOUT IMPROVEMENTS
   =================================== */

.bookmarklet-section {
  flex: 0 1 auto;
  background: #ffffff;
  padding: 76px 20px 60px; /* 56px nav height + 20px top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: visible;
  min-height: 0;
}

/* Container styles moved to line 8 to avoid duplication */

/* ===================================
   BOOKMARKLETS GRID
   =================================== */
.bookmarklets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
  align-items: stretch;
}

/* List View */
.bookmarklets-grid.list-view {
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.bookmarklets-grid.list-view .bookmarklet-card {
  display: flex;
  align-items: center;
  padding: var(--space-4);
}

.bookmarklets-grid.list-view .bookmarklet-header {
  margin-bottom: 0;
  margin-right: var(--space-4);
}

.bookmarklets-grid.list-view .bookmarklet-header i {
  width: var(--space-10);
  height: var(--space-10);
  font-size: var(--font-size-base);
}

.bookmarklets-grid.list-view .bookmarklet-header h3 {
  font-size: var(--font-size-lg);
}

.bookmarklets-grid.list-view p {
  margin: 0 0 0 var(--space-4);
  flex: 1;
}

.bookmarklets-grid.list-view .bookmarklet-btn {
  width: auto;
  min-width: 150px;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
}

/* ===================================
   BOOKMARKLET CARD
   =================================== */
.bookmarklet-card {
  background: var(--bg-secondary, #FFFFFF);
  border: 2px solid var(--border-color, #E5E7EB);
  border-radius: 0;
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bookmarklet-card::before {
  display: none;
}

.bookmarklet-card:hover {
  border-color: var(--accent-primary, #F18C8E);
}


.bookmarklet-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.bookmarklet-header i {
  width: var(--space-12);
  height: var(--space-12);
  background: var(--accent-primary);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

.bookmarklet-header h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
  margin: 0;
  line-height: var(--line-height-tight);
}

.bookmarklet-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: var(--line-height-normal);
  flex: 1;
}

/* ===================================
   BOOKMARKLET BUTTON
   =================================== */
.bookmarklet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent-primary, #F18C8E);
  color: white;
  border: 2px solid var(--accent-primary, #F18C8E);
  padding: 12px 16px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: none;
  margin-top: auto;
}

.bookmarklet-btn:hover {
  background: transparent;
  color: var(--accent-primary, #F18C8E);
  border-color: var(--accent-primary, #F18C8E);
}

.bookmarklet-btn:active {
  background: #FEE2E2;
  color: var(--accent-primary, #F18C8E);
  border-color: var(--accent-primary, #F18C8E);
}

.bookmarklet-btn i {
  font-size: 16px;
}

.bookmarklet-btn .btn-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

/* ===================================
   CATEGORY SECTIONS (Future use)
   =================================== */
.bookmarklet-category {
  margin: var(--space-12) 0;
}

.bookmarklet-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border);
}

.bookmarklet-category-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
  margin: 0;
}

.bookmarklet-category-icon {
  width: var(--space-10);
  height: var(--space-10);
  background: var(--accent-primary);
  color: var(--text-inverse);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
}

/* ===================================
   SEARCH/FILTER SECTION (Future use)
   =================================== */
.bookmarklet-filter {
  background: #F9FAFB;
  border: 2px solid #E5E7EB;
  border-radius: 0;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.bookmarklet-search {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 0;
  font-size: 14px;
  background: white;
  transition: none;
}

.bookmarklet-search:focus {
  outline: none;
  border-color: var(--accent-primary, #F18C8E);
}

.bookmarklet-filter-btn {
  padding: 12px 16px;
  background: white;
  color: #374151;
  border: 2px solid #E5E7EB;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  justify-content: center;
  white-space: nowrap;
}

.bookmarklet-filter-btn:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}

/* ===================================
   SCRIPT CONTAINER
   =================================== */
.script-container {
  margin-top: var(--space-4);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.script-container textarea {
  width: 100%;
  min-height: var(--space-50);
  padding: var(--space-4);
  background: var(--gray-900);
  color: var(--success);
  font-family: var(--font-family-mono, 'Courier New', monospace);
  font-size: var(--font-size-sm);
  border: none;
  resize: vertical;
  outline: none;
  line-height: var(--line-height-relaxed);
}

.script-container textarea::selection {
  background: rgba(16, 185, 129, 0.3);
}

.copy-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent-primary, #F18C8E);
  color: white;
  border: 2px solid var(--accent-primary, #F18C8E);
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: none;
}

.copy-btn:hover {
  background: transparent;
  color: var(--accent-primary, #F18C8E);
  border-color: var(--accent-primary, #F18C8E);
}

.copy-btn.copied {
  background: #10B981;
  color: white;
  border-color: #10B981;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  .page-header {
    margin: 15px 0 20px;
  }
  
  .page-header-content h1 {
    font-size: 28px;
  }
  
  .subtitle {
    font-size: 14px;
  }
  
  .bookmarklet-section {
    padding: 66px 15px 40px; /* Adjusted for mobile */
  }
  
  .instructions {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .bookmarklets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .bookmarklet-card {
    padding: 12px;
  }
  
  .bookmarklet-header i {
    width: var(--space-10);
    height: var(--space-10);
    font-size: var(--font-size-base);
  }
  
  .bookmarklet-header h3 {
    font-size: var(--font-size-lg);
  }
  
  .bookmarklet-filter {
    flex-wrap: wrap;
  }
  
  .bookmarklet-filter-btn {
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .bookmarklet-section {
    padding: 76px 20px 60px;
  }

  .bookmarklets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .page-header {
    margin: 10px 0 15px;
  }
  
  .page-header-content h1 {
    font-size: 24px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .bookmarklet-section {
    padding: 66px 10px 30px; /* Adjusted for small mobile */
  }
  
  .instructions {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .bookmarklet-card {
    padding: var(--space-4);
  }
  
  .bookmarklets-grid {
    grid-template-columns: 1fr;
  }
  
  .bookmarklet-filter {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bookmarklet-filter-btn {
    width: 100%;
  }
  
  .shortcuts-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   SHORTCUTS SECTION
   =================================== */
.keyboard-shortcuts {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  background: var(--surface);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.shortcut-item:hover {
  background: var(--surface-hover);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.shortcut-item kbd {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-hover) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  font-family: var(--font-family-mono, monospace);
  font-size: var(--font-size-xs);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 2px 0 var(--border);
}

/* ===================================
   TIPS SECTION
   =================================== */
.tips-section {
  margin-top: var(--space-6);
  margin-bottom: var(--space-12);
}

.tips-section h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.tips-section h3 i {
  color: var(--warning);
}

.tips-section ul {
  list-style: none;
  padding: 0;
}

.tips-section li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

.tips-section li::before {
  content: '\f111';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: var(--space-2);
  color: var(--accent-primary);
  font-size: 6px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .header,
  .footer,
  .bookmarklet-btn {
    display: none;
  }
  
  .bookmarklet-card {
    break-inside: avoid;
    border: 1px solid var(--text);
    margin-bottom: 1rem;
  }
  
  .container h1 {
    color: var(--text);
    -webkit-text-fill-color: var(--text);
  }
}