/*
Theme Name: TopOnline52U
Theme URI: https://toponline52u.com
Author: TopOnline52U Team
Description: Professional Crypto & Finance News WordPress Theme — Pink & White elegant design with dark mode, live crypto ticker, breaking news banner, and magazine-style layouts.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: toponline52u
Tags: news, magazine, crypto, pink, custom-logo, featured-images, custom-menu
*/

/* ============================================
   COLOR VARIABLES
============================================ */
:root {
  /* Pink Palette */
  --pink:        #e91e8c;
  --pink-dark:   #c0176f;
  --pink-light:  #ff6ec7;
  --pink-pale:   #fce4f3;
  --pink-soft:   #fff0fa;

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #fdf6fb;
  --light-gray:  #f5f0f4;
  --mid-gray:    #e8dde6;
  --border:      rgba(233,30,140,0.15);
  --border-dark: rgba(233,30,140,0.30);

  /* Text */
  --text-head:   #1a0a14;
  --text-body:   #3d1f32;
  --text-muted:  #9e7a8e;
  --text-light:  #c4a0b5;

  /* Dark Mode Overrides (toggled via .dark-mode on body) */
  --dark:        #0f0a0e;
  --dark2:       #1a0f17;
  --dark3:       #251420;
  --card-dark:   #1e1018;

  /* Accents */
  --accent:      #e91e8c;
  --accent2:     #ff6ec7;
  --red:         #e84040;
  --green:       #22c55e;
  --gold:        #e91e8c; /* repurpose gold → pink for compatibility */

  /* Mode defaults (light) */
  --bg:          var(--off-white);
  --bg2:         var(--light-gray);
  --bg3:         var(--pink-soft);
  --card-bg:     var(--white);
  --txt:         var(--text-body);
  --txt2:        var(--text-head);
  --muted:       var(--text-muted);
  --b:           var(--border);
  --radius:      10px;
  --shadow:      0 4px 24px rgba(233,30,140,0.10);
  --shadow-lg:   0 8px 40px rgba(233,30,140,0.18);
}

/* DARK MODE */
body.dark-mode {
  --bg:      var(--dark);
  --bg2:     var(--dark2);
  --bg3:     var(--dark3);
  --card-bg: var(--card-dark);
  --txt:     #f0dcea;
  --txt2:    #fce4f3;
  --muted:   #9e6a85;
  --b:       rgba(233,30,140,0.20);
  --shadow:  0 4px 24px rgba(0,0,0,0.4);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  transition: background .3s, color .3s;
}
a { color: var(--pink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--txt2);
  line-height: 1.25;
  font-weight: 700;
}
p { margin-bottom: 1rem; color: var(--txt); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.up  { color: var(--green) !important; }
.dn  { color: var(--red)   !important; }

/* ============================================
   DARK / LIGHT MODE TOGGLE BUTTON
============================================ */
#mode-toggle {
  background: var(--pink-pale);
  border: 1px solid var(--border-dark);
  color: var(--pink);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
#mode-toggle:hover { background: var(--pink); color: #fff; }
body.dark-mode #mode-toggle { background: var(--dark3); border-color: var(--pink); color: var(--pink-light); }

/* ============================================
   BREAKING NEWS BAR
============================================ */
#breaking-bar {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), var(--pink-light));
  padding: 8px 0;
  overflow: hidden;
}
#breaking-bar .inner {
  display: flex; align-items: center; gap: 14px;
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.breaking-label {
  background: #fff; color: var(--pink-dark);
  font-size: 10px; font-weight: 800;
  padding: 3px 9px; border-radius: 4px;
  white-space: nowrap; letter-spacing: .5px; flex-shrink: 0;
}
.breaking-scroll { overflow: hidden; flex: 1; }
.breaking-text {
  font-size: 13px; color: #fff; font-weight: 500;
  white-space: nowrap; display: inline-block;
  animation: marquee 35s linear infinite;
}
@keyframes marquee { 0%{transform:translateX(100%)} 100%{transform:translateX(-100%)} }

/* ============================================
   CRYPTO TICKER
============================================ */
#crypto-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  padding: 7px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 28px;
  animation: ticker 42s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--txt2);
}
.ticker-item .t-sym { color: var(--pink); font-size: 11px; }
.ticker-item .t-price { color: var(--txt2); }

/* ============================================
   HEADER
============================================ */
#site-header {
  background: var(--white);
  border-bottom: 2px solid var(--pink-pale);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 20px rgba(233,30,140,0.08);
}
body.dark-mode #site-header {
  background: var(--dark2);
  border-bottom-color: rgba(233,30,140,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo-wrap img { height: 48px; width: auto; }
.site-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--pink); line-height: 1;
}
.site-name span { color: var(--text-head); font-weight: 400; }
body.dark-mode .site-name span { color: #f0dcea; }
.site-tagline { font-size: 11px; color: var(--muted); margin-top: 2px; }
.header-right { display: flex; align-items: center; gap: 12px; }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pink-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--pink);
  transition: all .2s; text-decoration: none;
}
.social-icons a:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
body.dark-mode .social-icons a { background: var(--dark3); border-color: rgba(233,30,140,0.3); }
.btn-subscribe {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: #fff !important; padding: 8px 20px;
  border-radius: 25px; font-size: 13px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(233,30,140,0.35);
  transition: all .2s;
}
.btn-subscribe:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,30,140,0.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--pink); border-radius: 2px; display: block; transition: .3s; }

/* ============================================
   NAVIGATION
============================================ */
#site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--pink-pale);
}
body.dark-mode #site-nav { background: var(--dark2); border-bottom-color: rgba(233,30,140,.15); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner ul { display: flex; gap: 0; }
.nav-inner ul li a {
  display: block; padding: 11px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all .2s; text-decoration: none;
}
.nav-inner ul li a:hover,
.nav-inner ul li.current-menu-item a,
.nav-inner ul li.current-menu-ancestor a {
  color: var(--pink); border-bottom-color: var(--pink);
}
body.dark-mode .nav-inner ul li a { color: #c4a0b5; }
body.dark-mode .nav-inner ul li a:hover { color: var(--pink-light); }
.nav-badge { background: var(--pink); color: #fff; font-size: 9px; padding: 1px 5px; border-radius: 3px; margin-left: 4px; }
.nav-inner ul li { position: relative; }
.nav-inner ul li ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--pink-pale);
  border-radius: 0 0 10px 10px; min-width: 200px; z-index: 100;
  flex-direction: column; box-shadow: var(--shadow);
}
body.dark-mode .nav-inner ul li ul { background: var(--dark2); border-color: rgba(233,30,140,.2); }
.nav-inner ul li:hover > ul { display: flex; }
.nav-inner ul li ul li a { padding: 10px 16px; border-bottom: 1px solid var(--pink-pale); }
.nav-inner ul li ul li:last-child a { border-bottom: none; }

/* ============================================
   LAYOUT
============================================ */
#content-area { padding: 32px 0 52px; }
.content-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 32px;
}
@media(max-width:960px){ .content-grid { grid-template-columns: 1fr; } }

/* ============================================
   HERO SECTION
============================================ */
.hero-section { margin-bottom: 40px; }
.hero-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 4px; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media(max-width:680px){ .hero-grid { grid-template-columns: 1fr; } }
.hero-main {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end; padding: 28px;
  text-decoration: none; overflow: hidden;
  background: linear-gradient(135deg, var(--pink-dark), #8b0057);
}
.hero-main img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s;
}
.hero-main:hover img { transform: scale(1.05); }
.hero-main .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(180,0,90,.92) 0%, rgba(100,0,50,.4) 55%, transparent 100%);
}
.hero-main .hero-content { position: relative; z-index: 2; }
.hero-stack { display: flex; flex-direction: column; gap: 4px; }
.hero-small {
  position: relative; flex: 1; min-height: 208px;
  display: flex; align-items: flex-end; padding: 18px;
  text-decoration: none; overflow: hidden;
  background: linear-gradient(135deg, #c0176f, #e91e8c);
}
.hero-small img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .4s;
}
.hero-small:hover img { transform: scale(1.05); }
.hero-small .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(180,0,90,.9) 0%, transparent 65%);
}
.hero-small .hero-content { position: relative; z-index: 2; }
.hero-main,.hero-small { background-size: cover !important; background-position: center !important; }
.hero-main:hover .hero-title, .hero-small:hover .hero-title { color: #ffd6f0; }

/* ============================================
   CATEGORY TAGS
============================================ */
.cat-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 9px; text-decoration: none;
  box-shadow: 0 2px 8px rgba(233,30,140,.35);
}
.cat-tag.blue  { background: linear-gradient(135deg,#185fa5,#4a9eff); }
.cat-tag.green { background: linear-gradient(135deg,#1d9e75,#22c55e); }
.cat-tag.red   { background: linear-gradient(135deg,#e84040,#ff6b6b); }
.hero-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: #fff; line-height: 1.25; transition: color .2s;
}
.hero-main .hero-title  { font-size: 24px; }
.hero-small .hero-title { font-size: 15px; }
.hero-meta { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-pale);
}
body.dark-mode .section-header { border-bottom-color: rgba(233,30,140,.2); }
.section-title {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700;
  display: flex; align-items: center; gap: 10px; color: var(--txt2);
}
.section-title::before {
  content: ''; width: 5px; height: 22px;
  background: linear-gradient(to bottom, var(--pink), var(--pink-light));
  border-radius: 3px;
}
.see-all {
  font-size: 12px; color: var(--pink); font-weight: 700;
  text-decoration: none; background: var(--pink-pale);
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--border); transition: all .2s;
}
.see-all:hover { background: var(--pink); color: #fff; }
body.dark-mode .see-all { background: var(--dark3); border-color: rgba(233,30,140,.3); color: var(--pink-light); }

/* ============================================
   ARTICLE CARDS
============================================ */
.articles-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 36px;
}
@media(max-width:800px){ .articles-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .articles-grid { grid-template-columns: 1fr; } }
.article-card {
  background: var(--card-bg);
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(233,30,140,.06);
}
body.dark-mode .article-card { border-color: rgba(233,30,140,.15); }
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(233,30,140,.18);
}
.card-thumb-wrap { overflow: hidden; position: relative; }
.card-thumbnail {
  width: 100%; height: 165px; object-fit: cover;
  transition: transform .4s;
}
.article-card:hover .card-thumbnail { transform: scale(1.06); }
.card-body { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700;
  color: var(--txt2); line-height: 1.4; margin-bottom: 8px;
  transition: color .2s; flex: 1;
}
.article-card:hover .card-title { color: var(--pink); }
.card-excerpt { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.card-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted); margin-top: auto;
  padding-top: 10px; border-top: 1px solid var(--pink-pale);
}
body.dark-mode .card-meta { border-top-color: rgba(233,30,140,.1); }
.card-author { color: var(--pink); font-weight: 700; }

/* ============================================
   LIST ITEMS
============================================ */
.article-list { display: flex; flex-direction: column; }
.list-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--mid-gray);
  text-decoration: none; align-items: flex-start;
  transition: background .2s;
}
body.dark-mode .list-item { border-bottom-color: rgba(233,30,140,.1); }
.list-item:last-child { border-bottom: none; }
.list-item:hover { padding-left: 6px; }
.list-item:hover .list-title { color: var(--pink); }
.list-num {
  font-size: 28px; font-weight: 700;
  color: var(--pink-pale); font-family: 'Playfair Display', serif;
  line-height: 1; flex-shrink: 0; width: 32px;
}
body.dark-mode .list-num { color: rgba(233,30,140,.2); }
.list-thumb {
  width: 82px; height: 64px; border-radius: 10px;
  object-fit: cover; background: var(--pink-pale); flex-shrink: 0;
}
.list-thumb-placeholder {
  width: 82px; height: 64px; border-radius: 10px;
  background: var(--pink-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.list-content { flex: 1; min-width: 0; }
.list-title { font-size: 14px; font-weight: 700; color: var(--txt2); line-height: 1.4; margin-bottom: 6px; transition: color .2s; }
.list-meta { font-size: 11px; color: var(--muted); }
.lm-cat { color: var(--pink); font-weight: 600; }

/* ============================================
   SIDEBAR
============================================ */
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.widget {
  background: var(--card-bg); border-radius: 14px;
  padding: 20px; border: 1px solid var(--mid-gray);
  box-shadow: 0 2px 12px rgba(233,30,140,.05);
}
body.dark-mode .widget { border-color: rgba(233,30,140,.15); }
.widget-title {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
  color: var(--txt2); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-pale); display: flex; align-items: center; gap: 7px;
}
body.dark-mode .widget-title { border-bottom-color: rgba(233,30,140,.2); }

/* Crypto Prices */
.crypto-price-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--pink-pale);
  cursor: pointer; transition: padding .2s;
}
body.dark-mode .crypto-price-row { border-bottom-color: rgba(233,30,140,.08); }
.crypto-price-row:last-child { border-bottom: none; }
.crypto-price-row:hover { padding-left: 4px; }
.cp-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.cp-info { flex: 1; }
.cp-name  { font-size: 13px; font-weight: 700; color: var(--txt2); }
.cp-symbol{ font-size: 11px; color: var(--muted); }
.cp-price { text-align: right; }
.cp-val   { font-size: 13px; font-weight: 700; color: var(--txt2); }
.cp-change{ font-size: 11px; font-weight: 600; }

/* Newsletter */
.widget-newsletter {
  background: linear-gradient(135deg, #fff0fa, #fce4f3);
  border: 2px solid var(--pink) !important;
}
body.dark-mode .widget-newsletter { background: linear-gradient(135deg,var(--dark3),rgba(233,30,140,.12)); }
.widget-newsletter p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-input {
  background: var(--white); border: 1.5px solid var(--border-dark);
  color: var(--txt2); padding: 10px 14px; border-radius: 8px;
  font-size: 13px; outline: none; width: 100%;
}
body.dark-mode .nl-input { background: var(--dark2); color: #f0dcea; border-color: rgba(233,30,140,.3); }
.nl-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,.1); }
.nl-input::placeholder { color: var(--muted); }
.nl-btn {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: #fff; border: none; padding: 11px; border-radius: 8px;
  font-weight: 700; font-size: 13px; cursor: pointer; width: 100%;
  box-shadow: 0 4px 12px rgba(233,30,140,.35); transition: all .2s;
}
.nl-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(233,30,140,.45); }

/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  background: var(--pink-pale); color: var(--pink);
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  border-radius: 20px; cursor: pointer;
  border: 1px solid var(--border); transition: all .2s; text-decoration: none;
}
.tag-item:hover { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 3px 10px rgba(233,30,140,.3); }
body.dark-mode .tag-item { background: var(--dark3); border-color: rgba(233,30,140,.3); color: var(--pink-light); }

/* ============================================
   SINGLE POST
============================================ */
.post-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 16px; margin-bottom: 26px;
  box-shadow: var(--shadow-lg);
}
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700;
  line-height: 1.2; color: var(--txt2); margin-bottom: 18px;
}
.post-byline {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; flex-wrap: wrap;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray); margin-bottom: 28px;
}
body.dark-mode .post-byline { border-color: rgba(233,30,140,.15); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.author-info .name  { font-weight: 700; font-size: 14px; color: var(--txt2); }
.author-info .post-date { font-size: 12px; color: var(--muted); }
.post-share { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  padding: 7px 14px; border-radius: 20px; font-size: 12px;
  font-weight: 700; border: none; cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.share-fb { background: #1877f2; color: #fff; }
.share-tw { background: #1da1f2; color: #fff; }
.share-wa { background: #25d366; color: #fff; }
.share-btn:hover { opacity: .85; transform: translateY(-1px); }

/* Entry Content */
.entry-content { font-size: 16px; line-height: 1.9; color: var(--txt); }
.entry-content h2 { font-size: 1.5rem; margin: 32px 0 14px; color: var(--txt2); }
.entry-content h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--txt2); }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 4px solid var(--pink); padding: 14px 20px;
  background: var(--pink-soft); border-radius: 0 10px 10px 0;
  margin: 24px 0; font-style: italic; color: var(--pink-dark);
}
body.dark-mode .entry-content blockquote { background: var(--dark3); color: var(--pink-light); }
.entry-content img { border-radius: 10px; margin: 20px 0; }
.entry-content a { color: var(--pink); }
.entry-content a:hover { text-decoration: underline; }

/* Post Tags */
.post-tags {
  margin-top: 32px; padding-top: 18px;
  border-top: 1px solid var(--mid-gray);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
body.dark-mode .post-tags { border-top-color: rgba(233,30,140,.15); }
.post-tags > span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Author Box */
.author-box {
  display: flex; gap: 16px;
  background: linear-gradient(135deg, var(--pink-soft), #fff0fa);
  border: 1px solid var(--border-dark); border-radius: 14px;
  padding: 20px; margin: 36px 0;
}
body.dark-mode .author-box { background: var(--dark3); border-color: rgba(233,30,140,.2); }
.author-avatar-lg {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 24px;
}
.author-box-name { font-weight: 700; font-size: 16px; color: var(--txt2); margin-bottom: 4px; }
.author-box-bio  { font-size: 13px; color: var(--muted); }

/* Post Navigation */
.post-navigation {
  display: flex; justify-content: space-between;
  gap: 14px; margin: 32px 0; flex-wrap: wrap;
}
.post-navigation a {
  color: var(--pink); font-size: 13px; font-weight: 600;
  text-decoration: none; background: var(--pink-pale);
  border: 1px solid var(--border); padding: 10px 18px;
  border-radius: 25px; transition: all .2s; max-width: 48%;
}
.post-navigation a:hover { background: var(--pink); color: #fff; }

/* ============================================
   BREADCRUMBS (RankMath)
============================================ */
.rm-breadcrumbs { padding: 10px 0 18px; font-size: 13px; color: var(--muted); }
.rm-breadcrumbs a { color: var(--pink); text-decoration: none; }
.rm-breadcrumbs a:hover { text-decoration: underline; }
.rank-math-breadcrumb { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.rank-math-breadcrumb a { color: var(--pink) !important; }
.rank-math-breadcrumb .separator { color: var(--muted); margin: 0 3px; }
.rank-math-breadcrumb .last { color: var(--txt); }
.rank-math-toc-box {
  background: var(--pink-soft); border: 1.5px solid var(--pink);
  border-radius: 12px; padding: 18px 22px; margin: 24px 0;
}
body.dark-mode .rank-math-toc-box { background: var(--dark3); }
.rank-math-toc-box h5 { color: var(--pink) !important; font-family: 'Playfair Display',serif; font-size:15px; margin-bottom:12px; }
.rank-math-toc-box ul { margin: 0 0 0 16px !important; }
.rank-math-toc-box ul li a { color: var(--txt) !important; font-size:14px; text-decoration:none; }
.rank-math-toc-box ul li a:hover { color: var(--pink) !important; }

/* ============================================
   PAGINATION
============================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.page-numbers {
  min-width: 38px; height: 38px; padding: 0 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card-bg); border: 1.5px solid var(--border-dark);
  border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--pink); text-decoration: none; transition: all .2s;
}
.page-numbers:hover, .page-numbers.current {
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  color: #fff; border-color: var(--pink);
  box-shadow: 0 4px 12px rgba(233,30,140,.35);
}

/* ============================================
   COMMENTS
============================================ */
.comments-area { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--mid-gray); }
.comment-list .comment {
  background: var(--card-bg); border-radius: 10px;
  padding: 18px; margin-bottom: 16px; border: 1px solid var(--mid-gray);
}
.comment-form label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin: 12px 0 5px; }
.comment-form input,
.comment-form textarea {
  width: 100%; background: var(--white); border: 1.5px solid var(--mid-gray);
  color: var(--txt2); padding: 10px 14px; border-radius: 8px;
  font-size: 14px; outline: none; font-family: inherit; margin-bottom: 4px;
}
body.dark-mode .comment-form input,
body.dark-mode .comment-form textarea { background: var(--dark3); border-color: rgba(233,30,140,.2); color: #f0dcea; }
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,.1); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.form-submit input[type="submit"] {
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  color: #fff; border: none; padding: 11px 28px;
  border-radius: 25px; font-weight: 700; cursor: pointer; font-size: 14px;
  box-shadow: 0 4px 12px rgba(233,30,140,.3); margin-top: 8px;
}

/* ============================================
   ARCHIVE / SEARCH
============================================ */
.archive-header { margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--pink-pale); }
.archive-title { font-size: 1.7rem; color: var(--txt2); }
.archive-title span { color: var(--pink); }
.archive-desc { font-size: 14px; color: var(--muted); margin-top: 6px; }
.search-form { display: flex; gap: 8px; margin-bottom: 24px; }
.search-input {
  flex: 1; background: var(--card-bg); border: 1.5px solid var(--border-dark);
  color: var(--txt2); padding: 11px 16px; border-radius: 8px; font-size: 14px; outline: none;
}
.search-input:focus { border-color: var(--pink); }
.search-btn {
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  color: #fff; border: none; padding: 11px 22px;
  border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 14px;
}

/* ============================================
   AD SPACE
============================================ */
.ad-space {
  background: var(--pink-pale); border: 1px dashed var(--border-dark);
  border-radius: 10px; padding: 22px; text-align: center;
  color: var(--muted); font-size: 12px; margin-bottom: 24px;
}
body.dark-mode .ad-space { background: var(--dark3); border-color: rgba(233,30,140,.2); }
.ad-space strong { display: block; font-size: 14px; color: var(--pink); margin-bottom: 4px; }

/* ============================================
   FOOTER
============================================ */
#site-footer {
  background: linear-gradient(135deg, #1a0f17, #0f0a0e);
  border-top: 2px solid rgba(233,30,140,.3); margin-top: 52px;
}
.footer-top {
  max-width: 1280px; margin: 0 auto; padding: 44px 20px;
  display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 32px;
}
@media(max-width:800px){ .footer-top { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .site-name { font-size: 24px; }
.footer-brand p { font-size: 13px; color: #9e6a85; margin-top: 10px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(233,30,140,.12); border: 1px solid rgba(233,30,140,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--pink-light); transition: all .2s; text-decoration: none;
}
.footer-social a:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.footer-col h4 {
  font-size: 11px; font-weight: 800; color: var(--pink-light);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: #9e6a85; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--pink-light); padding-left: 4px; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 16px 20px;
  border-top: 1px solid rgba(233,30,140,.15);
  display: flex; justify-content: space-between;
  font-size: 12px; color: #7a4a62; flex-wrap: wrap; gap: 8px;
}

/* ============================================
   SCROLL TO TOP
============================================ */
#scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  color: #fff; border: none; border-radius: 50%; font-size: 18px;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 4px 16px rgba(233,30,140,.45);
  transition: transform .2s;
}
#scroll-top:hover { transform: translateY(-3px); }
#scroll-top.visible { display: flex; }

/* ============================================
   CLASSIC EDITOR DARK STYLE
============================================ */
.wp-editor-area { background: #1a0f17 !important; color: #f0dcea !important; }

/* ============================================
   MOBILE
============================================ */
@media(max-width:768px){
  .hamburger { display: flex; }
  .header-right .social-icons { display: none; }
  #site-nav { display: none; }
  #site-nav.open { display: block; }
  .nav-inner ul { flex-direction: column; }
  .post-hero-img { height: 240px; }
  .hero-main { min-height: 300px; }
  .post-share { margin-left: 0; }
}

/* ── LOGO STYLING ── */
.site-logo-wrap {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.site-logo-wrap:hover { opacity: 0.85; }
.site-logo-wrap img,
.site-logo-wrap svg {
  max-height: 56px;
  width: auto;
  transition: transform .2s;
}
.site-logo-wrap:hover img { transform: scale(1.03); }

/* WordPress custom_logo fix */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { max-height: 56px !important; width: auto !important; }

/* ══════════════════════════════════════════
   BACKGROUND FIX — Light mode default
══════════════════════════════════════════ */
body {
  background-color: #fdf6fb !important; /* Soft pink-white — NOT black */
}
body.dark-mode {
  background-color: #0f0a0e !important;
}

/* ══════════════════════════════════════════
   CRYPTO PRICES WIDGET — Fixed styles
══════════════════════════════════════════ */
#crypto-prices-widget .crypto-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--mid-gray);
  transition: padding-left .2s;
}
body.dark-mode #crypto-prices-widget .crypto-price-row {
  border-bottom-color: rgba(233,30,140,.1);
}
#crypto-prices-widget .crypto-price-row:last-child { border-bottom: none; }
#crypto-prices-widget .crypto-price-row:hover { padding-left: 4px; }
#crypto-prices-widget .cp-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
body.dark-mode #crypto-prices-widget .cp-icon {
  filter: brightness(0.7);
}
#crypto-prices-widget .cp-info { flex: 1; }
#crypto-prices-widget .cp-name   { font-size: 13px; font-weight: 700; color: var(--txt2); }
#crypto-prices-widget .cp-symbol { font-size: 11px; color: var(--muted); }
#crypto-prices-widget .cp-price  { text-align: right; }
#crypto-prices-widget .cp-val    { font-size: 13px; font-weight: 700; color: var(--txt2); }
#crypto-prices-widget .cp-change { font-size: 11px; font-weight: 600; }

/* Loading animation */
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.cp-val:contains("Loading") { animation: pulse 1.5s ease infinite; color: var(--muted) !important; }

/* ══════════════════════════════════════════
   MOST POPULAR WIDGET — Fixed styles
══════════════════════════════════════════ */
.popular-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mid-gray);
  text-decoration: none;
  transition: padding-left .2s;
}
body.dark-mode .popular-item { border-bottom-color: rgba(233,30,140,.1); }
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { padding-left: 4px; }
.popular-item:hover .popular-title { color: var(--pink); }

.popular-num {
  font-size: 22px; font-weight: 700;
  color: var(--pink-pale);
  font-family: 'Playfair Display', serif;
  line-height: 1; flex-shrink: 0; width: 26px;
  text-align: center;
}
body.dark-mode .popular-num { color: rgba(233,30,140,.25); }

.popular-thumb {
  width: 72px; height: 54px;
  border-radius: 8px; object-fit: cover;
  flex-shrink: 0; background: var(--pink-pale);
}
.popular-thumb-placeholder {
  width: 72px; height: 54px;
  border-radius: 8px; background: var(--pink-pale);
  flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; font-size: 20px;
}
body.dark-mode .popular-thumb-placeholder { background: var(--dark3); }

.popular-content { flex: 1; min-width: 0; }
.popular-title {
  font-size: 13px; font-weight: 700;
  color: var(--txt2); line-height: 1.4;
  margin-bottom: 4px; transition: color .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-cat {
  font-size: 11px; color: var(--pink); font-weight: 600;
}

/* ══════════════════════════════════════════
   TRENDING TAGS WIDGET — Fixed styles
══════════════════════════════════════════ */
#trending-tags { display: flex; flex-wrap: wrap; gap: 8px; }
#trending-tags .tag-item {
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
#trending-tags .tag-item:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 3px 10px rgba(233,30,140,.3);
  transform: translateY(-1px);
}
body.dark-mode #trending-tags .tag-item {
  background: var(--dark3);
  border-color: rgba(233,30,140,.3);
  color: #ff6ec7;
}
body.dark-mode #trending-tags .tag-item:hover {
  background: var(--pink);
  color: #fff;
}

/* ══════════════════════════════════════════
   CATEGORIES WIDGET
══════════════════════════════════════════ */
.cat-list { display: flex; flex-direction: column; gap: 0; }
.cat-list-item { border-bottom: 1px solid var(--mid-gray); }
body.dark-mode .cat-list-item { border-bottom-color: rgba(233,30,140,.1); }
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 4px; text-decoration: none;
  color: var(--txt2); font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.cat-list-item a:hover { color: var(--pink); padding-left: 8px; }
.cat-list-count {
  background: var(--pink-pale); color: var(--pink);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
  min-width: 26px; text-align: center;
}
body.dark-mode .cat-list-count { background: var(--dark3); }

/* ══════════════════════════════════════════
   WIDGET GENERAL — Ensure white bg
══════════════════════════════════════════ */
.widget {
  background: #ffffff !important;
}
body.dark-mode .widget {
  background: #1e1018 !important;
}

/* ══════════════════════════════════════════
   CATEGORY BLOCKS — Main Page
══════════════════════════════════════════ */

/* Section wrapper */
.cat-block {
  margin-bottom: 44px;
  --cat-color: #e91e8c;
}

/* Header */
.cat-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--cat-color);
  position: relative;
}
.cat-block-header::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 60px; height: 3px;
  background: var(--cat-color);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cat-color);
}
.cat-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--txt2);
  display: flex; align-items: center; gap: 10px;
  margin: 0;
}
.cat-block-title a {
  color: var(--txt2);
  text-decoration: none;
  transition: color .2s;
}
.cat-block-title a:hover { color: var(--cat-color); }
.cat-block-icon {
  font-size: 20px; line-height: 1;
}
.cat-block-all {
  font-size: 12px; font-weight: 700;
  color: var(--cat-color) !important;
  text-decoration: none;
  background: color-mix(in srgb, var(--cat-color) 10%, transparent);
  padding: 5px 14px; border-radius: 20px;
  border: 1.5px solid color-mix(in srgb, var(--cat-color) 30%, transparent);
  transition: all .2s; white-space: nowrap;
}
.cat-block-all:hover {
  background: var(--cat-color);
  color: #fff !important;
}

/* Body Layout */
.cat-block-body {
  display: grid;
  gap: 3px;
}
.mixed-layout  { grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; }
.grid-layout   { grid-template-columns: repeat(3,1fr); }
.list-layout   { grid-template-columns: 1fr; }
@media(max-width:680px) {
  .mixed-layout  { grid-template-columns: 1fr; }
  .grid-layout   { grid-template-columns: 1fr 1fr; }
}

/* Main featured post */
.cat-main-post {
  position: relative;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--cat-color), #1a0f17);
  background-size: cover;
  background-position: center;
  row-span: 2;
  grid-row: span 2;
  transition: transform .3s;
}
.cat-main-post:hover { transform: scale(1.01); }
.cat-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
  border-radius: 12px;
}
.cat-main-content { position: relative; z-index: 2; }
.cat-tag-sm {
  display: inline-block;
  background: var(--cat-color);
  color: #fff; font-size: 9px; font-weight: 800;
  padding: 2px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 8px;
}
.cat-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: #fff; line-height: 1.3;
  margin-bottom: 8px; transition: color .2s;
}
.cat-main-post:hover .cat-main-title { color: #ffd6f0; }
.cat-main-meta { font-size: 11px; color: rgba(255,255,255,.55); }

/* Side posts */
.cat-side-posts {
  display: flex; flex-direction: column; gap: 3px;
}
.cat-side-item {
  display: flex; gap: 10px; align-items: center;
  background: var(--card-bg); border-radius: 10px;
  padding: 10px; text-decoration: none;
  border: 1px solid var(--mid-gray);
  transition: all .2s; flex: 1;
}
body.dark-mode .cat-side-item { border-color: rgba(233,30,140,.12); }
.cat-side-item:hover {
  border-color: var(--cat-color);
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  transform: translateX(3px);
}
.cat-side-item:hover .cat-side-title { color: var(--cat-color); }
.cat-side-thumb {
  width: 76px; height: 58px;
  border-radius: 7px; flex-shrink: 0;
  background-size: cover; background-position: center;
  background-color: var(--pink-pale);
}
.cat-side-no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: color-mix(in srgb, var(--cat-color) 12%, var(--white));
}
.cat-side-content { flex: 1; min-width: 0; }
.cat-side-title {
  font-size: 13px; font-weight: 700; color: var(--txt2);
  line-height: 1.4; margin-bottom: 5px;
  transition: color .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-side-meta { font-size: 11px; color: var(--muted); }

/* Small posts row */
.cat-small-row {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; gap: 0;
  background: var(--card-bg); border-radius: 10px;
  border: 1px solid var(--mid-gray); overflow: hidden;
}
body.dark-mode .cat-small-row { border-color: rgba(233,30,140,.12); }
.cat-small-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--mid-gray);
  text-decoration: none; transition: background .2s;
}
body.dark-mode .cat-small-item { border-bottom-color: rgba(233,30,140,.08); }
.cat-small-item:last-child { border-bottom: none; }
.cat-small-item:hover { background: color-mix(in srgb, var(--cat-color) 5%, transparent); }
.cat-small-item:hover .cat-small-title { color: var(--cat-color); }
.cat-small-dot {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.cat-small-title {
  flex: 1; font-size: 13px; font-weight: 600;
  color: var(--txt2); transition: color .2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-small-date { font-size: 11px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }

/* ── Divider between category blocks ── */
.cat-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink-pale), transparent);
  margin: 8px 0 40px;
}
body.dark-mode .cat-divider { background: linear-gradient(to right, transparent, rgba(233,30,140,.15), transparent); }

/* ══════════════════════════════════════════
   NAV MENU — WordPress ul.primary-menu fix
══════════════════════════════════════════ */
#site-nav .primary-menu,
#site-nav ul.menu,
#site-nav ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#site-nav .primary-menu > li,
#site-nav ul.menu > li,
#site-nav > div > ul > li {
  position: relative !important;
  display: block !important;
}

#site-nav .primary-menu > li > a,
#site-nav ul.menu > li > a,
#site-nav > div > ul > li > a {
  display: block !important;
  padding: 12px 15px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-muted) !important;
  white-space: nowrap !important;
  border-bottom: 3px solid transparent !important;
  transition: all .2s !important;
  text-decoration: none !important;
}

#site-nav .primary-menu > li > a:hover,
#site-nav ul.menu > li > a:hover,
#site-nav .primary-menu > li.current-menu-item > a,
#site-nav .primary-menu > li.current-menu-ancestor > a,
#site-nav ul.menu > li.current-menu-item > a {
  color: var(--pink) !important;
  border-bottom-color: var(--pink) !important;
}

/* Dropdown submenu */
#site-nav .primary-menu li ul,
#site-nav ul.menu li ul,
#site-nav ul li ul.sub-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  flex-direction: column !important;
  background: var(--white) !important;
  border: 1px solid var(--pink-pale) !important;
  border-radius: 0 0 10px 10px !important;
  min-width: 200px !important;
  z-index: 999 !important;
  box-shadow: 0 8px 24px rgba(233,30,140,.12) !important;
}

body.dark-mode #site-nav .primary-menu li ul,
body.dark-mode #site-nav ul.menu li ul {
  background: var(--dark2) !important;
  border-color: rgba(233,30,140,.2) !important;
}

#site-nav .primary-menu li:hover > ul,
#site-nav ul.menu li:hover > ul {
  display: flex !important;
}

#site-nav .primary-menu li ul li a,
#site-nav ul.menu li ul li a {
  padding: 10px 16px !important;
  border-bottom: 1px solid var(--pink-pale) !important;
  border-left: none !important;
  color: var(--txt2) !important;
  font-size: 13px !important;
  display: block !important;
  white-space: nowrap !important;
}

body.dark-mode #site-nav .primary-menu li ul li a {
  border-bottom-color: rgba(233,30,140,.1) !important;
  color: #f0dcea !important;
}

#site-nav .primary-menu li ul li:last-child a { border-bottom: none !important; }
#site-nav .primary-menu li ul li a:hover { color: var(--pink) !important; background: var(--pink-pale) !important; }

/* Mobile nav */
@media(max-width:768px) {
  #site-nav { display: none !important; }
  #site-nav.open { display: block !important; }
  #site-nav .primary-menu,
  #site-nav ul.menu,
  #site-nav ul { flex-direction: column !important; }
  #site-nav .primary-menu li ul,
  #site-nav ul.menu li ul { position: static !important; display: none !important; }
  #site-nav .primary-menu li.open > ul { display: flex !important; }
}
