/* ── KILL GP wrappers ── */
html,body,#page,#wrapper,.site,.site-wrapper,#content,.site-content,#primary,
#secondary,.widget-area,.generate-columns-container,.inside-article,.grid-container{
  background:transparent!important;background-color:transparent!important;
  max-width:none!important;float:none!important;padding:0!important;margin:0!important;}
html,body,body.bnw-site,#page{background:#fdf8f2!important;background-color:#fdf8f2!important;}
#masthead,.site-header,#site-header,.nav-bar-section,#navigation,.navigation-bar,
#colophon,.site-footer,#site-footer{display:none!important;}
.site-content,#content{max-width:100%!important;display:block!important;}
.main-navigation,.nav-primary,#site-navigation,.main-navigation .main-nav,
.main-navigation ul,.nav-primary ul,.generate-mobile-nav,.mobile-menu-control-wrapper,
.main-navigation.toggled{display:none!important;visibility:hidden!important;
  background:transparent!important;height:0!important;overflow:hidden!important;
  position:absolute!important;pointer-events:none!important;}

/* ── Desktop nav: WP nav_menu ul/li fix ── */
.desktop-nav{display:flex!important;gap:0!important;flex-wrap:nowrap!important;
  align-items:center!important;flex:1!important;min-width:0!important;
  overflow:hidden!important;margin-left:20px!important;}
.desktop-nav ul,.desktop-nav ul.menu{display:flex!important;flex-direction:row!important;
  flex-wrap:nowrap!important;align-items:center!important;gap:4px!important;
  list-style:none!important;padding:0!important;margin:0!important;
  background:transparent!important;border:none!important;box-shadow:none!important;width:auto!important;}
.desktop-nav li,.desktop-nav ul li,.desktop-nav ul.menu li{display:inline-flex!important;
  float:none!important;background:transparent!important;padding:0!important;
  margin:0!important;border:none!important;position:static!important;}
.desktop-nav a,.desktop-nav ul a,.desktop-nav ul.menu li a{font-size:14.5px!important;
  font-weight:500!important;padding:5px 13px!important;border-radius:20px!important;
  color:var(--text-muted)!important;background:transparent!important;
  text-decoration:none!important;display:inline-block!important;}
.desktop-nav a:hover,.desktop-nav ul.menu li a:hover,
.desktop-nav li.current-menu-item>a{background:var(--rose)!important;color:#fff!important;}
.desktop-nav ul ul,.desktop-nav .sub-menu{display:none!important;}
.header-actions{display:flex!important;align-items:center!important;gap:10px!important;
  flex-shrink:0!important;margin-left:auto!important;}

/* ── Mobile nav white background fix ── */
body.bnw-site .mobile-nav,html body .mobile-nav,.mobile-nav,.mobile-nav.open{
  background:#ffffff!important;background-color:#ffffff!important;}
body.bnw-site .mobile-nav a,.mobile-nav a,.mobile-nav li a,.mobile-nav ul.menu li a{
  font-family:'DM Sans',sans-serif!important;font-size:14px!important;font-weight:500!important;
  padding:10px 14px!important;border-radius:10px!important;color:#7a6570!important;
  background:transparent!important;display:block!important;text-decoration:none!important;border:none!important;}
.mobile-nav a:hover,.mobile-nav li.current-menu-item>a{
  background:#f7a8b8!important;color:#fff!important;}
.mobile-nav ul,.mobile-nav ul.menu{display:flex!important;flex-direction:column!important;
  gap:2px!important;list-style:none!important;padding:0!important;margin:0!important;
  background:transparent!important;border:none!important;width:100%!important;}
.mobile-nav li,.mobile-nav ul li{display:block!important;float:none!important;
  background:transparent!important;padding:0!important;margin:0!important;border:none!important;}
.mobile-nav ul ul,.mobile-nav .sub-menu{display:none!important;}

/* ── iOS text size fix ── */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%;}


  :root {
    --rose: #f7a8b8;
    --rose-dark: #e8728a;
    --mint: #a8dbc5;
    --cream: #fdf8f2;
    --warm-white: #fffaf6;
    --text: #2d2226;
    --text-muted: #7a6570;
    --border: #f0e4ea;
    --ad-bg: #fff5f8;
    --sidebar-bg: #fff9fb;
    --shadow: 0 2px 16px rgba(232,114,138,0.10);
    --radius: 14px;
  }

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

  html { overflow-x: hidden; scroll-behavior: smooth; color-scheme: light; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream) !important;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

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

  /* ── HEADER ── */
  header {
    background: #fff;
    border-bottom: 2px solid var(--border);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(232,114,138,0.07);
  }
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 20px;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-dark);
    letter-spacing: -0.5px;
    white-space: nowrap;
  }
  .logo span { color: var(--text); }

  /* Desktop nav */
  .desktop-nav { display: flex; gap: 6px; flex-wrap: wrap; }
  .desktop-nav a {
    font-size: 14.5px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 20px;
    color: var(--text-muted);
    transition: all .2s;
  }
  .desktop-nav a:hover { background: var(--rose); color: #fff; }

  /* Hamburger button */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 7px;
    transition: all .2s;
  }
  .hamburger:hover { border-color: var(--rose-dark); background: #fff5f8; }
  .hamburger span {
    display: block;
    height: 2px;
    background: var(--rose-dark);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(232,114,138,0.12);
    z-index: 99;
    padding: 10px 16px 16px;
    flex-direction: column;
    gap: 2px;
    animation: slideDown .25s ease;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-muted);
    transition: all .15s;
  }
  .mobile-nav a:hover { background: var(--rose); color: #fff; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── AD BANNER ── */
  .ad-banner {
    background: var(--ad-bg);
    border-bottom: 1px dashed var(--border);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }
  .ad-banner-pill {
    display: inline-block;
    border: 1.5px dashed #e8a0b0;
    border-radius: 30px;
    padding: 6px 40px;
    background: #fff;
    font-size: 12px;
    color: #c07080;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ── LAYOUT ── */
  .page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero-section {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 12px;
    padding: 32px 0 12px;
    align-items: stretch;
  }
  .hero-content {
    background: linear-gradient(135deg, #fff5f8 0%, #f0fbf6 100%);
    border-radius: var(--radius);
    padding: 32px 32px 28px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
  }
  .hero-tag {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text);
  }
  .hero-content h1 em { color: var(--rose-dark); font-style: normal; }
  .hero-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    white-space: nowrap;
  }

  /* Hero search bar */
  .hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--rose);
    border-radius: 30px;
    padding: 9px 9px 9px 16px;
    gap: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(232,114,138,0.10);
    transition: box-shadow .2s, border-color .2s;
  }
  .hero-search:focus-within {
    box-shadow: 0 4px 20px rgba(232,114,138,0.22);
    border-color: var(--rose-dark);
  }
  .hero-search svg { color: var(--rose-dark); flex-shrink: 0; }
  .hero-search input {
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    min-width: 0;
  }
  .hero-search input::placeholder { color: var(--text-muted); }
  .hero-search .search-btn {
    background: var(--rose-dark);
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    transition: background .2s;
    flex-shrink: 0;
  }
  .hero-search .search-btn:hover { background: #d4607a; }

  /* ── HERO SECONDARY SEARCH (Telugu / A-Z) ── */
  .hero-secondary-search {
    margin-bottom: 14px;
    max-width: 88%;
  }
  .hero-telugu-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.55);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 7px 7px 7px 16px;
    gap: 10px;
    margin-bottom: 10px;
    transition: border-color .2s, box-shadow .2s;
  }
  .hero-telugu-search:focus-within {
    border-color: var(--rose);
    box-shadow: 0 2px 12px rgba(232,114,138,0.12);
  }
  .hero-telugu-search input {
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    min-width: 0;
  }
  .hero-telugu-search input::placeholder { color: var(--text-muted); }
  .hero-telugu-search .telugu-search-btn {
    background: var(--rose-dark);
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .hero-telugu-search .telugu-search-btn:hover { background: #d4607a; }

  .hero-az-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
  }
  .hero-az-label .abc-badge {
    background: var(--rose-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 5px;
    padding: 2px 6px;
    letter-spacing: 0.5px;
  }
  /* A-Z grid: evenly fills each row with no gaps at the end */
  .hero-az-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
    gap: 4px;
  }
  .hero-az-btn {
    height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .15s;
  }
  .hero-az-btn:hover { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }

  .hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  /* Generate button — distinctive rose-dark filled */
  .btn-generate {
    background: linear-gradient(135deg, var(--rose-dark) 0%, #d4607a 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
    flex: 0 0 auto;
    box-shadow: 0 2px 10px rgba(232,114,138,0.3);
  }
  .btn-generate:hover {
    box-shadow: 0 4px 16px rgba(232,114,138,0.45);
    transform: translateY(-1px);
    color: #fff;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary,
  .hero-btns .btn-saved {
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .hero-btns .btn-primary:hover,
  .hero-btns .btn-secondary:hover,
  .hero-btns .btn-saved:hover {
    background: var(--cream);
    border-color: var(--rose);
    color: var(--rose-dark);
  }
  .btn-primary {
    background: var(--rose-dark);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: 'DM Sans', sans-serif;
    display: inline-flex;
    align-items: center;
  }
  .btn-primary:hover { background: #d4607a; }
  .btn-secondary {
    background: #fff;
    color: var(--rose-dark);
    border: 1.5px solid var(--rose-dark);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
  }
  .btn-secondary:hover { background: var(--rose-dark); color: #fff; }
  .btn-saved {
    background: #fff;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
  }
  .btn-saved:hover { background: var(--cream); border-color: var(--rose); color: var(--rose-dark); }

  /* ── HERO SLIDESHOW ── */
  .hero-slideshow {
    position: relative;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .slide-area {
    position: relative;
    flex: 1;
    min-height: 140px;
  }
  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .slide:nth-child(1) { background: linear-gradient(160deg, #fde8ef 0%, #fef5f8 100%); }
  .slide:nth-child(2) { background: linear-gradient(160deg, #e8f7f0 0%, #f0fdf7 100%); }
  .slide:nth-child(3) { background: linear-gradient(160deg, #fef8e4 0%, #fdf6d0 100%); }
  .slide:nth-child(4) { background: linear-gradient(160deg, #ede8fd 0%, #f5f0ff 100%); }
  .slide:nth-child(5) { background: linear-gradient(160deg, #e8f3fd 0%, #eef7ff 100%); }
  .slide-caption {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 0.3px;
  }

  /* Name of the Day */
  .name-of-day {
    background: #fffbf0;
    border-top: 1.5px solid #f5e6c8;
    padding: 10px 14px 8px;
    flex-shrink: 0;
  }
  .nod-label {
    font-size: 10px;
    font-weight: 700;
    color: #c4903a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }
  .nod-body {
    background: #fff;
    border: 1px solid #f0dfa8;
    border-radius: 8px;
    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .nod-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 12px;
  }
  .nod-key {
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    font-size: 11px;
  }
  .nod-val {
    color: var(--rose-dark);
    font-weight: 600;
  }

  /* Dots */
  .slide-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 10px;
    background: #fffbf0;
    flex-shrink: 0;
    border-top: 1px solid #f5e6c8;
  }
  .slide-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(232,114,138,0.3);
    cursor: pointer;
    transition: all .25s;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .slide-dot.active { background: var(--rose-dark); transform: scale(1.35); }

  /* ── RECENTLY VIEWED ROW (below Popular Names) ── */
  .middle-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 12px;
    padding: 0 0 24px;
  }

  /* Horizontal Recently Viewed strip */
  .rv-strip-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 14px 16px;
    box-shadow: var(--shadow);
    min-width: 0;
  }
  .rv-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .rv-strip-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }
  .rv-strip-scroll::-webkit-scrollbar { height: 4px; }
  .rv-strip-scroll::-webkit-scrollbar-track { background: transparent; }
  .rv-strip-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
  .rv-strip-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 90px;
    position: relative;
  }
  .rv-strip-pill:hover { border-color: var(--rose); background: #fff5f8; }
  .rv-strip-pill-name { font-size: 13px; font-weight: 700; color: var(--rose-dark); white-space: nowrap; }
  .rv-strip-pill-meaning { font-size: 10px; color: var(--text-muted); white-space: nowrap; max-width: 100px; overflow: hidden; text-overflow: ellipsis; }
  .rv-strip-pill-gender {
    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
    margin-top: 2px;
  }
  .rv-strip-pill-gender.boy { background: #e8f3fd; color: #4a86c8; border: 1px solid #c8dff5; }
  .rv-strip-pill-gender.girl { background: #fde8f0; color: #C94F7C; border: 1px solid #F1E4E8; }
  .rv-strip-pill-remove {
    position: absolute;
    top: 3px; right: 4px;
    font-size: 10px;
    color: var(--border);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color .15s;
  }
  .rv-strip-pill-remove:hover { color: var(--rose-dark); }
  .rv-strip-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    padding: 8px 0;
  }
  .rv-strip-empty-icon { font-size: 20px; opacity: .5; }

  .filter-card, .links-card, .ad-card-sm {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 14px 16px;
    box-shadow: var(--shadow);
  }
  .ad-card-sm {
    background: var(--ad-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px dashed #e8a0b0;
    gap: 8px;
    padding: 20px;
  }
  .ad-card-sm svg { opacity: .35; }
  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
  }
  .filter-group { margin-bottom: 10px; }
  .filter-group label { font-size: 11px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: .6px; display:flex; align-items:center; gap:5px; margin-bottom: 6px; }
  .filter-group label::before{content:'';display:inline-block;width:3px;height:11px;background:var(--rose-dark);border-radius:2px;flex-shrink:0;}
  .filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
  .pill {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all .15s;
    background: var(--cream);
    color: var(--text);
  }
  .pill:hover, .pill.active { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }
  .filter-submit { width: 100%; margin-top: 12px; }

  /* ✅ 2-COLUMN FILTER GRID */
  .filter-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 10px;
  }
  .filter-2col .filter-group { margin-bottom: 0; }

  /* ✅ FULL WIDTH FILTER ROW */
  .filter-fullrow { margin-bottom: 10px; }

  /* ✅ SHOW MORE TOGGLE */
  .pills-collapsed .pill-hidden { display: none; }
  .show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    border: 1.5px dashed var(--border);
    background: #fff;
    color: var(--rose-dark);
    cursor: pointer;
    transition: all .15s;
    font-family: 'DM Sans', sans-serif;
    flex-shrink: 0;
  }
  .show-more-btn:hover { border-color: var(--rose-dark); background: #fff5f8; }
  .links-card a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .15s;
    margin-bottom: 1px;
  }
  .links-card a:hover { background: var(--rose); color: #fff; }
  .links-card a span { font-size: 16px; }

  /* ── MAIN + SIDEBAR LAYOUT ── */
  .content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 12px;
    padding-bottom: 40px;
  }
  .main-content {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  /* ── CATEGORIES GRID ── */
  .section-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: var(--border);
    margin-left: 8px;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }
  .cat-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 1px 6px rgba(232,114,138,0.06);
  }
  .cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(232,114,138,0.18); border-color: var(--rose); }
  .cat-card .cat-icon { font-size: 26px; margin-bottom: 6px; }
  .cat-card .cat-name { font-size: 12px; font-weight: 600; color: var(--text); }
  .cat-card .cat-count { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

  /* ── TRENDING TABLE ── */
  .trending-section { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 22px; box-shadow: var(--shadow); }
  .trending-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
  .tab-btn {
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    cursor: pointer;
    background: var(--cream);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
  }
  .tab-btn.active { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }
  table { width: 100%; border-collapse: collapse; font-size: 13px; }
  thead th {
    background: var(--cream);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 10px 12px;
    text-align: left;
  }
  thead th:first-child { border-radius: 8px 0 0 8px; }
  thead th:last-child { border-radius: 0 8px 8px 0; }
  tbody tr { border-bottom: 1px solid var(--border); transition: background .12s; }
  tbody tr:hover { background: #fff8fb; }
  tbody td { padding: 10px 12px; }
  tbody td:first-child { color: var(--text-muted); font-size: 12px; font-weight: 600; }
  .name-link { color: var(--rose-dark); font-weight: 600; }
  .name-link:hover { text-decoration: underline; }
  .telugu-text { font-size: 12px; color: var(--text-muted); }
  .num-badge {
    display: inline-block;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 11px;
    padding: 2px 8px;
    color: var(--text-muted);
    font-weight: 600;
  }

  /* ── SIDEBAR ── */
  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }
  .sidebar-card {
    background: var(--sidebar-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .sidebar-card .card-title { font-size: 0.95rem; margin-bottom: 12px; }
  .name-list-footer {
    border-top: 1px solid var(--border);
    margin-top: 10px;
    padding-top: 10px;
    text-align: right;
  }
  .name-list-footer a {
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-dark);
    transition: color .15s;
  }
  .name-list-footer a:hover { color: #d4607a; text-decoration: underline; }
  .name-list { display: flex; flex-direction: column; gap: 6px; }
  .name-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all .15s;
    cursor: pointer;
  }
  .name-list-item:hover { border-color: var(--rose); box-shadow: 0 2px 8px rgba(232,114,138,0.12); }
  .name-list-item .nl-name { font-weight: 600; font-size: 13px; color: var(--rose-dark); }
  .name-list-item .nl-meaning { font-size: 11px; color: var(--text-muted); }
  .name-list-item .nl-num { font-size: 11px; font-weight: 700; color: var(--mint); background: #f0fbf5; border-radius: 8px; padding: 2px 7px; }

  /* Tools grid */
  .tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .tool-btn {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .15s;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .tool-btn:hover { border-color: var(--rose-dark); color: var(--rose-dark); background: #fff5f8; }
  .tool-btn .tool-icon { font-size: 22px; display: block; margin-bottom: 4px; }

  /* A-Z */
  .az-grid { display: flex; flex-wrap: wrap; gap: 5px; }
  .az-btn {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .15s;
  }
  .az-btn:hover { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }

  /* Sidebar categories */
  .sidebar-cats { display: flex; flex-direction: column; gap: 6px; }
  .sidebar-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .15s;
    font-size: 13px;
  }
  .sidebar-cat-item:hover { border-color: var(--rose); color: var(--rose-dark); }
  .sidebar-cat-item .sc-count {
    background: var(--rose);
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
  }

  /* ── HEADER ACTIONS ── */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .header-saved-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-dark);
    background: #fff5f8;
    border: 1.5px solid var(--rose);
    border-radius: 20px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
  }
  .header-saved-btn:hover { background: var(--rose-dark); color: #fff; }
  .header-saved-btn svg { flex-shrink: 0; }

  /* ── SOCIAL PROOF STRIP ── */
  .social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
  }
  .proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }
  .proof-item .proof-icon { font-size: 18px; }
  .proof-item .proof-num { color: var(--rose-dark); font-weight: 700; }

  /* ── POPULAR NAMES THIS WEEK ── */
  .popular-week-section { margin-bottom: 12px; }
  .popular-week-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .popular-week-header .section-label { margin-bottom: 0; }
  .popular-week-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 20px;
  }
  .pw-card {
    background: #ffffff;
    border: 1px solid #F1E4E8;
    border-radius: var(--radius);
    padding: 8px 8px 7px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    transition: all .22s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    position: relative;
    text-decoration: none;
    overflow: hidden;
  }
  .pw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: #C94F7C;
  }

  /* Trending badge — top 5 */
  .pw-trending-badge {
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, #ff6b6b, #C94F7C);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 0 var(--radius) 0 10px;
    text-transform: uppercase;
  }

  /* Rank — medal for top 3, rose number for rest */
  .pw-rank {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    margin-top: 2px;
    line-height: 1;
  }
  .pw-rank.medal { font-size: 16px; }
  .pw-rank.number { color: #C94F7C; font-size: 11px; }

  .pw-name {
    font-size: 14px;
    font-weight: 700;
    color: #C94F7C;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: color .15s;
    line-height: 1.2;
  }
  .pw-name:hover { color: #a03060; }

  /* ✅ Combined Telugu + Meaning on one line */
  .pw-telugu-meaning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .pw-telugu {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.2;
  }
  .pw-telugu-sep {
    font-size: 9px;
    color: var(--border);
    flex-shrink: 0;
  }
  .pw-meaning {
    font-size: 11px;
    color: #5F5A60;
    text-align: center;
    font-style: italic;
    line-height: 1.2;
  }
  .pw-gender {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    text-align: center;
    margin: 1px auto 0;
    align-self: center;
  }
  .pw-gender.boy { background: #e8f3fd; color: #4a86c8; border: 1px solid #c8dff5; }
  .pw-gender.girl { background: #fde8f0; color: #C94F7C; border: 1px solid #F1E4E8; }

  /* ✅ Card gender tints */
  .pw-card.pw-boy{background:#f0f6ff;border-color:#c8dff5;}
  .pw-card.pw-boy:hover{background:#e4effe;border-color:#4a86c8;}
  .pw-card.pw-girl{background:#fff5f8;border-color:#f7c0d0;}
  .pw-card.pw-girl:hover{background:#ffe8ef;border-color:#C94F7C;}
  .pw-actions {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 5px;
    border-top: 1px solid #F1E4E8;
    padding-top: 5px;
  }
  .pw-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    background: none;
    border: 1px solid #F1E4E8;
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .15s;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
  }
  .pw-btn:hover { border-color: #C94F7C; color: #C94F7C; background: #fff0f5; }
  .pw-btn.liked { color: #C94F7C; border-color: #C94F7C; background: #fff0f5; }
  .pw-btn.saved { color: #4a86c8; border-color: #c8dff5; background: #e8f3fd; }
  .pw-like-count { color: var(--text-muted); font-weight: 400; }

  /* View All button — stronger CTA */
  .pw-view-all {
    display: block;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    padding: 11px 40px;
    border: 2px solid #E8738C;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #E8738C;
    background: #fff;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,115,140,0.1);
  }
  .pw-view-all:hover {
    background: #E8738C;
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,115,140,0.3);
    transform: translateY(-1px);
  }
  .cat-card .cat-desc {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
    line-height: 1.3;
  }

  /* ── CELEBRITY BANNER ── */
  .celebrity-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff8e8 0%, #fff3fa 100%);
    border: 1.5px solid #f5dfa8;
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 28px;
    cursor: pointer;
    transition: all .2s;
  }
  .celebrity-banner:hover { box-shadow: 0 4px 16px rgba(232,114,138,0.15); }
  .celebrity-banner .cb-left { display: flex; align-items: center; gap: 10px; }
  .celebrity-banner .cb-icon { font-size: 24px; }
  .celebrity-banner .cb-title { font-weight: 700; font-size: 14px; color: var(--text); }
  .celebrity-banner .cb-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
  .celebrity-banner .cb-arrow { color: var(--rose-dark); font-weight: 700; font-size: 16px; }

  /* ── TABLE ACTION ICONS ── */
  .tbl-actions { display: flex; gap: 6px; align-items: center; }
  .tbl-icon-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 26px; height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all .15s;
    padding: 0;
  }
  .tbl-icon-btn:hover { background: var(--rose); border-color: var(--rose); }

  /* ── GUIDES SECTION ── */
  .guides-section { margin-top: 28px; }
  .guides-grid { display: flex; flex-direction: column; gap: 10px; }
  .guide-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all .2s;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(232,114,138,0.06);
  }
  .guide-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,114,138,0.14); border-color: var(--rose); }
  .guide-thumb {
    width: 120px; min-width: 120px; height: 68px;
    align-self: center;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; flex-shrink: 0;
    border-radius: 8px; margin: 8px 0 8px 10px; overflow: hidden;
  }
  .guide-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
  .guide-body { flex: 1; padding: 10px 13px 10px 10px; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
  .guide-tag {
    display: inline-block; font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .6px;
    color: var(--rose-dark); background: #fff5f8;
    border-radius: 10px; padding: 2px 8px; width: fit-content;
  }
  .guide-title {
    font-family: 'Playfair Display', serif;
    font-size: .9rem; font-weight: 700; color: var(--text);
    line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .guide-card:hover .guide-title { color: var(--rose-dark); }
  .guide-meta { font-size: 10px; color: var(--text-muted); }
  .guide-arrow { color: var(--rose-dark); font-size: 11px; font-weight: 700; margin-top: auto; display: block; }
  .guide-thumb.thumb-modern{background:linear-gradient(135deg,#d1fae5,#ecfdf5);}
  .guide-thumb.thumb-rashi{background:linear-gradient(135deg,#ede9f6,#f5f3ff);}
  .guide-thumb.thumb-unique{background:linear-gradient(135deg,#fde8ef,#fff0f5);}

  /* ── TELUGU LETTER GRID ── */
  .telugu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .telugu-btn {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .15s;
    padding: 0 4px;
  }
  .telugu-btn:hover { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }
  .telugu-section-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 8px 0 4px;
    display: block;
  }
  .telugu-section-label:first-child { margin-top: 0; }

  /* ── RECENTLY VIEWED MIDDLE CARD ── */
  .rv-middle-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 14px 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .rv-middle-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
  }
  .rv-middle-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    gap: 6px;
  }
  .rv-middle-empty-icon { font-size: 22px; opacity: .6; }
  .rv-middle-empty-text { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

  /* Pill style for recently viewed items in middle card */
  .rv-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    gap: 6px;
  }
  .rv-pill:hover { border-color: var(--rose); background: #fff5f8; }
  .rv-pill-name { font-size: 12px; font-weight: 700; color: var(--rose-dark); white-space: nowrap; }
  .rv-pill-meaning { font-size: 10px; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
  .rv-pill-remove {
    font-size: 10px;
    color: var(--border);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color .15s;
    line-height: 1;
  }
  .rv-pill-remove:hover { color: var(--rose-dark); }
  .rv-middle-clear {
    font-size: 10px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    padding: 4px 0 0;
    font-family: 'DM Sans', sans-serif;
    transition: color .15s;
    align-self: flex-end;
  }
  .rv-middle-clear:hover { color: var(--rose-dark); }
  .name-gen-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff0f5 0%, #f0fdf7 100%);
    border: 1.5px solid var(--rose);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
  }
  .name-gen-banner:hover { box-shadow: 0 4px 16px rgba(232,114,138,0.18); transform: translateY(-1px); border-color: var(--rose-dark); }
  .name-gen-icon { font-size: 24px; flex-shrink: 0; }
  .name-gen-text { flex: 1; }
  .name-gen-title { display: block; font-size: 13px; font-weight: 700; color: var(--rose-dark); }
  .name-gen-sub { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
  .name-gen-arrow { font-size: 16px; font-weight: 700; color: var(--rose-dark); flex-shrink: 0; }

  /* ── NAME OF DAY CLICKABLE ── */
  .nod-link {
    color: var(--rose-dark) !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px dotted var(--rose-dark);
    transition: color .15s;
  }
  .nod-link:hover { color: #d4607a !important; }
  .nod-full-link {
    display: block;
    text-align: right;
    font-size: 11px;
    font-weight: 600;
    color: var(--rose-dark);
    margin-top: 6px;
    text-decoration: none;
    transition: color .15s;
  }
  .nod-full-link:hover { color: #d4607a; text-decoration: underline; }

  /* ── RECENTLY VIEWED ── */
  .recently-viewed-section { margin-top: 28px; }
  .rv-empty {
    background: #fff;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
  }
  .rv-empty-icon { font-size: 28px; margin-bottom: 8px; }
  .rv-empty-text { font-size: 13px; font-weight: 600; color: var(--text-muted); }
  .rv-empty-sub { font-size: 11px; color: var(--text-muted); margin-top: 4px; opacity: .7; }
  .rv-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .rv-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    position: relative;
  }
  .rv-card:hover { border-color: var(--rose); box-shadow: 0 4px 12px rgba(232,114,138,0.14); transform: translateY(-2px); }
  .rv-card-name { font-size: 13px; font-weight: 700; color: var(--rose-dark); display: block; margin-bottom: 3px; }
  .rv-card-meaning { font-size: 10px; color: var(--text-muted); display: block; }
  .rv-card-gender {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
    margin-top: 4px;
    background: var(--cream);
    color: var(--text-muted);
    border: 1px solid var(--border);
  }
  .rv-card-remove {
    position: absolute;
    top: 4px; right: 5px;
    font-size: 11px;
    color: var(--border);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    padding: 0;
    transition: color .15s;
  }
  .rv-card-remove:hover { color: var(--rose-dark); }
  .rv-clear-btn {
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: color .15s;
    padding: 0;
  }
  .rv-clear-btn:hover { color: var(--rose-dark); }
  @media (max-width: 600px) { .rv-grid { grid-template-columns: repeat(3, 1fr); } }

  /* ── FILTER + TIPS PANEL (inside main content, below guides) ── */
  .filter-tips-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 14px;
    margin-top: 24px;
  }
  .filter-tips-filter {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
  }
  .filter-tips-tips {
    background: linear-gradient(135deg, #fff8f0 0%, #fff0f8 100%);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
  }
  .tips-list {
    list-style: none;
    margin: 6px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
  }
  .tips-list li::before {
    content: '•';
    color: var(--rose-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .tips-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--rose-dark);
    border: 1.5px solid var(--rose-dark);
    border-radius: 20px;
    padding: 8px 18px;
    margin-top: auto;
    transition: all .2s;
    text-decoration: none;
    width: fit-content;
  }
  .tips-guide-link:hover { background: var(--rose-dark); color: #fff; }
  @media (max-width: 900px) {
    .filter-tips-row { grid-template-columns: 1fr; }
  }

  footer {
    background: var(--text);
    color: #d0b8c0;
    padding: 40px 24px 20px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #3d2d33;
    margin-bottom: 18px;
  }
  .footer-brand .logo { color: var(--rose); font-size: 1.3rem; }
  .footer-brand p { font-size: 13px; margin-top: 10px; line-height: 1.7; color: #a08090; }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
  .footer-col a { display: block; font-size: 13px; color: #a08090; margin-bottom: 6px; transition: color .15s; }
  .footer-col a:hover { color: var(--rose); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #6d5560; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .popular-week-grid { grid-template-columns: repeat(2, 1fr); }
    .popular-week-section { max-width: 100%; box-sizing: border-box; }
    .hero-section { grid-template-columns: 1fr; }
    .slide-area {
      height: 180px !important;
      min-height: 180px !important;
    }
    .slide-area .slide {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
    }
    /* Core layout collapse */
    .content-area {
      grid-template-columns: 1fr;
      width: 100%;
      max-width: 100%;
    }
    .middle-row { grid-template-columns: 1fr; }
    .filter-tips-row { grid-template-columns: 1fr; }

    /* ── Mobile accordion for Filters ── */
    .accordion-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
      margin-bottom: 0;
    }
    .accordion-trigger .accordion-arrow {
      font-size: 13px;
      color: var(--rose-dark);
      transition: transform .3s ease;
      font-style: normal;
      flex-shrink: 0;
    }
    .accordion-trigger.open .accordion-arrow {
      transform: rotate(180deg);
    }
    /* Collapsed by default on mobile */
    .accordion-body {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      margin-top: 0;
      transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
    }
    /* Expanded when .open toggled by JS */
    .accordion-body.open {
      max-height: 700px;
      opacity: 1;
      margin-top: 12px;
    }
    .ad-card-sm { display: flex; min-height: 80px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .page-wrap { padding: 0 12px; width: 100%; max-width: 100%; }
    html, body { overflow-x: hidden; max-width: 100%; }
    .hero-btns { flex-wrap: wrap; gap: 8px; }
    .hero-content p { white-space: normal; font-size: 13px; }
    .hero-secondary-search { max-width: 100%; }
    .btn-generate { width: 100%; justify-content: center; }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
      flex: 1 1 0;
      justify-content: center;
      text-align: center;
      padding: 9px 10px;
      font-size: 12px;
      white-space: nowrap;
      width: auto !important;
    }
    .hero-btns .btn-saved {
      width: auto !important;
      flex: 0 0 auto;
    }

    /* Every card and section must be 100% wide */
    .sidebar,
    .sidebar-card,
    .filter-tips-filter,
    .filter-tips-tips,
    .rv-strip-card,
    .ad-card-sm,
    .trending-section,
    .guides-section,
    .recently-viewed-section,
    .celebrity-banner,
    .social-proof,
    .name-gen-banner,
    .hero-content,
    .hero-slideshow {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Table: scroll horizontally */
    .trending-section {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    table { min-width: 400px; width: 100%; }

    /* Name list items */
    .name-list-item {
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
    }
    .nl-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 140px; }

    /* Telugu grid */
    .telugu-grid { flex-wrap: wrap; width: 100%; }

    /* Guide cards stack */
    .guides-grid { grid-template-columns: 1fr; width: 100%; }

    /* Recently viewed */
    .rv-grid { grid-template-columns: repeat(3, 1fr); width: 100%; }
    .rv-empty { width: 100%; box-sizing: border-box; }

    /* Category cards */
    .cat-card { min-width: 0; box-sizing: border-box; overflow: hidden; }
    .cat-desc { white-space: normal; word-break: break-word; }

    /* Social proof */
    .social-proof { flex-wrap: wrap; gap: 12px; }
    .proof-item { font-size: 12px; }
  }

  @media (max-width: 600px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .social-proof { gap: 12px; justify-content: flex-start; }
    .header-saved-btn { display: flex; font-size: 11px; padding: 4px 10px; }
    table { min-width: 360px; }
  }

  /* ── Desktop: accordion always fully visible, arrow hidden ── */
  @media (min-width: 901px) {
    .accordion-body {
      max-height: none !important;
      opacity: 1 !important;
      margin-top: 12px !important;
      overflow: visible !important;
    }
    .accordion-arrow { display: none !important; }
    .accordion-trigger { cursor: default; margin-bottom: 10px; }
  }

  @media(max-width:480px){
    .logo{font-size:1.55rem !important;}
    .header-saved-btn{font-size:11px !important;padding:4px 10px !important;}
    .header-saved-btn svg{width:13px;height:13px;}
  }

  :root {
    --rose: #f7a8b8; --rose-dark: #e8728a; --mint: #a8dbc5;
    --cream: #fdf8f2; --warm-white: #fffaf6; --text: #2d2226;
    --text-muted: #7a6570; --border: #f0e4ea; --ad-bg: #fff5f8;
    --sidebar-bg: #fff9fb; --shadow: 0 2px 16px rgba(232,114,138,0.10); --radius: 14px;
  }
  *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
  html{overflow-x:hidden;scroll-behavior:smooth;color-scheme:light;}
  body{font-family:'DM Sans',sans-serif;background:var(--cream) !important;color:var(--text) !important;font-size:15px;line-height:1.6;overflow-x:hidden;}
  a{color:inherit;text-decoration:none;}

  /* HEADER */
  header{background:#fff;border-bottom:2px solid var(--border);padding:0 24px;position:sticky;top:0;z-index:100;box-shadow:0 2px 12px rgba(232,114,138,0.07);}
  .header-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:64px;gap:20px;}
  .logo{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:var(--rose-dark);letter-spacing:-0.5px;white-space:nowrap;}
  .logo span{color:var(--text);}
  .desktop-nav{display:flex;gap:6px;flex-wrap:wrap;}
  .desktop-nav a{font-size:14.5px;font-weight:500;padding:5px 13px;border-radius:20px;color:var(--text-muted);transition:all .2s;}
  .desktop-nav a:hover,.desktop-nav a.active{background:var(--rose-dark);color:#fff;}
  .hamburger{display:none;flex-direction:column;justify-content:center;gap:5px;width:38px;height:38px;background:none;border:1.5px solid var(--border);border-radius:10px;cursor:pointer;padding:7px;transition:all .2s;}
  .hamburger:hover{border-color:var(--rose-dark);background:#fff5f8;}
  .hamburger span{display:block;height:2px;background:var(--rose-dark);border-radius:2px;transition:all .3s ease;transform-origin:center;}
  .hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
  .hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  .mobile-nav{display:none;position:fixed;top:64px;left:0;right:0;background:#fff;border-bottom:2px solid var(--border);box-shadow:0 8px 24px rgba(232,114,138,0.12);z-index:99;padding:10px 16px 16px;flex-direction:column;gap:2px;animation:slideDown .25s ease;}
  .mobile-nav.open{display:flex;}
  .mobile-nav a{font-size:14px;font-weight:500;padding:10px 14px;border-radius:10px;color:var(--text-muted);transition:all .15s;}
  .mobile-nav a:hover{background:var(--rose);color:#fff;}
  @keyframes slideDown{from{opacity:0;transform:translateY(-8px);}to{opacity:1;transform:translateY(0);}}
  .header-actions{display:flex;align-items:center;gap:10px;
    flex-shrink: 0;
  }
  .header-saved-btn{display:flex;align-items:center;gap:5px;font-size:13px;font-weight:600;color:var(--rose-dark);background:#fff5f8;border:1.5px solid var(--rose);border-radius:20px;padding:5px 14px;cursor:pointer;transition:all .2s;white-space:nowrap;}
  .header-saved-btn:hover{background:var(--rose-dark);color:#fff;}

  /* ✅ SEARCH BAR */
  .search-bar-wrap{background:#fff;border-bottom:1px solid var(--border);padding:10px 24px;}
  .search-bar-inner{max-width:1200px;margin:0 auto;}
  .search-bar{display:flex;align-items:center;background:var(--cream);border:1.5px solid var(--border);border-radius:30px;padding:8px 18px;gap:10px;transition:border-color .2s;}
  .search-bar:focus-within{border-color:var(--rose-dark);}
  .search-bar input{border:none;background:transparent;font-family:'DM Sans',sans-serif;font-size:14px;color:var(--text);width:100%;outline:none;}
  .search-bar input::placeholder{color:var(--text-muted);}
  .search-bar svg{color:var(--text-muted);flex-shrink:0;}

  /* AD BANNER */
  .ad-banner{background:var(--ad-bg);border-bottom:1px dashed var(--border);text-align:center;padding:10px 20px;}
  .ad-banner-pill{display:inline-block;border:1.5px dashed #e8a0b0;border-radius:30px;padding:6px 40px;background:#fff;font-size:12px;color:#c07080;letter-spacing:1px;text-transform:uppercase;}

  /* LAYOUT */
  .page-wrap{max-width:1200px;margin:0 auto;padding:0 20px;box-sizing:border-box;overflow-x:hidden;background:var(--cream);}
  .nl-content-area{display:grid;grid-template-columns:220px 1fr 280px;gap:20px;padding:20px 0 40px;}
  .main-content{min-width:0;width:100%;overflow:hidden;background:var(--cream);}

  /* BREADCRUMB */
  .breadcrumb{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-muted);padding:16px 0 0;flex-wrap:wrap;background:var(--cream);}
  .breadcrumb a{color:var(--rose-dark);}
  .breadcrumb a:hover{text-decoration:underline;}
  .breadcrumb span.sep{opacity:.5;}

  /* ✅ H1 PAGE HEADING */
  .nl-page-heading{margin:16px 0 8px;background:var(--cream);padding:4px 0;}
  .nl-page-heading h1{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:700;color:var(--text);line-height:1.3;}
  .nl-page-heading p{font-size:13px;color:var(--text-muted);margin-top:6px;line-height:1.6;}

  /* ✅ ALPHABET NAVIGATION */
  .alpha-nav-bar{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:14px 16px;margin-bottom:16px;box-shadow:0 1px 6px rgba(232,114,138,0.06);}
  .alpha-nav-label{font-size:11px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:10px;}
  .alpha-nav{display:flex;flex-wrap:wrap;gap:5px;}
  .alpha-btn{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:7px;border:1.5px solid var(--border);background:var(--cream);font-size:12px;font-weight:700;color:var(--text-muted);cursor:pointer;transition:all .15s;text-decoration:none;}
  .alpha-btn:hover,.alpha-btn.active{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}

  /* FILTER SIDEBAR */
  .nl-filter-card{background:#fff;border-radius:var(--radius);border:1.5px solid var(--border);padding:18px;box-shadow:var(--shadow);position:sticky;top:80px;max-height:calc(100vh - 100px);overflow-y:auto;}
  .filter-group{margin-bottom:12px;}
  .filter-group label{font-size:11px;font-weight:800;color:var(--text);text-transform:uppercase;letter-spacing:.6px;display:flex;align-items:center;gap:5px;margin-bottom:6px;}
  .filter-group label::before{content:'';display:inline-block;width:3px;height:11px;background:var(--rose-dark);border-radius:2px;flex-shrink:0;}

  /* 2-COLUMN FILTER GRID */
  .filter-2col{display:grid;grid-template-columns:1fr 1fr;gap:8px 14px;margin-bottom:10px;}
  .filter-2col .filter-group{margin-bottom:0;}
  .filter-fullrow{margin-bottom:10px;}

  /* SHOW MORE TOGGLE */
  .pills-collapsed .pill-hidden{display:none;}
  .show-more-btn{display:inline-flex;align-items:center;gap:4px;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;border:1.5px dashed var(--border);background:#fff;color:var(--rose-dark);cursor:pointer;transition:all .15s;font-family:'DM Sans',sans-serif;flex-shrink:0;}
  .show-more-btn:hover{border-color:var(--rose-dark);background:#fff5f8;}
  /* ✅ Filter pills now link to SEO-friendly URLs */
  .filter-pills{display:flex;gap:6px;flex-wrap:wrap;}
  .pill{padding:4px 12px;border-radius:20px;font-size:12px;border:1.5px solid var(--border);cursor:pointer;transition:all .15s;background:var(--cream);color:var(--text);text-decoration:none;display:inline-block;}
  .pill:hover,.pill.active{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}
  .filter-submit{width:100%;margin-top:10px;background:var(--rose-dark);color:#fff;border:none;border-radius:30px;padding:10px;font-size:14px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background .2s;}
  .filter-submit:hover{background:#d4607a;}
  .filter-card-title{font-family:'Playfair Display',serif;font-size:1rem;font-weight:600;margin-bottom:14px;color:var(--text);}

  /* DESKTOP FILTER APPLY/RESET */
  .filter-actions{margin-top:16px;padding-top:14px;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:8px;}
  .filter-apply{width:100%;background:var(--rose-dark);color:#fff;border:none;border-radius:30px;padding:11px;font-size:14px;font-weight:700;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background .2s;}
  .filter-apply:hover{background:#d4607a;}
  .filter-reset{width:100%;background:#fff;color:var(--text-muted);border:1.5px solid var(--border);border-radius:30px;padding:9px;font-size:13px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s;}
  .filter-reset:hover{border-color:var(--rose-dark);color:var(--rose-dark);}
  /* pill as button */
  button.pill{cursor:pointer;font-family:'DM Sans',sans-serif;background:var(--cream);}

  /* RESULTS BAR */
  .results-bar{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;flex-wrap:wrap;gap:10px;}
  .results-count{font-size:14px;color:var(--text-muted);}
  .results-count strong{color:var(--text);}
  .sort-select{border:1.5px solid var(--border);border-radius:20px;padding:6px 14px;font-size:13px;font-family:'DM Sans',sans-serif;background:#fff;color:var(--text);cursor:pointer;outline:none;}
  .active-filters{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px;}
  .filter-chip{display:inline-flex;align-items:center;gap:5px;background:#fff5f8;border:1.5px solid var(--rose);border-radius:20px;padding:4px 12px;font-size:12px;font-weight:600;color:var(--rose-dark);}
  .chip-remove{cursor:pointer;font-size:11px;opacity:.6;transition:opacity .15s;}
  .chip-remove:hover{opacity:1;}

  /* LETTER GROUP HEADER */
  .letter-group-header{padding:8px 16px;background:linear-gradient(90deg,var(--cream),#fff);font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;color:var(--rose-dark);border-bottom:1px solid var(--border);letter-spacing:2px;}

  /* NAME LIST ROWS */
  .nl-name-rows{display:flex;flex-direction:column;gap:0;margin-bottom:28px;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow);}
  .nl-name-row{display:grid;grid-template-columns:180px 1fr auto auto;align-items:center;gap:12px;padding:11px 16px;border-bottom:1px solid var(--border);transition:background .15s;text-decoration:none;color:var(--text);}
  .nl-name-row:last-child{border-bottom:none;}
  .nl-name-row:hover{background:#fff5f8;}
  .nr-identity{display:flex;flex-direction:column;gap:1px;min-width:0;}
  .nr-name{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;color:var(--rose-dark);white-space:nowrap;}
  .nr-telugu{font-size:11px;color:var(--text-muted);}
  .nr-middle{display:flex;flex-direction:column;gap:4px;min-width:0;}
  .nr-meaning{font-size:13px;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .nr-badges{display:flex;align-items:center;gap:5px;flex-wrap:wrap;}
  .nr-actions{display:flex;align-items:center;gap:4px;flex-shrink:0;}
  .nr-btn{width:30px;height:30px;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--border);border-radius:8px;background:#fff;cursor:pointer;font-size:13px;transition:all .15s;font-family:'DM Sans',sans-serif;color:var(--text-muted);text-decoration:none;flex-shrink:0;}
  .nr-btn:hover{border-color:var(--rose-dark);background:#fff5f8;}
  .nr-btn.liked{background:#fff0f5;border-color:var(--rose);color:var(--rose-dark);}
  .nr-btn.saved{background:#e8f3fd;border-color:#c8dff5;color:#4a86c8;}
  .nr-arrow{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:var(--rose-dark);color:#fff;border-radius:8px;font-size:14px;font-weight:700;flex-shrink:0;transition:background .15s;}
  .nl-name-row:hover .nr-arrow{background:#d4607a;}

  /* INLINE AD ROW */
  .nl-name-row-ad{padding:10px 16px;background:var(--ad-bg);border-bottom:1px solid var(--border);text-align:center;font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;min-height:60px;display:flex;align-items:center;justify-content:center;gap:8px;}

  /* EMPTY STATE */
  .empty-state{text-align:center;padding:48px 24px;}
  .empty-icon{font-size:3rem;margin-bottom:12px;}
  .empty-title{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:var(--text);margin-bottom:8px;}
  .empty-msg{font-size:13px;color:var(--text-muted);margin-bottom:20px;}
  .empty-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
  .empty-btn{background:var(--rose-dark);color:#fff;border-radius:30px;padding:10px 22px;font-size:13px;font-weight:600;text-decoration:none;}
  .empty-btn-outline{background:#fff;color:var(--rose-dark);border:1.5px solid var(--rose-dark);}

  /* BLOCK 1 — Info only (count + active chips) */
  .info-block{background:var(--cream);border:1.5px solid var(--border);border-radius:var(--radius);padding:12px 16px;margin-bottom:10px;}
  .info-block-count{font-size:15px;color:var(--text-muted);margin-bottom:10px;}
  .info-block-count strong{color:var(--rose-dark);font-size:18px;}
  .info-block-hint{font-size:13px;color:var(--text-muted);}
  .info-block .active-filters{margin:0;padding:0;}

  /* BLOCK 2 — Interactive gender filter */
  .action-block{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:12px 16px;margin-bottom:14px;display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
  .action-block-label{font-size:11px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;}

  /* INLINE BREADCRUMB (Entry Point B) */
  .inline-breadcrumb{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-muted);margin-bottom:12px;flex-wrap:wrap;}
  .inline-breadcrumb a{color:var(--rose-dark);font-weight:500;}
  .inline-breadcrumb a:hover{text-decoration:underline;}
  .ib-sep{opacity:.4;}

  /* GENDER QUICK FILTER PILLS — used in action-block */
  .gf-pill{display:inline-flex;align-items:center;gap:5px;padding:6px 16px;border-radius:20px;font-size:13px;font-weight:600;border:1.5px solid var(--border);background:#fff;color:var(--text-muted);cursor:pointer;transition:all .15s;text-decoration:none;}
  .gf-pill:hover{border-color:var(--rose-dark);color:var(--rose-dark);}
  .gf-pill.active-all{background:var(--text);color:#fff;border-color:var(--text);}
  .gf-pill.active-boy{background:#4a86c8;color:#fff;border-color:#4a86c8;}
  .gf-pill.active-girl{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}

  /* ROW GENDER TINTS */
  .nl-name-row.row-boy{background:#f0f6ff;}
  .nl-name-row.row-boy:hover{background:#e4effe;}
  .nl-name-row.row-girl{background:#fff5f8;}
  .nl-name-row.row-girl:hover{background:#ffe8ef;}

  /* GUIDE CARDS */
  .guide-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:20px;margin-bottom:28px;}
  .guide-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:18px 20px;text-decoration:none;color:var(--text);display:flex;align-items:flex-start;gap:14px;transition:all .2s;box-shadow:var(--shadow);}
  .guide-card:hover{border-color:var(--rose-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(232,114,138,0.14);}
  .guide-icon{font-size:2rem;flex-shrink:0;line-height:1;}
  .guide-title{font-family:'Playfair Display',serif;font-size:.95rem;font-weight:700;color:var(--text);margin-bottom:4px;}
  .guide-desc{font-size:12px;color:var(--text-muted);line-height:1.5;}
  .guide-cta{display:inline-block;margin-top:8px;font-size:11px;font-weight:700;color:var(--rose-dark);}
  @media(max-width:600px){
    .guide-cards{grid-template-columns:1fr;}
  }

  /* SEO CONTENT SECTION */
  .seo-content-section{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:24px;margin-top:20px;box-shadow:var(--shadow);}
  .seo-content-section h2{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:12px;}
  .seo-content-section h3{font-family:'Playfair Display',serif;font-size:.95rem;font-weight:600;color:var(--text);margin:14px 0 6px;}
  .seo-content-section p{font-size:13.5px;color:var(--text);line-height:1.85;margin-bottom:10px;}
  .seo-content-section ul{padding-left:18px;margin-bottom:14px;}
  .seo-content-section li{font-size:13.5px;color:var(--text);line-height:1.8;margin-bottom:5px;}
  .seo-content-section a{color:var(--rose-dark);font-weight:600;}
  .seo-content-section a:hover{text-decoration:underline;}

  /* MOBILE ROWS */
  @media(max-width:900px){
    .nl-name-row{
      display:grid;
      grid-template-columns:1fr 32px;
      grid-template-rows:auto auto;
      column-gap:6px;
      row-gap:0;
      padding:9px 10px;
      align-content:center;
      position:static;
    }
    .nr-identity{
      grid-column:1;
      grid-row:1;
      flex-direction:row;
      align-items:baseline;
      gap:7px;
      line-height:1.4;
      padding-bottom:1px;
    }
    .nr-middle{
      grid-column:1;
      grid-row:2;
      flex-direction:row;
      flex-wrap:wrap;
      align-items:center;
      gap:3px;
      line-height:1.3;
      padding-top:1px;
    }
    .nr-actions{
      grid-column:2;
      grid-row:1/3;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      gap:2px;
      align-self:center;
    }
    .nr-arrow{display:none;}
    .nr-name{font-size:1.05rem;font-weight:700;line-height:1.3;margin:0;}
    .nr-telugu{font-size:12px;line-height:1.3;}
    .nr-meaning{font-size:12px;white-space:normal;line-height:1.3;margin:0;}
    .nr-badges{gap:3px;margin:0;}
    .nr-btn{width:26px;height:26px;font-size:11px;padding:0;}
  }
  @media(max-width:480px){
    .nr-name{font-size:1rem;}
    .nr-btn{width:24px;height:24px;font-size:10px;}
    .nl-name-row{padding:8px;}
  }

  /* MOBILE FILTER SECTION — after pagination */
  .nl-mobile-filter-section{display:none;background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:16px;margin:16px 0;text-align:center;box-shadow:var(--shadow);}
  .nl-mobile-filter-label{font-size:13px;color:var(--text-muted);margin-bottom:10px;}
  .nl-mobile-filter-btn{display:inline-flex;align-items:center;gap:8px;background:var(--rose-dark);color:#fff;border:none;border-radius:30px;padding:12px 24px;font-size:14px;font-weight:700;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background .2s;}
  .nl-mobile-filter-btn:hover{background:#d4607a;}

  /* FLOATING ACTION BUTTON */
  .nl-filter-fab{display:none;position:fixed;bottom:80px;right:16px;width:48px;height:48px;background:var(--rose-dark);color:#fff;border:none;border-radius:50%;box-shadow:0 4px 16px rgba(232,114,138,0.4);cursor:pointer;z-index:89;align-items:center;justify-content:center;transition:all .2s;}
  .nl-filter-fab:hover{background:#d4607a;transform:scale(1.08);}

  /* PAGINATION */
  .pagination{display:flex;justify-content:center;align-items:center;gap:6px;margin-top:8px;}
  .pg-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;border:1.5px solid var(--border);background:#fff;font-size:13px;font-weight:600;color:var(--text-muted);cursor:pointer;transition:all .15s;}
  .pg-btn:hover,.pg-btn.active{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}
  .pg-btn.dots{border:none;background:none;cursor:default;}

  /* BADGES */
  .gender-badge{display:inline-block;font-size:10px;font-weight:700;padding:2px 9px;border-radius:10px;}
  .gender-badge.boy{background:#e8f3fd;color:#4a86c8;border:1px solid #c8dff5;}
  .gender-badge.girl{background:#fde8f0;color:#e8728a;border:1px solid #f7c0d0;}
  .num-badge{display:inline-block;background:var(--cream);border:1px solid var(--border);border-radius:10px;font-size:11px;padding:2px 8px;color:var(--text-muted);font-weight:600;}
  .tag-badge{display:inline-block;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--rose-dark);background:#fff5f8;border-radius:10px;padding:3px 10px;}

  /* LAYOUT TOGGLE */
  .layout-toggle{display:flex;gap:4px;}
  .lt-btn{width:30px;height:30px;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--border);border-radius:7px;background:#fff;cursor:pointer;color:var(--text-muted);transition:all .15s;font-size:14px;}
  .lt-btn.active,.lt-btn:hover{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}
  .name-cards-grid.list-view{grid-template-columns:1fr;}
  .name-cards-grid.list-view .name-card{flex-direction:row;align-items:center;gap:14px;padding:12px 16px;}
  .name-cards-grid.list-view .name-card .nc-actions{border-top:none;padding-top:0;margin-top:0;border-left:1px solid var(--border);padding-left:12px;flex-direction:column;min-width:90px;}

  /* RIGHT SIDEBAR */
  .sidebar{display:flex;flex-direction:column;gap:20px;min-width:0;width:100%;overflow:hidden;}
  .sidebar-card{background:var(--sidebar-bg);border:1.5px solid var(--border);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow);}
  .card-title{font-family:'Playfair Display',serif;font-size:1rem;font-weight:600;margin-bottom:10px;color:var(--text);}
  .name-list{display:flex;flex-direction:column;gap:6px;}
  .name-list-item{display:flex;align-items:center;justify-content:space-between;padding:7px 10px;background:#fff;border-radius:8px;border:1px solid var(--border);transition:all .15s;cursor:pointer;text-decoration:none;}
  .name-list-item:hover{border-color:var(--rose);box-shadow:0 2px 8px rgba(232,114,138,0.12);}
  .nl-name{font-weight:600;font-size:13px;color:var(--rose-dark);}
  .nl-meaning{font-size:11px;color:var(--text-muted);}
  .nl-num{font-size:11px;font-weight:700;color:var(--mint);background:#f0fbf5;border-radius:8px;padding:2px 7px;}
  .name-list-footer{border-top:1px solid var(--border);margin-top:10px;padding-top:10px;text-align:right;}
  .name-list-footer a{font-size:13px;font-weight:600;color:var(--rose-dark);}
  .name-list-footer a:hover{text-decoration:underline;}
  .tools-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
  .tool-btn{background:#fff;border:1.5px solid var(--border);border-radius:10px;padding:12px 8px;text-align:center;cursor:pointer;transition:all .15s;font-size:11px;font-weight:600;color:var(--text-muted);text-decoration:none;display:block;}
  .tool-btn:hover{border-color:var(--rose-dark);color:var(--rose-dark);background:#fff5f8;}
  .tool-btn .tool-icon{font-size:22px;display:block;margin-bottom:4px;}
  .ad-sidebar{background:var(--ad-bg);border:1.5px dashed #e8a0b0;border-radius:var(--radius);padding:18px;text-align:center;font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;min-height:120px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;}

  /* ✅ MOBILE FILTER DRAWER */
  .mobile-filter-bar{display:none;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid var(--border);margin-bottom:14px;}
  .mobile-filter-btn{display:flex;align-items:center;gap:6px;background:#fff;border:1.5px solid var(--border);border-radius:20px;padding:8px 16px;font-size:13px;font-weight:600;color:var(--text-muted);cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .2s;}
  .mobile-filter-btn:hover{border-color:var(--rose-dark);color:var(--rose-dark);}
  .nl-filter-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.4);z-index:200;}
  .nl-filter-overlay.open{display:block;}
  .nl-filter-drawer{position:fixed;bottom:0;left:0;right:0;background:#fff;border-radius:20px 20px 0 0;padding:24px 20px;z-index:201;max-height:80vh;overflow-y:auto;transform:translateY(100%);transition:transform .3s ease;}
  .nl-filter-drawer.open{transform:translateY(0);}
  .nl-drawer-handle{width:40px;height:4px;background:var(--border);border-radius:4px;margin:0 auto 20px;}
  .nl-drawer-title{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:16px;}
  .nl-drawer-close{float:right;background:none;border:none;font-size:20px;color:var(--text-muted);cursor:pointer;margin-top:-4px;}

  /* ✅ STICKY BOTTOM AD on Mobile */
  .sticky-bottom-ad{display:none;position:fixed;bottom:0;left:0;right:0;background:#fff;border-top:1px dashed #e8a0b0;padding:10px;text-align:center;font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;z-index:90;}

  /* FOOTER */
  footer{background:var(--text);color:#d0b8c0;padding:40px 24px 20px;}
  .footer-inner{max-width:1200px;margin:0 auto;}
  .footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;padding-bottom:28px;border-bottom:1px solid #3d2d33;margin-bottom:18px;}
  .footer-brand .logo{color:var(--rose);font-size:1.3rem;}
  .footer-brand p{font-size:13px;margin-top:10px;line-height:1.7;color:#a08090;}
  .footer-col h4{font-size:13px;font-weight:700;color:#fff;margin-bottom:12px;text-transform:uppercase;letter-spacing:.5px;}
  .footer-col a{display:block;font-size:13px;color:#a08090;margin-bottom:6px;transition:color .15s;}
  .footer-col a:hover{color:var(--rose);}
  .footer-bottom{display:flex;justify-content:space-between;align-items:center;font-size:12px;color:#6d5560;flex-wrap:wrap;gap:8px;}

  /* ✅ RESPONSIVE */
  @media(max-width:1024px){
    .nl-content-area{grid-template-columns:190px 1fr 240px;}
  }
  @media(max-width:900px){
    .nl-content-area{grid-template-columns:1fr !important;}
    .desktop-nav{display:none;}
    .hamburger{display:flex;}
    .page-wrap{padding:0 12px;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .header-saved-btn{font-size:11px;padding:4px 10px;}
    .nl-filter-card{display:none;}
    .sidebar{display:none;}
    .mobile-filter-bar{display:none;}
    .nl-mobile-filter-section{display:block;}
    .nl-filter-fab{display:flex;}
    .sticky-bottom-ad{display:block;padding-bottom:calc(10px + env(safe-area-inset-bottom));}
    footer{padding-bottom:calc(60px + env(safe-area-inset-bottom));}
    .search-bar-wrap{padding:10px 12px;}
  }
  @media(max-width:600px){
    .footer-grid{grid-template-columns:1fr;}
    .nl-page-heading h1{font-size:1.3rem;}
    .alpha-btn{width:26px;height:26px;font-size:11px;}
  }

  @media(max-width:480px){
    .logo{font-size:1.55rem !important;}
    .header-saved-btn{font-size:11px !important;padding:4px 10px !important;}
    .header-saved-btn svg{width:13px;height:13px;}
  }

/* ── WP BREADCRUMB ── */
.bnw-breadcrumb{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-muted);padding:10px 0 0;flex-wrap:wrap;}
.bnw-breadcrumb a{color:var(--rose-dark);}.bnw-breadcrumb a:hover{text-decoration:underline;}
.bnw-breadcrumb .sep{opacity:.5;}

/* ── NAME LIST LAYOUT ── */
.nl-page-heading{margin:8px 0 6px;}
.nl-page-heading h1{font-family:'Playfair Display',serif;font-size:1.55rem;font-weight:700;color:var(--text);line-height:1.3;}
.nl-page-heading p{font-size:13px;color:var(--text-muted);margin-top:5px;line-height:1.6;}
.nl-content-area{display:grid;grid-template-columns:220px 1fr 280px;gap:20px;padding:12px 0 40px;align-items:start;}
.nl-filter-card{background:#fff;border-radius:var(--radius);border:1.5px solid var(--border);padding:18px;box-shadow:var(--shadow);position:sticky;top:80px;max-height:calc(100vh - 100px);overflow-y:auto;}
.nl-filter-title{font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;margin-bottom:14px;color:var(--text);}
.nl-filter-actions{margin-top:14px;padding-top:12px;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:8px;}
.nl-filter-apply{width:100%;background:var(--rose-dark);color:#fff;border:none;border-radius:30px;padding:11px;font-size:14px;font-weight:700;cursor:pointer;font-family:'DM Sans',sans-serif;}
.nl-filter-apply:hover{background:#d4607a;}
.nl-filter-reset{width:100%;background:#fff;color:var(--text-muted);border:1.5px solid var(--border);border-radius:30px;padding:9px;font-size:13px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;}
.nl-alpha-nav{display:flex;flex-wrap:wrap;gap:4px;margin-top:6px;}
.nl-alpha-btn{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:6px;border:1.5px solid var(--border);background:var(--cream);font-size:11px;font-weight:700;color:var(--text-muted);cursor:pointer;transition:all .15s;text-decoration:none;}
.nl-alpha-btn:hover,.nl-alpha-btn.active{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}
.nl-info-block{background:var(--cream);border:1.5px solid var(--border);border-radius:var(--radius);padding:12px 16px;margin-bottom:10px;}
.nl-result-count{font-size:14px;color:var(--text-muted);margin-bottom:6px;}
.nl-result-count strong{color:var(--rose-dark);font-size:18px;}
.nl-result-hint{font-size:12px;color:var(--text-muted);}
.nl-active-filters{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;}
.filter-chip{display:inline-flex;align-items:center;gap:5px;background:#fff5f8;border:1.5px solid var(--rose);border-radius:20px;padding:4px 12px;font-size:12px;font-weight:600;color:var(--rose-dark);}
.chip-remove{cursor:pointer;font-size:11px;opacity:.6;text-decoration:none;color:var(--rose-dark);}
.nl-action-block{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:10px 14px;margin-bottom:14px;display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.nl-action-label{font-size:11px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;}
.nl-gf-pill{display:inline-flex;align-items:center;gap:5px;padding:5px 14px;border-radius:20px;font-size:13px;font-weight:600;border:1.5px solid var(--border);background:#fff;color:var(--text-muted);cursor:pointer;transition:all .15s;text-decoration:none;}
.nl-gf-pill.active-all{background:var(--text);color:#fff;border-color:var(--text);}
.nl-gf-pill.active-boy{background:#4a86c8;color:#fff;border-color:#4a86c8;}
.nl-gf-pill.active-girl{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}

/* ── NAME ROWS ── */
.nl-name-rows{display:flex;flex-direction:column;gap:0;margin-bottom:24px;border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow);}
.nl-letter-header{padding:7px 16px;background:linear-gradient(90deg,var(--cream),#fff);font-family:'Playfair Display',serif;font-size:.95rem;font-weight:700;color:var(--rose-dark);border-bottom:1px solid var(--border);letter-spacing:2px;}
.nl-name-row{display:grid;grid-template-columns:180px 1fr auto auto;align-items:center;gap:12px;padding:11px 16px;border-bottom:1px solid var(--border);transition:background .15s;text-decoration:none;color:var(--text);}
.nl-name-row:last-child{border-bottom:none;}
.nl-name-row:hover{background:#fff5f8!important;}
.nl-name-row.row-boy{background:#f0f6ff;}
.nl-name-row.row-girl{background:#fff5f8;}
.nl-ad-row{padding:10px 16px;background:var(--ad-bg);border-bottom:1px solid var(--border);text-align:center;font-size:11px;color:var(--text-muted);min-height:60px;display:flex;align-items:center;justify-content:center;gap:8px;}
.nr-identity{display:flex;flex-direction:column;gap:1px;min-width:0;}
.nr-name{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;color:var(--rose-dark);white-space:nowrap;}
.nr-telugu{font-size:11px;color:var(--text-muted);}
.nr-middle{display:flex;flex-direction:column;gap:4px;min-width:0;}
.nr-meaning{font-size:13px;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.nr-badges{display:flex;align-items:center;gap:5px;flex-wrap:wrap;}
.nr-actions{display:flex;align-items:center;gap:4px;flex-shrink:0;}
.nr-btn{width:30px;height:30px;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--border);border-radius:8px;background:#fff;cursor:pointer;font-size:13px;font-family:'DM Sans',sans-serif;color:var(--text-muted);flex-shrink:0;}
.nr-btn:hover{border-color:var(--rose-dark);background:#fff5f8;}
.nr-arrow{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:var(--rose-dark);color:#fff;border-radius:8px;font-size:14px;font-weight:700;flex-shrink:0;}
.gender-badge{display:inline-block;font-size:10px;font-weight:700;padding:2px 9px;border-radius:10px;}
.gender-badge.row-boy{background:#e8f0ff;color:#4a86c8;border:1px solid #c8dff5;}
.gender-badge.row-girl{background:#fde8ef;color:var(--rose-dark);border:1px solid #f7c0d0;}
.num-badge{display:inline-block;background:var(--cream);border:1px solid var(--border);border-radius:10px;font-size:11px;padding:2px 8px;color:var(--text-muted);font-weight:600;}
.tag-badge{display:inline-block;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--rose-dark);background:#fff5f8;border-radius:10px;padding:3px 10px;}

/* ── WP PAGINATION ── */
.nl-pagination{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap;margin-bottom:24px;}
.nl-pagination .nl-pg-item a,.nl-pagination .nl-pg-item span{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;padding:0 10px;border-radius:8px;font-size:13px;font-weight:600;border:1.5px solid var(--border);background:#fff;color:var(--text-muted);text-decoration:none;transition:all .15s;}
.nl-pagination .nl-pg-item a:hover{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}
.nl-pagination .nl-pg-item span.current{background:var(--rose-dark);color:#fff;border-color:var(--rose-dark);}

/* ── GUIDE CARDS ── */
.nl-guide-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:20px;margin-bottom:24px;}
.nl-guide-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:18px 20px;text-decoration:none;color:var(--text);display:flex;align-items:flex-start;gap:14px;transition:all .2s;box-shadow:var(--shadow);}
.nl-guide-card:hover{border-color:var(--rose-dark);transform:translateY(-2px);}
.nl-guide-icon{font-size:2rem;flex-shrink:0;line-height:1;}
.nl-guide-title{font-family:'Playfair Display',serif;font-size:.95rem;font-weight:700;color:var(--text);margin-bottom:4px;}
.nl-guide-desc{font-size:12px;color:var(--text-muted);line-height:1.5;}
.nl-guide-cta{display:inline-block;margin-top:8px;font-size:11px;font-weight:700;color:var(--rose-dark);}

/* ── SEO SECTION ── */
.nl-seo-section{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:24px;margin-bottom:28px;box-shadow:var(--shadow);}
.nl-seo-section h2{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:12px;}
.nl-seo-section h3{font-family:'Playfair Display',serif;font-size:.9rem;font-weight:600;color:var(--text);margin:14px 0 6px;}
.nl-seo-section p{font-size:13.5px;color:var(--text);line-height:1.85;margin-bottom:10px;}
.nl-seo-section ul{padding-left:18px;margin-bottom:14px;}
.nl-seo-section li{font-size:13px;color:var(--text);line-height:1.8;margin-bottom:4px;}
.nl-seo-section a{color:var(--rose-dark);font-weight:600;}

/* ── SINGLE PAGE ── */
.bnw-detail-card{background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:24px;margin-bottom:18px;box-shadow:var(--shadow);}
.bnw-detail-card h2{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:var(--text);margin-bottom:14px;}
.bnw-dt-row{display:flex;align-items:baseline;gap:12px;padding:8px 0;border-bottom:1px solid var(--border);}
.bnw-dt-row:last-child{border-bottom:none;}
.bnw-dt-key{font-size:12px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;min-width:100px;flex-shrink:0;}
.bnw-dt-val{font-size:14px;color:var(--text);}
.bnw-save-btn{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1.5px solid var(--border);border-radius:30px;padding:7px 16px;font-size:13px;font-weight:600;color:var(--text-muted);cursor:pointer;font-family:'DM Sans',sans-serif;}
.bnw-save-btn:hover,.bnw-save-btn.saved{background:#fff0f5;border-color:var(--rose);color:var(--rose-dark);}

/* ── RESPONSIVE ── */
@media(max-width:1024px){.nl-content-area{grid-template-columns:190px 1fr 240px;}}
@media(max-width:900px){
  .nl-content-area{grid-template-columns:1fr!important;}
  .nl-filter-card{display:none!important;}
  .nl-content-area .sidebar{display:none!important;}
  .nl-mobile-filter-section{display:block;}
  .nl-filter-fab{display:flex;}
  .nl-guide-cards{grid-template-columns:1fr;}
  .nl-name-row{
    display:grid!important;
    grid-template-columns:1fr 32px!important;
    grid-template-rows:auto auto!important;
    column-gap:6px!important;
    row-gap:0!important;
    padding:9px 10px!important;
    align-content:center!important;
    position:static!important;
  }
  .nr-identity{grid-column:1!important;grid-row:1!important;flex-direction:row!important;align-items:baseline!important;gap:7px!important;line-height:1.4;padding-bottom:1px;}
  .nr-middle{grid-column:1!important;grid-row:2!important;flex-direction:row!important;flex-wrap:wrap!important;align-items:center!important;gap:3px!important;line-height:1.3;padding-top:1px;}
  .nr-actions{display:flex!important;grid-column:2!important;grid-row:1/3!important;flex-direction:column!important;justify-content:center!important;align-items:center!important;gap:2px!important;align-self:center!important;}
  .nr-arrow{display:none!important;}
  .nr-name{font-size:1.05rem!important;font-weight:700!important;line-height:1.3;margin:0;}
  .nr-telugu{font-size:12px;line-height:1.3;}
  .nr-meaning{font-size:12px!important;white-space:normal!important;line-height:1.3;margin:0;}
  .nr-badges{gap:3px!important;margin:0!important;}
  .nr-btn{width:26px!important;height:26px!important;font-size:11px!important;padding:0!important;}
  .nl-letter-header{font-size:.85rem;padding:6px 12px;}
  .nl-page-heading h1{font-size:1.2rem;}
  .search-bar-wrap{padding:10px 12px;}
}
@media(max-width:480px){
  .nl-name-row{padding:8px!important;}
  .nr-name{font-size:1rem!important;}
  .nr-btn{width:24px!important;height:24px!important;}
}

/* ═══════════════════════════════════════
   NAME DETAIL PAGE — single.php styles
   Scoped to .nd-content-area so zero
   impact on any other page template.
   ═══════════════════════════════════════ */

/* ── 2-col grid layout ── */
.nd-content-area {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  padding: 20px 0 40px;
  align-items: start;
}
.nd-content-area .main-content { min-width: 0; width: 100%; overflow: hidden; }

/* ── NAME HERO ── */
.nd-content-area .name-hero { background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow); margin-bottom:20px; }
.nd-content-area .name-hero-top { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.nd-content-area h1.name-big { font-family:'Playfair Display',serif; font-size:2.4rem; font-weight:700; color:var(--rose-dark); line-height:1.15; margin:0; }
.nd-content-area .name-telugu-big { font-size:1.2rem; color:var(--text-muted); margin-top:4px; font-weight:300; }
.nd-content-area .pronounce-row { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-top:12px; }
.nd-content-area .pronounce-text { font-size:13px; font-weight:600; color:var(--text-muted); background:var(--cream); border:1.5px solid var(--border); border-radius:20px; padding:6px 14px; letter-spacing:.3px; }
.nd-content-area .name-pronounce { display:inline-flex; align-items:center; gap:6px; background:var(--cream); border:1.5px solid var(--border); border-radius:20px; padding:6px 14px; cursor:pointer; font-size:13px; font-weight:600; color:var(--text-muted); transition:all .2s; font-family:'DM Sans',sans-serif; }
.nd-content-area .name-pronounce:hover { border-color:var(--rose-dark); color:var(--rose-dark); background:#fff5f8; }
.nd-content-area .name-pronounce.speaking { background:var(--rose-dark); color:#fff; border-color:var(--rose-dark); }
.nd-content-area .name-actions { display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.nd-content-area .action-btn { display:inline-flex; align-items:center; gap:7px; padding:10px 20px; border-radius:30px; font-size:13px; font-weight:600; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; white-space:nowrap; border:none; text-decoration:none; }
.nd-content-area .action-btn.like { background:#fff0f5; color:var(--rose-dark); border:1.5px solid var(--rose); }
.nd-content-area .action-btn.like:hover, .nd-content-area .action-btn.like.on { background:var(--rose-dark); color:#fff; }
.nd-content-area .action-btn.save { background:#e8f3fd; color:#4a86c8; border:1.5px solid #c8dff5; }
.nd-content-area .action-btn.save:hover, .nd-content-area .action-btn.save.on { background:#4a86c8; color:#fff; }
.nd-content-area .action-btn.share { background:var(--cream); color:var(--text-muted); border:1.5px solid var(--border); }
.nd-content-area .action-btn.share:hover { background:var(--text); color:#fff; }
.nd-content-area .facts-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; padding-top:20px; border-top:1px solid var(--border); }
.nd-content-area .fact-item { display:flex; flex-direction:column; align-items:center; background:var(--cream); border:1px solid var(--border); border-radius:10px; padding:10px; min-width:70px; text-align:center; flex:1; }
.nd-content-area .fact-label { font-size:9px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.3px; margin-bottom:4px; white-space:nowrap; }
.nd-content-area .fact-val { font-size:13px; font-weight:700; color:var(--text); }
.nd-content-area .fact-val.rose { color:var(--rose-dark); }
.nd-content-area .meta-row { display:flex; align-items:center; flex-wrap:wrap; gap:6px; margin-top:14px; padding-top:12px; border-top:1px solid var(--border); font-size:12px; color:var(--text-muted); }
.nd-content-area .meta-item { font-weight:500; }
.nd-content-area .meta-sep { opacity:.4; }

/* ── DETAIL CARDS ── */
.nd-content-area .detail-card { background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow); margin-bottom:18px; }
.nd-content-area .detail-card h2 { font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:12px; }
.nd-content-area .detail-card h3 { font-family:'Playfair Display',serif; font-size:1rem; font-weight:600; color:var(--text); margin-bottom:12px; }
.nd-content-area .detail-card p { font-size:14px; color:var(--text); line-height:1.8; margin-bottom:10px; }
.nd-content-area .detail-card p:last-child { margin-bottom:0; }
.nd-content-area .detail-card ul { padding-left:18px; margin-bottom:10px; }
.nd-content-area .detail-card li { font-size:14px; color:var(--text); line-height:1.8; margin-bottom:4px; }
.nd-content-area .meaning-short { font-size:1.05rem; font-weight:700; color:var(--rose-dark); margin-bottom:10px; }
.nd-content-area .info-table { width:100%; border-collapse:collapse; font-size:13px; }
.nd-content-area .info-table td { padding:8px 12px; border-bottom:1px solid var(--border); }
.nd-content-area .info-table td:first-child { font-weight:600; color:var(--text-muted); width:40%; }
.nd-content-area .info-table tr:last-child td { border-bottom:none; }

/* ── NUMEROLOGY CARD ── */
.nd-content-area .num-highlight { display:flex; align-items:center; gap:14px; background:var(--cream); border:1px solid var(--border); border-radius:12px; padding:14px 16px; margin-bottom:14px; }
.nd-content-area .num-big { font-family:'Playfair Display',serif; font-size:2.6rem; font-weight:700; color:var(--rose-dark); line-height:1; flex-shrink:0; }
.nd-content-area .num-meta { display:flex; flex-direction:column; gap:3px; }
.nd-content-area .num-planet { font-size:13px; font-weight:600; color:var(--text); }
.nd-content-area .num-traits { font-size:12px; color:var(--text-muted); }
.nd-content-area .num-badge { display:inline-block; background:var(--cream); border:1px solid var(--border); border-radius:10px; font-size:11px; padding:2px 8px; color:var(--text-muted); font-weight:600; }

/* ── SIMILAR / FAMOUS / SIBLING ── */
.nd-content-area .similar-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.nd-content-area .sim-card { background:var(--cream); border:1.5px solid var(--border); border-radius:10px; padding:12px; text-align:center; cursor:pointer; transition:all .15s; text-decoration:none; display:block; }
.nd-content-area .sim-card:hover { border-color:var(--rose); background:#fff5f8; transform:translateY(-2px); }
.nd-content-area .sim-name { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--rose-dark); }
.nd-content-area .sim-meaning { font-size:11px; color:var(--text-muted); margin-top:3px; }
.nd-content-area .famous-list { display:flex; flex-direction:column; gap:10px; }
.nd-content-area .famous-item { display:flex; align-items:center; gap:12px; padding:10px; background:var(--cream); border-radius:10px; border:1px solid var(--border); }
.nd-content-area .famous-avatar { width:38px; height:38px; border-radius:50%; background:var(--rose); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.nd-content-area .famous-name { font-weight:600; font-size:13px; color:var(--text); }
.nd-content-area .famous-desc { font-size:11px; color:var(--text-muted); }
.nd-content-area .sibling-row { display:flex; gap:8px; flex-wrap:wrap; }
.nd-content-area .sibling-pill { background:#fff; border:1.5px solid var(--border); border-radius:20px; padding:6px 14px; font-size:13px; font-weight:600; color:var(--rose-dark); cursor:pointer; transition:all .15s; text-decoration:none; display:inline-block; }
.nd-content-area .sibling-pill:hover { background:var(--rose-dark); color:#fff; border-color:var(--rose-dark); }

/* ── FAQ ── */
.nd-content-area .faq-item { border-bottom:1px solid var(--border); padding:14px 0; }
.nd-content-area .faq-item:last-child { border-bottom:none; }
.nd-content-area .faq-q { font-weight:700; font-size:14px; color:var(--text); margin-bottom:6px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.nd-content-area .faq-a { font-size:13px; color:var(--text-muted); line-height:1.7; }

/* ── TRENDING / RELATED GUIDES ── */
.nd-content-area .trending-next { background:linear-gradient(135deg,#fff5f8,#f0fbf6); border:1.5px solid var(--border); border-radius:var(--radius); padding:20px; margin-bottom:18px; }
.nd-content-area .trending-next h3 { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--text); margin-bottom:12px; }
.nd-content-area .trending-pills { display:flex; flex-wrap:wrap; gap:8px; }
.nd-content-area .trending-pill { background:#fff; border:1.5px solid var(--border); border-radius:20px; padding:6px 14px; font-size:13px; font-weight:600; color:var(--rose-dark); cursor:pointer; transition:all .15s; text-decoration:none; display:inline-block; }
.nd-content-area .trending-pill:hover { background:var(--rose-dark); color:#fff; border-color:var(--rose-dark); }
.nd-content-area .related-guides { margin-bottom:20px; }
.nd-content-area .related-guides h3 { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--text); margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.nd-content-area .rg-grid { display:flex; flex-direction:column; gap:10px; }
.nd-content-area .rg-card { display:flex; align-items:stretch; background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); overflow:hidden; text-decoration:none; color:var(--text); transition:all .2s; box-shadow:0 1px 6px rgba(232,114,138,0.06); }
.nd-content-area .rg-card:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(232,114,138,0.15); border-color:var(--rose); }
.nd-content-area .rg-thumb { width:120px; min-width:120px; height:68px; align-self:center; display:flex; align-items:center; justify-content:center; font-size:1.8rem; flex-shrink:0; border-radius:8px; margin:8px 0 8px 10px; overflow:hidden; }
.nd-content-area .rg-thumb img { width:100%; height:100%; object-fit:cover; display:block; border-radius:8px; }
.nd-content-area .rg-body { padding:10px 12px; display:flex; flex-direction:column; gap:3px; flex:1; justify-content:center; }
.nd-content-area .rg-tag { display:inline-block; font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.6px; padding:2px 8px; border-radius:10px; background:#fff5f8; color:var(--rose-dark); width:fit-content; }
.nd-content-area .rg-title { font-family:'Playfair Display',serif; font-size:.9rem; font-weight:700; color:var(--text); line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.nd-content-area .rg-card:hover .rg-title { color:var(--rose-dark); }
.nd-content-area .rg-meta { font-size:11px; color:var(--text-muted); }
.nd-content-area .rg-arrow { font-size:11px; font-weight:700; color:var(--rose-dark); margin-top:auto; }

/* ── PREV / NEXT NAV — force override parent theme green ── */
.nd-content-area .name-nav-row { display:flex; gap:12px; margin-bottom:24px; }
.nd-content-area .name-nav-btn,
.nd-content-area .name-nav-btn:link,
.nd-content-area .name-nav-btn:visited { flex:1; display:flex; align-items:center; gap:12px; background:#fff !important; border:1.5px solid var(--border) !important; border-radius:var(--radius) !important; padding:14px 18px; text-decoration:none !important; color:var(--text) !important; transition:all .2s; min-width:0; box-shadow:none; }
.nd-content-area .name-nav-btn:hover { border-color:var(--rose-dark) !important; box-shadow:var(--shadow) !important; transform:translateY(-2px); color:var(--text) !important; background:#fff !important; }
.nd-content-area .name-nav-next { justify-content:flex-end; text-align:right; }
.nd-content-area .name-nav-icon { font-size:1.3rem; color:var(--rose-dark) !important; flex-shrink:0; font-weight:700; }
.nd-content-area .name-nav-text { display:flex; flex-direction:column; gap:2px; min-width:0; }
.nd-content-area .name-nav-label { font-size:10px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.5px; }
.nd-content-area .name-nav-main { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--rose-dark); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* ── AFFILIATE ── */
.nd-content-area .aff-card { background:linear-gradient(135deg,#fff9fb,#f5fbff); }
.nd-content-area .aff-header { margin-bottom:14px; }
.nd-content-area .aff-header h2 { margin-bottom:5px; }
.nd-content-area .aff-disclosure { display:block; font-size:11px; color:var(--text-muted); font-style:italic; opacity:.8; }
.nd-content-area .aff-scroll { display:flex; gap:12px; overflow-x:auto; padding-bottom:6px; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.nd-content-area .aff-scroll::-webkit-scrollbar { display:none; }
.nd-content-area .aff-item { flex:0 0 148px; background:#fff; border:1.5px solid var(--border); border-radius:12px; padding:14px 12px; text-decoration:none; color:var(--text); transition:all .2s; display:flex; flex-direction:column; gap:8px; }
.nd-content-area .aff-item:hover { border-color:var(--rose); box-shadow:0 4px 14px rgba(232,114,138,0.13); transform:translateY(-2px); }
.nd-content-area .aff-img { font-size:2rem; text-align:center; line-height:1; }
.nd-content-area .aff-name { font-size:12px; font-weight:700; color:var(--text); line-height:1.4; }
.nd-content-area .aff-sub { font-size:11px; color:var(--text-muted); line-height:1.4; flex:1; }
.nd-content-area .aff-store { display:inline-block; margin-top:4px; font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px; }
.nd-content-area .aff-amazon { background:#fff3e0; color:#c45000; }
.nd-content-area .aff-firstcry { background:#e8f5e9; color:#2e7d32; }

/* ── STICKY BOTTOM AD - Mobile only ── */
.nd-sticky-ad { display:none; position:fixed; bottom:0; left:0; right:0; background:#fff; border-top:1px dashed #e8a0b0; padding:10px; text-align:center; font-size:11px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; z-index:90; }

/* ── SIDEBAR (inside nd-content-area) ── */
.nd-content-area .sidebar { display:flex; flex-direction:column; gap:20px; min-width:0; width:100%; overflow:hidden; position:sticky; top:80px; }
.nd-content-area .sidebar-card { background:var(--sidebar-bg); border:1.5px solid var(--border); border-radius:var(--radius); padding:18px; box-shadow:var(--shadow); }
.nd-content-area .card-title { font-family:'Playfair Display',serif; font-size:1rem; font-weight:600; margin-bottom:10px; color:var(--text); }
.nd-content-area .name-list { display:flex; flex-direction:column; gap:6px; }
.nd-content-area .name-list-item { display:flex; align-items:center; justify-content:space-between; padding:7px 10px; background:#fff; border-radius:8px; border:1px solid var(--border); transition:all .15s; text-decoration:none; }
.nd-content-area .name-list-item:hover { border-color:var(--rose); box-shadow:0 2px 8px rgba(232,114,138,0.12); }
.nd-content-area .nl-name { font-weight:600; font-size:13px; color:var(--rose-dark); }
.nd-content-area .nl-meaning { font-size:11px; color:var(--text-muted); }
.nd-content-area .nl-num { font-size:11px; font-weight:700; color:var(--mint); background:#f0fbf5; border-radius:8px; padding:2px 7px; }
.nd-content-area .name-list-footer { border-top:1px solid var(--border); margin-top:10px; padding-top:10px; text-align:right; }
.nd-content-area .name-list-footer a { font-size:13px; font-weight:600; color:var(--rose-dark); }
.nd-content-area .name-list-footer a:hover { text-decoration:underline; }
.nd-content-area .tools-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.nd-content-area .tool-btn { background:#fff; border:1.5px solid var(--border); border-radius:10px; padding:12px 8px; text-align:center; cursor:pointer; transition:all .15s; font-size:11px; font-weight:600; color:var(--text-muted); text-decoration:none; display:block; }
.nd-content-area .tool-btn:hover { border-color:var(--rose-dark); color:var(--rose-dark); background:#fff5f8; }
.nd-content-area .tool-btn .tool-icon { font-size:22px; display:block; margin-bottom:4px; }
.nd-content-area .ad-sidebar { background:var(--ad-bg); border:1.5px dashed #e8a0b0; border-radius:var(--radius); padding:18px; text-align:center; font-size:11px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; min-height:120px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; }

/* ── RESPONSIVE — tablet (≤900px): collapse to single col, hide sidebar ── */
@media(max-width:900px){
  .nd-content-area { grid-template-columns:1fr !important; gap:0; padding:16px 0 40px; }
  .nd-content-area .sidebar { display:none !important; }
  .nd-content-area h1.name-big { font-size:1.9rem; }
  .nd-content-area .name-hero { padding:22px 18px; }
  .nd-content-area .name-hero-top { flex-direction:column; }
  .nd-content-area .name-actions { flex-direction:row; flex-wrap:wrap; align-items:flex-start; justify-content:flex-start; }
  .nd-content-area .similar-grid { grid-template-columns:repeat(2,1fr); }
  .nd-sticky-ad { display:block; padding-bottom:calc(10px + env(safe-area-inset-bottom)); }
}

/* ── RESPONSIVE — mobile (≤600px) ── */
@media(max-width:600px){
  .nd-content-area h1.name-big { font-size:1.55rem; }
  .nd-content-area .name-hero { padding:18px 14px; }
  .nd-content-area .detail-card { padding:16px 14px; }
  .nd-content-area .facts-row { gap:6px; }
  .nd-content-area .fact-item { padding:8px; min-width:58px; }
  .nd-content-area .fact-val { font-size:12px; }
  .nd-content-area .fact-label { font-size:8.5px; }
  .nd-content-area .action-btn { padding:8px 13px; font-size:12px; }
  .nd-content-area .similar-grid { grid-template-columns:repeat(2,1fr); }
  .nd-content-area .aff-item { flex:0 0 130px; }
  .nd-content-area .name-nav-btn,
  .nd-content-area .name-nav-btn:link,
  .nd-content-area .name-nav-btn:visited { padding:12px 13px; gap:8px; }
  .nd-content-area .name-nav-main { font-size:.88rem; }
  .nd-content-area .num-big { font-size:2rem; }
  .nd-content-area .rg-thumb { width:90px; min-width:90px; height:58px; }
}
