/* ================================================
   PickWishesHub — style_v2.css
   Warm, mobile-first, AdSense-friendly design
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:         #F97316;
  --orange-light:   #FFF1E6;
  --orange-dark:    #C2410C;
  --orange-mid:     #FB923C;
  --rose:           #F43F5E;
  --rose-light:     #FFF0F3;
  --gold:           #FBBF24;
  --gold-light:     #FFFBEB;
  --green:          #22C55E;
  --green-dark:     #15803D;
  --whatsapp:       #25D366;
  --facebook:       #1877F2;
  --twitter:        #000000;
  --pinterest:      #E60023;
  --bg:             #FFFBF7;
  --surface:        #FFFFFF;
  --surface-warm:   #FFF8F2;
  --border:         #F0E8DF;
  --border-mid:     #E2D5C8;
  --border-dark:    #C9B8A8;
  --text:           #1C1917;
  --text-muted:     #78716C;
  --text-light:     #A8A29E;
  --text-xlight:    #D6D3D1;
  --radius-xs:      8px;
  --radius-sm:      12px;
  --radius-md:      16px;
  --radius-lg:      22px;
  --radius-xl:      30px;
  --shadow-xs:      0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.13);
  --font:           'Nunito', 'Segoe UI', sans-serif;
  --font-display:   'Playfair Display', serif;
  --transition:     0.2s ease;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════
   NAVBAR
   ════════════════════════════════ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1C1917;
  padding: 0 16px;
  height: 54px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 34px; width: auto; border-radius: 7px; }
.nav-logo-text { font-weight: 900; font-size: 1.1em; color: #fff; letter-spacing: -0.3px; white-space: nowrap; }
.nav-logo-text em { color: var(--orange); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #D6D3D1; text-decoration: none; font-size: 0.85em; font-weight: 700;
  padding: 6px 10px; border-radius: var(--radius-xs);
  transition: background var(--transition), color var(--transition); white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links .nav-home { color: #fff; }
.nav-back { display: flex; align-items: center; gap: 4px; color: #D6D3D1 !important; font-size: 0.82em !important; }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #FFF1E6 0%, #FFF0F3 45%, #FFFBEB 100%);
  padding: 24px 16px 22px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 0.7em; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55em, 5.5vw, 2.5em);
  color: #1C1917; line-height: 1.2; margin-bottom: 10px;
}
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: 0.92em; color: var(--text-muted); max-width: 460px; margin: 0 auto 20px; line-height: 1.55; }

/* ════════════════════════════════
   SEARCH BAR
   ════════════════════════════════ */
.search-wrap { max-width: 580px; margin: 0 auto; padding: 0 4px; position: relative; }
.search-wrap form {
  display: flex; background: var(--surface); border: 2px solid var(--border-mid);
  border-radius: 50px; overflow: hidden; box-shadow: var(--shadow-md);
  transition: border-color var(--transition);
}
.search-wrap form:focus-within { border-color: var(--orange); }
.search-wrap input[type="text"] {
  flex: 1; padding: 13px 18px; border: none; outline: none; font-size: 0.93em;
  font-family: var(--font); background: transparent; color: var(--text); min-width: 0;
}
.search-wrap input::placeholder { color: var(--text-light); }
.search-wrap button {
  padding: 12px 22px; background: var(--orange); color: #fff; border: none;
  font-weight: 900; font-size: 0.85em; cursor: pointer; transition: background var(--transition);
  white-space: nowrap; font-family: var(--font); border-radius: 0 50px 50px 0;
}
.search-wrap button:hover { background: var(--orange-dark); }
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--surface); border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 500;
  overflow: hidden; display: none;
}
.search-suggestions.active { display: block; }
.suggestion-item {
  padding: 10px 18px; font-size: 0.88em; color: var(--text); cursor: pointer;
  transition: background var(--transition); display: flex; align-items: center; gap: 8px;
}
.suggestion-item:hover { background: var(--orange-light); }
.suggestion-item::before { content: '🔍'; font-size: 0.8em; }

/* ════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════ */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px; flex-wrap: wrap; gap: 6px;
}
.section-title { font-size: 1.2em; font-weight: 900; color: var(--text); }
.section-sub { font-size: 0.82em; color: var(--text-muted); margin-top: 2px; margin-bottom: 14px; }
.section-link { font-size: 0.82em; font-weight: 700; color: var(--orange); text-decoration: none; }
.section-link:hover { text-decoration: underline; }

/* ════════════════════════════════
   CATEGORY CARDS
   ════════════════════════════════ */
.categories-section { padding: 26px 16px 22px; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.category-card {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-md);
  text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.82em;
  line-height: 1.3; box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.category-card:hover {
  border-color: var(--orange); box-shadow: 0 4px 16px rgba(249,115,22,0.15);
  transform: translateY(-2px); color: var(--orange-dark);
}
.cat-icon {
  font-size: 1.4em; flex-shrink: 0; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-light); border-radius: 9px;
}
.cat-count {
  margin-left: auto; font-size: 0.72em; font-weight: 700; color: var(--text-light);
  background: var(--surface-warm); border: 1px solid var(--border);
  border-radius: 20px; padding: 1px 8px; white-space: nowrap; flex-shrink: 0;
}

/* ════════════════════════════════
   CAROUSEL
   ════════════════════════════════ */
.carousel-section { padding: 6px 16px 26px; }
.carousel-wrap {
  position: relative; max-width: 340px; margin: 12px auto 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--border); aspect-ratio: 1 / 1;
}
.carousel-slide { display: none; height: 100%; }
.carousel-slide.active { display: block; }
.carousel-slide a { display: block; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.dot {
  width: 8px; height: 8px; background: var(--border-mid); border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--orange); transform: scale(1.35); }

/* ════════════════════════════════
   IMAGE GRID
   ════════════════════════════════ */
.image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 4px 0 20px; }
.image-box {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background: var(--border); box-shadow: var(--shadow-xs); aspect-ratio: 1 / 1; cursor: pointer;
}
.image-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.image-box:hover img { transform: scale(1.06); }
.img-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 10px; gap: 8px; transition: background var(--transition); border-radius: var(--radius-md);
}
.image-box:hover .img-overlay { background: rgba(0,0,0,0.38); }
.overlay-btn {
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  background: rgba(255,255,255,0.95); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 15px; text-decoration: none; color: var(--text); flex-shrink: 0;
}
.image-box:hover .overlay-btn { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .img-overlay { background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 55%) !important; }
  .overlay-btn { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════
   CONTAINER
   ════════════════════════════════ */
.container { max-width: 980px; margin: 0 auto; padding: 0 14px; }

/* ════════════════════════════════
   CATEGORY HEADER
   ════════════════════════════════ */
.category-header { padding: 18px 0 10px; text-align: center; }
.category-header h1 { font-size: 1.35em; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.sort-form {
  display: inline-flex; align-items: center; gap: 8px; background: var(--surface);
  border: 1.5px solid var(--border-mid); border-radius: 50px; padding: 6px 14px; margin-top: 6px;
}
.sort-form label { font-size: 0.8em; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.sort-form select { border: none; outline: none; font-family: var(--font); font-size: 0.85em; font-weight: 700; color: var(--text); background: transparent; cursor: pointer; }

/* ════════════════════════════════
   PAGINATION
   ════════════════════════════════ */
.pagination { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 5px; padding: 10px 0 26px; }
.pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px; border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-xs); text-decoration: none; color: var(--text-muted);
  font-size: 0.83em; font-weight: 700; background: var(--surface); transition: all var(--transition);
}
.pagination a:hover,
.pagination a.active { border-color: var(--orange); color: var(--orange-dark); background: var(--orange-light); }
.pagination .ellipsis { color: var(--text-light); padding: 0 4px; align-self: center; font-size: 0.85em; }

/* ════════════════════════════════
   IMAGE DETAIL PAGE
   ════════════════════════════════ */
.image-detail { max-width: 620px; margin: 0 auto; padding: 18px 16px 48px; }
.breadcrumb { font-size: 0.75em; color: var(--text-light); text-align: center; margin-bottom: 12px; }
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.image-detail h1 { font-size: 1.2em; font-weight: 900; color: var(--text); text-align: center; margin-bottom: 14px; line-height: 1.35; }
.image-main-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--border); margin-bottom: 16px; position: relative; }
.image-main-wrap img { width: 100%; height: auto; display: block; cursor: zoom-in; }

/* ════════════════════════════════
   SHARE BAR
   ════════════════════════════════ */
.share-bar { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin: 12px 0 6px; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 18px; border-radius: 50px; font-weight: 800; font-size: 0.83em;
  text-decoration: none; border: none; cursor: pointer; font-family: var(--font);
  white-space: nowrap; line-height: 1; transition: transform var(--transition), opacity var(--transition);
}
.share-btn:hover  { opacity: 0.88; transform: scale(1.04); }
.share-btn:active { transform: scale(0.97); }
.share-btn img { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; }
.share-btn.whatsapp  { background: var(--whatsapp); color: #fff; }
.share-btn.download  { background: var(--orange); color: #fff; }
.share-btn.native    { background: var(--surface); color: var(--text); border: 1.5px solid var(--border-mid); }
.share-btn.facebook  { background: var(--facebook); color: #fff; }
.share-btn.twitter   { background: var(--twitter); color: #fff; }
.share-btn.pinterest { background: var(--pinterest); color: #fff; }
.share-divider { text-align: center; font-size: 0.75em; color: var(--text-light); margin: 6px 0 4px; position: relative; }

/* ════════════════════════════════
   IMAGE NAV (prev/next)
   ════════════════════════════════ */
.image-navigation { display: flex; justify-content: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.nav-button {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px;
  background: var(--surface); border: 1.5px solid var(--border-mid); border-radius: 50px;
  text-decoration: none; color: var(--text-muted); font-weight: 700; font-size: 0.84em;
  transition: border-color var(--transition), color var(--transition);
}
.nav-button:hover { border-color: var(--orange); color: var(--orange-dark); }

/* ════════════════════════════════
   IMAGE DESCRIPTION
   ════════════════════════════════ */
.image-description { background: var(--surface-warm); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; margin: 14px 0; }
.image-description p { font-size: 0.88em; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════
   LIGHTBOX
   ════════════════════════════════ */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); justify-content: center; align-items: center; z-index: 9999; flex-direction: column; padding: 16px; }
.lightbox.open { display: flex; }
#lightbox-img { max-width: 94vw; max-height: 70vh; border-radius: var(--radius-md); object-fit: contain; display: block; }
.lightbox-icons { display: flex; gap: 14px; margin-top: 16px; justify-content: center; }
.lightbox-icons a { background: rgba(255,255,255,0.95); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: transform var(--transition); text-decoration: none; }
.lightbox-icons a:hover { transform: scale(1.1); }
.lightbox-icons img { width: 24px; height: 24px; }
.lb-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.92); border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 18px; font-weight: 700; cursor: pointer; z-index: 10000; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.3); transition: background var(--transition), transform var(--transition); color: var(--text); }
.lb-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.lb-nav-btn.prev { left: 12px; }
.lb-nav-btn.next { right: 12px; }
.lb-close { position: absolute; top: 12px; right: 14px; background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; width: 38px; height: 38px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); z-index: 10001; }
.lb-close:hover { background: rgba(255,255,255,0.28); }

/* ════════════════════════════════
   SEO TEXT SECTIONS
   ════════════════════════════════ */
.seo-section { padding: 22px 16px; background: var(--surface); border-top: 1px solid var(--border); }
.seo-section h2 { font-size: 1.05em; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.seo-section p { font-size: 0.875em; color: var(--text-muted); margin-bottom: 10px; line-height: 1.65; }
.seo-section ul { list-style: none; padding: 0; }
.seo-section ul li { font-size: 0.875em; color: var(--text-muted); padding: 4px 0; line-height: 1.55; }
.seo-section-flush { border-top: none; padding-top: 0; }

/* ════════════════════════════════
   AD SLOT
   ════════════════════════════════ */
.ad-slot { padding: 12px 16px; text-align: center; min-height: 100px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }

/* ════════════════════════════════
   BLOG
   ════════════════════════════════ */
.blog-section { padding: 24px 16px 40px; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 14px; }
.blog-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xs); text-decoration: none; color: var(--text);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--orange); }
.blog-card-image { aspect-ratio: 16 / 9; overflow: hidden; background: var(--border); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-image-placeholder { display: flex; align-items: center; justify-content: center; font-size: 2.5em; }
.blog-card-body { padding: 16px; }
.blog-card-tags { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.blog-card-tag { display: inline-block; background: var(--orange-light); color: var(--orange-dark); font-size: 0.72em; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.blog-card-readtime { font-size: 0.72em; color: var(--text-light); font-weight: 600; }
.blog-card h2 { font-size: 1em; font-weight: 800; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 0.84em; color: var(--text-muted); line-height: 1.55; margin-bottom: 10px; }
.blog-card-meta { font-size: 0.75em; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.blog-card-cta { color: var(--orange); font-weight: 700; font-size: 0.82em; }

/* ════════════════════════════════
   SEARCH RESULTS
   ════════════════════════════════ */
.search-header { padding: 20px 0 12px; text-align: center; }
.search-header h1 { font-size: 1.25em; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.search-count { font-size: 0.83em; color: var(--text-muted); }
.no-results { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.no-results .no-results-icon { font-size: 3em; margin-bottom: 12px; }
.no-results h2 { font-size: 1.1em; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.no-results p { font-size: 0.88em; }

/* ════════════════════════════════
   STATIC PAGES
   ════════════════════════════════ */
.static-page { max-width: 760px; margin: 0 auto; padding: 28px 16px 60px; }
.static-page h1 { font-family: var(--font-display); font-size: clamp(1.4em, 4vw, 1.9em); color: var(--text); text-align: center; margin-bottom: 6px; }
.static-page .page-sub { text-align: center; font-size: 0.88em; color: var(--text-muted); margin-bottom: 28px; }
.static-page h2 { font-size: 1.05em; font-weight: 800; color: var(--text); margin: 26px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--orange-light); }
.static-page p { font-size: 0.9em; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.static-page ul { padding-left: 18px; margin-bottom: 14px; }
.static-page ul li { font-size: 0.9em; color: var(--text-muted); line-height: 1.65; margin-bottom: 6px; }
.static-page a { color: var(--orange); text-decoration: none; }
.static-page a:hover { text-decoration: underline; }
.contact-form { margin-top: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85em; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border-mid); border-radius: var(--radius-sm); font-size: 0.9em; font-family: var(--font); background: var(--surface); color: var(--text); transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--orange); color: #fff; border: none; padding: 13px 32px; border-radius: 50px; font-weight: 900; font-size: 0.93em; cursor: pointer; font-family: var(--font); transition: background var(--transition); }
.form-submit:hover { background: var(--orange-dark); }
.form-status { padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 14px; font-size: 0.88em; font-weight: 700; }
.form-status.success { background: #D1FAE5; color: #065F46; }
.form-status.error   { background: #FEE2E2; color: #991B1B; }

/* ════════════════════════════════
   404 PAGE
   ════════════════════════════════ */
.error-page { text-align: center; padding: 64px 20px; max-width: 480px; margin: 0 auto; }
.error-page .error-code { font-family: var(--font-display); font-size: 5em; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.error-page h1 { font-size: 1.3em; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.error-page p { font-size: 0.9em; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.btn-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--orange); color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 800; font-size: 0.9em; text-decoration: none; border: none; cursor: pointer; font-family: var(--font); transition: background var(--transition); }
.btn-primary:hover { background: var(--orange-dark); }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer { background: #1C1917; color: #A8A29E; padding: 18px 16px; }
.footer-inner { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px; }
.footer-links a { color: var(--orange-mid); text-decoration: none; font-size: 0.82em; font-weight: 700; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.76em; color: #78716C; }

/* ════════════════════════════════
   UTILITY
   ════════════════════════════════ */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

/* ════════════════════════════════
   TRUST BAR (index.php)
   ════════════════════════════════ */
.trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 16px; }
.trust-bar-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-stat { display: flex; flex-direction: column; align-items: center; padding: 6px 24px; text-align: center; }
.trust-stat strong { font-size: 1.2em; font-weight: 900; color: var(--orange); line-height: 1.2; }
.trust-stat span { font-size: 0.76em; color: var(--text-muted); margin-top: 2px; }
.trust-divider { width: 1px; height: 30px; background: var(--border-mid); flex-shrink: 0; }
@media (max-width: 480px) {
  .trust-stat    { padding: 6px 14px; }
  .trust-divider { height: 22px; }
}

/* ════════════════════════════════
   SECTION INTRO PARAGRAPH
   ════════════════════════════════ */
.section-intro { max-width: 820px; margin: 0 auto 18px; font-size: 0.88em; line-height: 1.75; color: var(--text-muted); text-align: center; }
.section-intro strong { color: var(--text); }

/* ════════════════════════════════
   FAQ SECTION
   ════════════════════════════════ */
.faq-section { max-width: 820px; margin: 0 auto; padding: 32px 16px 48px; }
.faq-section > h2 { font-size: 1.1em; font-weight: 900; color: var(--text); margin-bottom: 20px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 0.93em; font-weight: 800; color: var(--text); margin: 0 0 7px; line-height: 1.4; }
.faq-item p { font-size: 0.875em; line-height: 1.7; color: var(--text-muted); margin: 0; }
.faq-item p strong { color: var(--text); }
/* ════════════════════════════════
   NAV ICONS (v2.1.0)
   ════════════════════════════════ */
.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-icon  { font-size: 1em; line-height: 1; flex-shrink: 0; }
.nav-label { white-space: nowrap; }

/* Mobile — hide labels, show icons only */
@media (max-width: 480px) {
  .nav-label { display: none; }
  .nav-icon  { font-size: 1.2em; }
  .nav-links a { padding: 6px 8px; }
}

/* Active state indicator */
.nav-links a.nav-active {
  color: var(--orange) !important;
  background: rgba(249,115,22,0.1);
  border-radius: var(--radius-xs);
}

/* ── Category page: hide overlay on touch (actions in lightbox) ── */
@media (hover: none) {
  .image-grid .img-overlay { display: none !important; }
}
