/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root{
  --primary:#1e73e8;      /* Blue */
  --accent:#ff6a00;       /* Orange */
  --dark:#0f172a;
  --light:#f6f8fb;
  --border:#e5e7eb;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
   background:var(--light);
  color:#1f2937;
  line-height: 1.6;
  padding-bottom: 72px; /* space for bottom mobile nav */
}

header{
background:#ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px;
}

.section {
  margin-top: 48px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

p {
  font-size: 15px;
  color: #374151;
}

small {
  font-size: 12px;
  color: #6b7280;
}

/* ADS CONTAINER – LOCKED INSIDE LAYOUT */
.ad-box {
  margin: 28px 0;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

/* Prevent ad from touching edges */
.ad-box ins.adsbygoogle {
  display: block !important;
  width: 95% !important;
  max-width: 95% !important;
}


.category-ad-top {
  margin: 20px auto 25px;
  padding: 0 12px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.category-ad-top ins.adsbygoogle {
  max-width: 100% !important;
  display: block !important;
}


/* ===== PAGE SPACING ===== */

main {
  padding-bottom: 90px;
}

.card-grid {
  gap: 18px;
}

/* =========================
   MAIN HEADER – PREMIUM
========================= */

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);

}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo – stronger brand */
.site-logo {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  text-decoration: none;
}

/* Browse button – anchored & solid */

.header-cta {
  background:#f1f5f9;
color:#111827;
border:1px solid #e5e7eb;
padding:8px 18px;
border-radius:12px;
font-weight:500;
transition:.25s ease;
}

.header-cta:hover {
  background:#e2e8f0;
}

/* =========================
   TEXT LOGO – TRUEOWNR
========================= */

.site-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

/* "True" part */
.logo-main {
  color: #4d4d4d; /* deep charcoal */
}

/* "Ownr" accent */
.logo-accent {
  color: #ff944d; /* professional blue */
}

/* =========================
   BUTTONS
========================= */
.btn,
.btn-primary{
  background:linear-gradient(135deg,#1e73e8,#1557c0);
  color:#fff;
  padding:12px 22px;
  border-radius:10px;
  font-weight:600;
  border:none;
  box-shadow:0 6px 18px rgba(30,115,232,.25);
  transition:.3s;
}


.btn:hover,
.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: #f3f4f6;
  color: #111827;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border:1.5px solid #dbeafe;
  transition:all .25s ease;
}


.btn-secondary:hover{
border-color:#2563eb;
background:#eff6ff;
color:#1d4ed8;
transform:translateY(-1px);
}

/* =========================
   TOP NAVBAR
========================= */
.top-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.top-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.top-cta {
  background-color: #111827;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}


.site-search input {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  width: 180px;
}

.search-item {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #111827;
}

.search-item small {
  color: #6b7280;
}

/* =========================
   BOTTOM MOBILE NAVBAR (LOCKED FINAL)
========================= */
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #d1d5db;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 8px;
  z-index: 999;
  box-shadow:0 -4px 12px rgba(0,0,0,.05);
}

/* INACTIVE */
.bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
}

.bottom-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #9ca3af;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ACTIVE — CLEAR & PROFESSIONAL */
.bottom-link.active {
  color: #111827;
  transform: translateY(-2px);
}

.bottom-link.active svg {
  stroke: #111827;
  stroke-width: 2.4;
}

/* DESKTOP */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .bottom-navbar {
    display: none;
  }
}

/* =========================
   HERO SECTION
========================= */
.hero{
  background:linear-gradient(180deg,#f8fbff,#ffffff);
  padding:40px 0;
}

.hero p {
  max-width: 680px;
  margin-top: 8px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ===== HOMEPAGE POLISH ===== */

/* Section headings stronger */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin: 32px 0 18px;
  letter-spacing: -0.02em;
  color: #111827;
}

/* Card enhancement */
.card {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 20px;
  border-radius:14px;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* Description clarity */
.card p {
  color: #4b5563;
  line-height: 1.6;
}

/* CTA visibility */
.card a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}


.breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin: 15px 0 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #374151;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* =========================
   CATEGORY CARD – FINAL PRO
========================= */

/* Showcase cards polish */
.showcase-card,
.card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #eef1f6;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all .2s ease;
}

/* Hover effect (soft professional) */
.showcase-card:hover,
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Title + type inline */
.showcase-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-title-row h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #111827;
}

/* Small highlighted type badge */
.showcase-type-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  white-space: nowrap;
}

/* Description */
.showcase-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0 14px;
  color: #374151;
}

/* Footer CTA */
.showcase-footer {
  display: flex;
  justify-content: flex-start;
}

/* CTA button – CLEAR ACTION *//* CTA button – LIGHT & PRO */
.showcase-cta-btn {
  padding: 8px 16px;
  border-radius: 999px;
  background: #f3f4f6;          /* light background */
  color: #111827;               /* dark text */
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.showcase-cta-btn:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

/* Tighter grid spacing */
.card-grid {
  gap: 14px;
}

/* === CATEGORY FEED POLISH === */

.showcase-type {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.showcase-card {
  padding: 18px;
  border-radius: 16px;
}

.showcase-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.showcase-head h3 {
  font-size: 18px;
  margin: 0;
}

/* Type chip */
.showcase-type {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
  white-space: nowrap;
}

/* Description tighter */
.showcase-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0 10px;
  color: #374151;
}

/* Strong CTA */
.showcase-cta {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}





.asset-updated {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

/* Reduce vertical gaps between cards */
.card-grid {
  gap: 14px;
}


/* HARD STOP FOR ADS ESCAPING CONTAINER */
.showcase-focus-card {
  max-width: 100%;
  overflow: hidden;
}

.showcase-focus-card ins.adsbygoogle {
  max-width: 100% !important;
}


/* =========================
   CATEGORY PAGE – PREMIUM
========================= */

.category-header {
  margin-bottom: 36px;
}

.category-header h1 {
  font-size: 32px;
}

.category-header p {
  max-width: 720px;
  margin-top: 8px;
  font-size: 16px;
}

.category-cta {
  margin-top: 18px;
  display: inline-block;
}

/* Showcase Cards */
.showcase-card {
  position: relative;
  padding-top: 42px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Type badge */
.showcase-type {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e3a8a;
}

/* Link style */
.showcase-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

/* Related showcases – lighter than category cards */
.showcase-page .card {
  box-shadow: none;
}

.showcase-page .card:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}


/* =========================
   MORE SHOWCASES – MINIMAL
========================= */

.more-showcases {
  margin-top: 16px;
}

.more-showcase-card {
  padding: 16px;
  text-align: l;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.more-showcase-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.more-showcase-card:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}


.related-showcases {
  margin-top: 30px;
}

.related-showcases h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.related-item {
  display: block;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  background: #fff;
}

.related-item:hover {
  background: #f9fafb;
}


/* =========================
   SHOWCASE – OWNER LINK FIX
========================= */

.showcase-owner-row {
  margin-top: 8px;
  margin-bottom: 16px; /* space before CTA */
  font-size: 18px;
  color: #374151;
}

.owner-label {
  margin-right: 6px;
  color: #6b7280;
}

/* Owner link – CLEARLY CLICKABLE */
.owner-link {
  font-weight: 600;
  color: #2563eb; /* blue link */
  text-decoration: none;
  border-bottom: 1px solid rgba(37,99,235,0.3);
}

.owner-link:hover {
  border-bottom-color: #2563eb;
}



/* =========================
   OWNER PAGE – PROFILE FEEL
========================= */

/* Profile card */
.owner-profile-card {
  padding: 20px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  margin-bottom: 32px;
}

.owner-profile-card h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.owner-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 14px;
}

/* Tags spacing */
.owner-tags .tag {
  margin-right: 8px;
  margin-bottom: 6px;
  display: inline-block;
}

/* Assets section separation */
.owner-page h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Lighter asset cards than category */
.owner-page .card {
  box-shadow: none;
}

.owner-page .card:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* =========================
   OWNER PAGE – ASSET CATEGORY
========================= */

.owner-asset-card {
  padding: 16px;
}

/* Small category label */
.owner-asset-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Description tighter */
.owner-asset-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0 10px;
  color: #374151;
}

/* Subtle link */
.owner-asset-link {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}


/* Extra spacing safety for CTA */
.showcase-primary-cta {
  display: inline-block;
  margin-top: 6px;
}


/* CATEGORY PAGE LOOK */
.category-page h1 {
  font-size: 28px;
}

.category-page .card {
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

.category-page .card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}


.category-context {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-top: 10px;
  margin-bottom: 24px;
}





.home-categories {
  margin: 30px 0;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}




.category-pill{
  background:#fff;
  border:1px solid var(--border);
  padding:10px 18px;
  border-radius:30px;
  font-weight:500;
  transition:.2s;
}

.category-pill:hover{
  background:var(--primary);
  color:#fff;
}
/* =========================
   CARDS (CORE UI)
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.card p {
  margin-top: 6px;
  font-size: 14px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 16px;
  margin-top: 20px;
}

.category-card {
  display: block;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  background: #fff;
  color: #111827;
}

.category-card:hover {
  background: #f9fafb;
}

.category-card h3 {
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  color: #6b7280;
}


/* SHOWCASE PAGE LOOK */
.showcase-page {
  max-width: 900px;
}

.showcase-header {
  padding: 28px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

.showcase-header h1 {
  font-size: 34px;
}

.showcase-description {
  font-size: 16px;
  color: #374151;
  margin-top: 10px;
}

/* =========================
   MORE SHOWCASES – WITH TYPE
========================= */

.more-showcase-card {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.more-showcase-card:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

/* Category / type – very subtle */
.more-showcase-type {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.more-showcase-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}



/* =========================
   TAGS / LABELS
========================= */
.tag {
  display: inline-block;
  background-color: #f3f4f6;
  color: #111827;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 6px;
  margin-top: 6px;
}

/* =========================
   LISTS / FEATURES
========================= */
.features {
  list-style: none;
  margin-top: 12px;
}

.features li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.features li::before {
  content:"✔";
  position: absolute;
  left: 0;
  color: #111827;
}

/* ===== SUBMIT PAGE PROFESSIONAL FORM ===== */

/* Form container */
.submit-form {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 16px 40px;
}

/* Section headings */
.submit-form h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

/* Inputs & textarea */
.submit-form input,
.submit-form textarea,
.submit-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  background: #ffffff;
  transition: 0.2s ease;
}

/* Focus state */
.submit-form input:focus,
.submit-form textarea:focus,
.submit-form select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* Textarea resize */
.submit-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Submit button */
.submit-btn {
  background: #0f172a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.submit-btn:hover {
  background: #020617;
}

/* Disclaimer box */
.submit-note {
  margin-top: 20px;
  padding: 14px;
  border-radius: 12px;
  background: #f3f4f6;
  font-size: 14px;
  color: #6b7280;
}



/* Search results professional styling */

.search-item {
  display: block;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-decoration: none;
  color: #111827;
  transition: all 0.2s ease;
}

.search-item:hover {
  background: #f9fafb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-item strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.search-item small {
  color: #6b7280;
  font-size: 13px;
}



/* ===== FORCE BOTTOM NAVBAR FIX ===== */

.bottom-navbar{
position:fixed;
bottom:0;
left:0;
width:100%;
height:65px;
background:#fff;
border-top:1px solid #ddd;
display:flex;
justify-content:space-around;
align-items:center;
z-index:9999;
box-shadow:0 -2px 10px rgba(0,0,0,0.05);
}

.bottom-navbar a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:11px;
color:#666;
flex:1;
}

.bottom-navbar svg{
width:22px;
height:22px;
stroke:#666;
fill:none;
stroke-width:2;
margin-bottom:3px;
}

.bottom-navbar a.active{
color:#111;
font-weight:600;
}

.bottom-navbar a.active svg{
stroke:#111;
}

/* Prevent page content hiding behind navbar */
body{
padding-bottom:80px;
}
/* =========================
   TRUST / DISCLAIMER TEXT
========================= */
.trust {
  margin-top: 40px;
  padding: 16px;
  background-color: #f9fafb;
  border-radius: 12px;
  font-size: 13px;
  color: #6b7280;
}

/* =========================
   FOOTER
========================= */
footer {
  margin-top: 64px;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-wrap p {
  font-size: 13px;
  color: #6b7280;
}

.footer-wrap a {
  font-size: 13px;
  color: #374151;
  margin-right: 12px;
}

/* Desktop footer layout */
@media (min-width: 768px) {
  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Mobile form spacing */
@media (max-width: 600px) {
  .submit-form {
    padding: 10px 14px 50px;
  }
}


/* Mobile header search optimization */

@media (max-width: 768px) {

  .header-search {
    width: 100%;
    margin: 10px 0;
  }

  .header-search input {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 10px;
  }

}


/* ================= HEADER NAVBAR ================= */

.main-header{
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.header-inner{
  max-width:1200px;
  margin:auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}

/* LOGO */

.site-logo{
  font-size:22px;
  font-weight:700;
  text-decoration:none;
}

.logo-main{color:#333;}
.logo-accent{color:#ff8c32;}

/* DESKTOP MENU */

.desktop-menu{
  display:flex;
  gap:18px;
  margin-left:20px;
}

.desktop-menu a{
  text-decoration:none;
  color:#555;
  font-weight:500;
}

.desktop-menu a.active{
  color:#000;
  font-weight:600;
}

/* SEARCH */

.site-search{
  flex:1;
  max-width:420px;
}

.site-search input{
  width:100%;
  height:40px;
  padding:0 14px;
  border-radius:20px;
  border:1px solid #ddd;
  font-size:14px;
}

/* CTA BUTTON */

.header-cta{
  background:#0f172a;
  color:#fff;
  padding:8px 16px;
  border-radius:22px;
  text-decoration:none;
  font-weight:500;
}

/* ================= MOBILE FIX ================= */

@media (max-width:768px){

  .desktop-menu{
    display:none;
  }

  .header-inner{
    flex-wrap:wrap;
  }

  .site-search{
    order:3;
    width:100%;
    max-width:100%;
  }

  .header-cta{
    order:2;
  }

  .site-logo{
    order:1;
  }

}

/* ================= BOTTOM NAVBAR ================= */

.bottom-navbar{
  position:fixed;
  bottom:0;
  width:100%;
  background:#fff;
  border-top:1px solid #eee;
  display:flex;
  justify-content:space-around;
  padding:8px 0;
  z-index:999;
}

.bottom-link{
  text-decoration:none;
  color:#666;
  font-size:11px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.bottom-link.active{
  color:#000;
}

/* MOBILE ONLY SEARCH BAR BELOW HEADER */

/* ===== FINAL NAVBAR SEARCH FIX ===== */

/* Header layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* Desktop search */
.desktop-search{
  flex:1;
  max-width:420px;
}

.desktop-search input{
  width:100%;
  height:42px;
  border:1px solid #ddd;
  border-radius:12px;
  padding:0 14px;
}

/* Hide mobile search by default */
.mobile-search-wrapper{
  display:none;
}

/* MOBILE ONLY */
@media screen and (max-width:768px){

  .desktop-menu{
    display:none !important;
  }

  .desktop-search{
    display:none !important;
  }

  .mobile-search-wrapper{
    display:block !important;
    padding:10px 16px;
  }

  .mobile-search input{
    width:100%;
    height:46px;
    border-radius:14px;
    border:1px solid #ddd;
    padding:0 14px;
    font-size:15px;
  }

}

/* ===== FORCE BOTTOM NAVBAR FIX ===== */

.bottom-navbar{
position:fixed;
bottom:0;
left:0;
width:100%;
height:65px;
background:#fff;
border-top:1px solid #ddd;
display:flex;
justify-content:space-around;
align-items:center;
z-index:9999;
box-shadow:0 -2px 10px rgba(0,0,0,0.05);
}

.bottom-navbar a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-decoration:none;
font-size:11px;
color:#666;
flex:1;
}

.bottom-navbar svg{
width:22px;
height:22px;
stroke:#666;
fill:none;
stroke-width:2;
margin-bottom:3px;
}

.bottom-navbar a.active{
color:#111;
font-weight:600;
}

.bottom-navbar a.active svg{
stroke:#111;
}

/* Prevent page content hiding behind navbar */
body{
padding-bottom:80px;
}


/* ===== FINAL SAFE FIX — DO NOT MODIFY ABOVE ===== */

/* Bottom navbar mobile only */
@media (min-width:768px){
  .bottom-navbar{
    display:none !important;
  }
}

/* Mobile search full width */
@media (max-width:768px){

  .header-inner{
    flex-wrap:wrap;
  }

  .site-search{
    order:3;
    width:100%;
    max-width:100%;
  }

  .site-search input{
    width:100%;
  }
}


.site-logo img{
  height:35px;
  width:auto;
  display:block;
}

/* Mobile optimization */
@media(max-width:768px){
  .site-logo img{
    height:30px;
  }
}

/* Prevent content hiding behind bottom nav */
@media (max-width:768px){
  body{
    padding-bottom:80px;
  }
}

.googleads-header {
  padding: 28px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  margin-bottom: 32px;
}

.googleads-header h1 {
  font-size: 34px;
}

/* Container for the ad */
/* Container for the ad */
.ad-container {
    width: 100%;
    max-width: 100%;
    padding: 1px 1px;
    margin: 1px 1px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;

    /* NEW ADDITIONS */
    background:#ffffff;
    border:1px solid #ffffff;
    line-height:0;          /* removes bottom whitespace */
    font-size:0;     
}

/* Optional: Target specific mobile sizes if needed */
@media (max-width: 480px) {
    .ad-container {
        max-width: 100%;       /* Smaller width for smaller phones */
        /* NEW ADDITIONS */
    background:#ffffff;
    border:1px solid #ffffff;
    line-height:0;          /* removes bottom whitespace */
    font-size:0;     
    }
  
}
/* FINAL HEADER BROWSE BUTTON FIX */

.header-cta{
background:#ffffff;
color:#2563eb;
border:1.5px solid #2563eb;
margin-top:2px;
padding:5px 10px;
border-radius:12px;
font-weight:600;
font-size:15px;
text-decoration:none;
transition:all .25s ease;
display:inline-flex;
align-items:center;
justify-content:center;
box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.header-cta:hover{
background:#2563eb;
color:#fff;
box-shadow:0 6px 18px rgba(37,99,235,.25);
transform:translateY(-1px);
}
.soft-divider{
height:1px;
background:#e5e7eb;
margin:35px 0;
}

.soft-divider2{
height:1px;
background:#e5e7eb;
margin:10px 0;
}

/* Category heading block */
.category-hero {
    background: #ffffff;
    padding: 22px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
    border: 1px solid #eef1f6;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* Heading inside hero */
.category-hero h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e3a8a; /* Stronger brand blue */
}

.category-hero p {
    color: #6b7280;
    font-size: 15px;
}
.category-hero .sub-text {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
    margin-left: 4px;
}

.showcase-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #2563eb, #1e293b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Force showcase cards left alignment */
.more-showcase-card,
.more-showcase-card * {
    text-align: left !important;
}

/* Card titles */
.more-showcase-card h3 {
    text-align: left !important;
    font-weight: 600;
    margin-top: 6px;
}

/* Category label small text */
.more-showcase-type {
    display: block;
    text-align: left !important;
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Section headings polish */
h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 40px 0 15px;
    padding-left: 6px;
    position: relative;
    letter-spacing: 0.2px;
}

/* Professional accent line */
h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: #2563eb;
    border-radius: 4px;
}

/* Divider polish */
hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 35px 0;
}

/* Safe responsive fix */

html, body {
    overflow-x: hidden;
}

/* Images & ads responsive */
img, iframe, video {
    max-width: 100%;
    height: auto;
}

/* Containers responsive without forcing */
.container,
.section,
.wrapper {
    max-width: 100%;
    box-sizing: border-box;
}
