/*
 Theme Name:   GeneratePress Child for Stories
 Theme URI:    https://generatepress.com
 Description:  A GeneratePress child theme designed for the Velvet Words Stories platform.
 Author:       Your Name
 Author URI:   http://example.com
 Template:     generatepress
 Version:      1.0.0
*/

:root {
    --bg-deep: #0a0a0f;
    --bg-surface: #12121a;
    --bg-elevated: #1a1a28;
    --bg-card: #151520;
    --border: #2a2a3a;
    --border-hover: #3a3a50;
    --text-primary: #e8e0d8;
    --text-secondary: #9a8f85;
    --text-muted: #6b6058;
    --accent: #c45b6a;
    --accent-hover: #d4707e;
    --accent-glow: rgba(196, 91, 106, 0.25);
    --gold: #c9a96e;
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.5);
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body ::selection { background: var(--accent); color: #fff; }
body ::-webkit-scrollbar { width: 8px; }
body ::-webkit-scrollbar-track { background: var(--bg-deep); }
body ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
body ::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* Remove GeneratePress default container padding on home to match design */
.home.generatepress-child .site-content {
    padding: 0;
}
.home .site-main {
    margin: 0;
}
.home .entry-content {
    margin: 0;
}

/* ===== NAVIGATION overrides ===== */
.main-navigation { background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.main-navigation a { color: var(--text-secondary); }
.main-navigation a:hover { color: var(--text-primary); }

/* Custom elements from HTML */
.custom-nav { background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); padding: 0 5%; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 64px; }
.custom-nav .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--text-primary); text-decoration: none; letter-spacing: 1px; }
.custom-nav .logo span { color: var(--accent); font-weight: 700; }
.nav-center { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 400; font-size: 0.85rem; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { color: var(--text-secondary); text-decoration: none; font-weight: 400; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; gap: 4px; transition: color 0.3s; background: none; border: none; font-family: inherit; }
.nav-dropdown-toggle:hover { color: var(--text-primary); }
.nav-dropdown-toggle .arrow { font-size: 0.6rem; transition: transform 0.3s; }
.nav-dropdown:hover .nav-dropdown-toggle .arrow { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 8px 0; min-width: 180px; opacity: 0; visibility: hidden; transition: all 0.25s ease; box-shadow: var(--shadow-hover); z-index: 1001; margin: 0; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 6px); }
.dropdown-menu::before { content: ''; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; background: var(--bg-elevated); border-left: 1px solid var(--border); border-top: 1px solid var(--border); transform: translateX(-50%) rotate(45deg); }
.dropdown-menu a { display: block; padding: 8px 18px; color: var(--text-secondary); text-decoration: none; font-size: 0.82rem; transition: all 0.2s; white-space: nowrap; }
.dropdown-menu a:hover { color: var(--accent); background: rgba(196, 91, 106, 0.08); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 10px; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-search-btn { background: none; border: none; color: var(--text-secondary); font-size: 1.1rem; cursor: pointer; padding: 6px; transition: color 0.3s; }
.nav-search-btn:hover { color: var(--text-primary); }
.nav-login { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.nav-login:hover { color: var(--text-primary); }
.nav-cta { background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 8px 20px; border-radius: 6px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-size: 0.82rem; }
.nav-cta:hover { background: var(--accent); color: #fff; box-shadow: 0 0 20px var(--accent-glow); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-secondary); font-size: 1.4rem; cursor: pointer; }

/* ===== HERO ===== */
.hero { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%); padding: 50px 5% 40px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(196,91,106,0.08) 0%, transparent 70%); pointer-events: none; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; margin-bottom: 10px; font-weight: 500; color: var(--text-primary); letter-spacing: 1px; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 600; }
.hero p { font-size: 1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 24px; font-weight: 300; }
.hero-search { max-width: 520px; margin: 0 auto; display: flex; gap: 0; position: relative; z-index: 1; }
.hero-search input { flex: 1; padding: 12px 20px; background: var(--bg-elevated); border: 1px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; font-size: 0.95rem; outline: none; color: var(--text-primary); font-family: 'Inter', sans-serif; transition: border-color 0.3s; }
.hero-search input::placeholder { color: var(--text-muted); }
.hero-search input:focus { border-color: var(--accent); }
.hero-search button { background: var(--accent); color: #fff; border: none; padding: 12px 26px; border-radius: 0 8px 8px 0; font-weight: 500; cursor: pointer; transition: background 0.3s; font-size: 0.9rem; }
.hero-search button:hover { background: var(--accent-hover); }
.age-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; padding: 6px 14px; background: rgba(196, 91, 106, 0.1); border: 1px solid rgba(196, 91, 106, 0.2); border-radius: 20px; font-size: 0.75rem; color: var(--accent); font-weight: 500; }

/* ===== SECTION STYLES ===== */
.section { max-width: 1400px; margin: 0 auto; padding: 40px 5%; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 500; color: var(--text-primary); letter-spacing: 0.5px; }
.view-all { color: var(--accent); text-decoration: none; font-weight: 400; font-size: 0.85rem; display: flex; align-items: center; gap: 4px; transition: gap 0.3s; }
.view-all:hover { gap: 8px; color: var(--accent-hover); }

/* ===== LATEST STORY ROW ===== */
.stories-list { display: flex; flex-direction: column; gap: 12px; }
.latest-row { display: flex; gap: 18px; background: var(--bg-card); border-radius: 10px; padding: 16px 20px; border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; cursor: pointer; align-items: center; }
.latest-row:hover { transform: translateX(4px); border-color: var(--border-hover); box-shadow: var(--shadow-hover); }
.latest-row .story-thumb { width: 90px; height: 65px; border-radius: 6px; object-fit: cover; flex-shrink: 0; filter: brightness(0.85); transition: filter 0.3s; }
.latest-row:hover .story-thumb { filter: brightness(1); }
.latest-row .story-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.latest-row .story-info .category { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); }
.latest-row .story-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.latest-row .story-info .meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 16px; align-items: center; }
.latest-row .story-info .meta span { display: flex; align-items: center; gap: 4px; }
.latest-row .story-info .meta .rating { color: var(--gold); letter-spacing: 1px; }
.latest-row .story-info .excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; font-style: italic; margin: 0; }
.latest-row .story-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; min-width: 120px; flex-shrink: 0; }
.latest-row .story-actions .published { font-size: 0.75rem; color: var(--text-muted); }
.read-btn { background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 6px 18px; border-radius: 6px; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; text-align: center; }
.read-btn:hover { background: var(--accent); color: #fff; box-shadow: 0 0 15px var(--accent-glow); }

/* ===== POPULAR STORY ROW ===== */
.popular-row { display: flex; gap: 18px; background: var(--bg-card); border-radius: 10px; padding: 16px 20px; border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; cursor: pointer; align-items: center; }
.popular-row:hover { transform: translateX(4px); border-color: var(--border-hover); box-shadow: var(--shadow-hover); }
.popular-row .story-rank { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--accent); min-width: 36px; text-align: center; flex-shrink: 0; }
.popular-row .story-rank.top { color: var(--gold); }
.popular-row .story-thumb { width: 90px; height: 65px; border-radius: 6px; object-fit: cover; flex-shrink: 0; filter: brightness(0.85); transition: filter 0.3s; }
.popular-row:hover .story-thumb { filter: brightness(1); }
.popular-row .story-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.popular-row .story-info .category { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); }
.popular-row .story-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0;}
.popular-row .story-info .meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 16px; align-items: center; }
.popular-row .story-info .meta span { display: flex; align-items: center; gap: 4px; }
.popular-row .story-info .meta .rating { color: var(--gold); letter-spacing: 1px; }
.popular-row .story-info .excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; font-style: italic; margin: 0; }
.popular-row .story-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 120px; flex-shrink: 0; }
.popular-row .story-actions .views { font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }
.popular-row .story-actions .trend { font-size: 0.7rem; color: #7cb87c; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.pagination-btn { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); padding: 8px 14px; border-radius: 6px; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; min-width: 38px; text-align: center; }
.pagination-btn:hover { border-color: var(--accent); color: var(--accent); }
.pagination-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination-btn:disabled:hover { border-color: var(--border); color: var(--text-secondary); }
.pagination-ellipsis { color: var(--text-muted); font-size: 0.85rem; padding: 0 4px; }
.pagination-info { text-align: center; margin-top: 12px; font-size: 0.8rem; color: var(--text-muted); }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.category-card { background: var(--bg-card); border-radius: 12px; padding: 22px 14px; text-align: center; border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; cursor: pointer; text-decoration: none; display: block; }
.category-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.category-card .cat-icon { font-size: 1.8rem; margin-bottom: 8px; opacity: 0.8; color: var(--text-primary); }
.category-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.category-card .cat-count { font-size: 0.75rem; color: var(--text-muted); }

/* ===== SUBMIT SECTION ===== */
.submit-section { background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 50px 5%; text-align: center; position: relative; }
.submit-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 400px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.submit-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 10px; font-weight: 500; color: var(--text-primary); }
.submit-section p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 24px; font-size: 0.95rem; font-weight: 300; }
.submit-btn { background: transparent; color: var(--accent); border: 1px solid var(--accent); padding: 14px 36px; border-radius: 8px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; }
.submit-btn:hover { background: var(--accent); color: #fff; box-shadow: 0 0 30px var(--accent-glow); transform: scale(1.03); }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 8, 0.85); z-index: 2000; justify-content: center; align-items: center; backdrop-filter: blur(8px); }
.modal-overlay.active { display: flex; }
.modal { background: var(--bg-surface); border-radius: 14px; width: 90%; max-width: 580px; max-height: 90vh; overflow-y: auto; padding: 32px; position: relative; border: 1px solid var(--border); animation: modalIn 0.35s ease; text-align: left; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-muted); transition: color 0.3s; line-height: 1; }
.modal-close:hover { color: var(--text-primary); }
.modal h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--text-primary); margin-bottom: 24px; font-weight: 500; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 400; font-size: 0.85rem; margin-bottom: 6px; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: border-color 0.3s; outline: none; color: var(--text-primary); box-sizing: border-box; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-submit { background: var(--accent); color: #fff; border: none; padding: 12px 28px; border-radius: 8px; font-size: 0.95rem; font-weight: 500; cursor: pointer; width: 100%; transition: background 0.3s; font-family: 'Inter', sans-serif; }
.modal-submit:hover { background: var(--accent-hover); }
.submit-message { display: none; margin-top: 15px; padding: 10px; border-radius: 5px; text-align: center; font-size: 0.9rem; }
.submit-message.success { display: block; background: rgba(124, 184, 124, 0.1); color: #7cb87c; border: 1px solid #7cb87c; }
.submit-message.error { display: block; background: rgba(196, 91, 106, 0.1); color: var(--accent); border: 1px solid var(--accent); }

/* ===== FOOTER ===== */
.custom-footer { background: var(--bg-deep); color: var(--text-muted); padding: 40px 5% 20px; border-top: 1px solid var(--border); }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-brand .logo { margin-bottom: 12px; display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--text-primary); text-decoration: none; letter-spacing: 1px; }
.footer-brand .logo span { color: var(--accent); font-weight: 700; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; color: var(--text-muted); margin: 0; }
.footer-col h4 { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { max-width: 1400px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--text-primary); }

/* ===== DIVIDER ===== */
.section-divider { max-width: 1400px; margin: 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) { 
    .mobile-menu-btn { display: block; } 
    .nav-right .nav-login { display: none; } 
    .nav-right .nav-search-form { display: none; }
    .nav-right .nav-cta { display: none; }
    .nav-center { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-card); padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); border-bottom: 1px solid var(--border); z-index: 100; }
    .nav-links { flex-direction: column; gap: 15px; }
    .nav-links .menu-item-submit-story { display: none; }
    .custom-nav .logo { font-size: 1.3rem; }
    .site-switcher { margin-right: 10px; }
    .switcher-btn { padding: 6px 10px; font-size: 0.8rem; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .latest-row, .popular-row { flex-wrap: wrap; padding: 14px; }
    .latest-row .story-actions, .popular-row .story-actions { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; margin-top: 10px; }
    .latest-row .story-thumb, .popular-row .story-thumb { width: 70px; height: 50px; }
    .popular-row .story-rank { font-size: 1.3rem; min-width: 28px; }
    .pagination { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .custom-nav .logo { font-size: 1.1rem; letter-spacing: 0px; }
    .nav-right { gap: 8px; }
    .switcher-btn { padding: 4px 8px; font-size: 0.75rem; }
    .switcher-menu { right: -40px; }
    
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.85rem; margin-bottom: 18px; }
    .hero-search { max-width: 100%; padding: 0 10px; flex-direction: column; gap: 0; }
    .hero-search input { border-radius: 8px 8px 0 0; border-right: 1px solid var(--border); border-bottom: none; padding: 14px 16px; font-size: 0.9rem; }
    .hero-search button { border-radius: 0 0 8px 8px; padding: 14px 16px; font-size: 0.9rem; }
    .latest-row .story-info h3, .popular-row .story-info h3 { font-size: 1rem; }
    .latest-row .story-info .excerpt, .popular-row .story-info .excerpt { display: none; }
    .pagination-btn { padding: 6px 10px; font-size: 0.8rem; min-width: 32px; }
}

/* ===== STORY HEADER ===== */
.story-header { max-width: 800px; margin: 0 auto; padding: 50px 5% 30px; text-align: center; }
.story-header .category-tag { display: inline-block; padding: 4px 14px; background: rgba(196, 91, 106, 0.1); border: 1px solid rgba(196, 91, 106, 0.2); border-radius: 20px; font-size: 0.75rem; color: var(--accent); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.story-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 500; color: var(--text-primary); line-height: 1.2; margin-bottom: 20px; }
.story-meta { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.85rem; }
.story-meta .author { display: flex; align-items: center; gap: 8px; }
.story-meta .author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.story-meta span { display: flex; align-items: center; gap: 4px; }
.story-meta .rating { color: var(--gold); }
.story-actions-bar { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.action-btn { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); padding: 8px 18px; border-radius: 8px; font-size: 0.82rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.action-btn:hover { border-color: var(--accent); color: var(--accent); }
.action-btn.liked { background: rgba(196, 91, 106, 0.1); border-color: var(--accent); color: var(--accent); }

/* ===== STORY COVER ===== */
.story-cover { max-width: 800px; margin: 0 auto; padding: 0 5% 30px; }
.story-cover img { width: 100%; height: 300px; object-fit: cover; border-radius: 12px; filter: brightness(0.9); }

/* ===== STORY CONTENT ===== */
.story-content { max-width: 700px; margin: 0 auto; padding: 0 5% 50px; }
.story-content p { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.15rem; line-height: 1.8; color: #fdfdfd; margin-bottom: 24px; text-align: left; letter-spacing: 0.2px; font-weight: 400; }
/* Dropcap removed */
.story-content .divider { text-align: center; margin: 40px 0; color: var(--text-muted); font-size: 1.2rem; letter-spacing: 8px; }

/* ===== STORY FOOTER ===== */
.story-footer { max-width: 700px; margin: 0 auto; padding: 30px 5% 50px; border-top: 1px solid var(--border); }
.story-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.story-tags .tag { background: var(--bg-card); border: 1px solid var(--border); padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; color: var(--text-secondary); cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.story-tags .tag:hover { border-color: var(--accent); color: var(--accent); }
.story-stats { display: flex; gap: 30px; margin-bottom: 30px; }
.story-stats .stat { text-align: center; }
.story-stats .stat .num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--text-primary); }
.story-stats .stat .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== AUTHOR BOX ===== */
.author-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; gap: 18px; align-items: center; margin-bottom: 40px; }
.author-box img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.author-box .author-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; margin-top: 0; }
.author-box .author-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.author-box .follow-btn { margin-left: auto; background: transparent; border: 1px solid var(--accent); color: var(--accent); padding: 8px 20px; border-radius: 6px; font-size: 0.82rem; cursor: pointer; transition: all 0.3s; flex-shrink: 0; text-decoration: none; }
.author-box .follow-btn:hover { background: var(--accent); color: #fff; }

/* ===== COMMENTS ===== */
.comments-section { max-width: 700px; margin: 0 auto; padding: 0 5% 50px; }
.comments-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--text-primary); margin-bottom: 24px; }
.comment-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-bottom: 30px; }
.comment-form textarea { width: 100%; padding: 12px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 0.9rem; resize: vertical; min-height: 80px; outline: none; margin-bottom: 12px; box-sizing: border-box; }
.comment-form textarea::placeholder { color: var(--text-muted); }
.comment-form textarea:focus { border-color: var(--accent); }
.comment-form button { background: var(--accent); color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: background 0.3s; }
.comment-form button:hover { background: var(--accent-hover); }
.comment { display: flex; gap: 14px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.comment:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.comment img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.comment-body { flex: 1; }
.comment-body .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.comment-body .comment-header .name { font-weight: 500; font-size: 0.9rem; color: var(--text-primary); }
.comment-body .comment-header .time { font-size: 0.75rem; color: var(--text-muted); }
.comment-body p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.comment-body .comment-actions { display: flex; gap: 14px; margin-top: 8px; }
.comment-body .comment-actions button { background: none; border: none; color: var(--text-muted); font-size: 0.78rem; cursor: pointer; transition: color 0.3s; }
.comment-body .comment-actions button:hover { color: var(--accent); }

/* ===== RELATED STORIES ===== */
.related-section { max-width: 1400px; margin: 0 auto; padding: 40px 5%; border-top: 1px solid var(--border); }
.related-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--text-primary); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; cursor: pointer; display: block; text-decoration: none; }
.related-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.related-card img { width: 100%; height: 130px; object-fit: cover; filter: brightness(0.85); transition: filter 0.3s; }
.related-card:hover img { filter: brightness(1); }
.related-card .content { padding: 14px; }
.related-card .content .cat { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 6px; display: block; }
.related-card .content h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; margin-top: 0; }
.related-card .content .meta { font-size: 0.75rem; color: var(--text-muted); display: flex; justify-content: space-between; }

/* ===== PAGE HEADER ===== */
.page-header { padding: 50px 5% 40px; text-align: center; background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-header::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(196,91,106,0.08) 0%, transparent 70%); pointer-events: none; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 500; color: var(--text-primary) !important; margin-bottom: 10px; position: relative; z-index: 1; }
.page-header p { color: var(--text-muted) !important; font-size: 0.95rem; max-width: 500px; margin: 0 auto; position: relative; z-index: 1; }
.archive-stats { display: flex; justify-content: center; gap: 40px; margin-top: 24px; }
.archive-stats .stat { text-align: center; }
.archive-stats .stat .num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--accent); }
.archive-stats .stat .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== TABS ===== */
.tabs { max-width: 1400px; margin: 0 auto; padding: 0 5% 20px; display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.tab { padding: 12px 24px; color: var(--text-muted); font-size: 0.9rem; cursor: pointer; transition: all 0.3s; border-bottom: 2px solid transparent; margin-bottom: -1px; text-decoration: none; }
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ===== MONTH GRID ===== */
.months-grid { max-width: 1400px; margin: 0 auto; padding: 0 5% 40px; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.month-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px; transition: transform 0.3s, border-color 0.3s; }
.month-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.month-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--text-primary); margin-bottom: 12px; }
.month-card .story-list { list-style: none; margin: 0; padding: 0; }
.month-card .story-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.month-card .story-list li:last-child { border-bottom: none; }
.month-card .story-list li a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 10px; }
.month-card .story-list li a:hover { color: var(--accent); }
.month-card .story-list li .count { font-size: 0.75rem; color: var(--text-muted); background: var(--bg-elevated); padding: 2px 8px; border-radius: 10px; }

/* ===== AUTHOR LIST ===== */
.author-list { max-width: 1400px; margin: 0 auto; padding: 0 5% 40px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.author-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px; display: flex; gap: 14px; align-items: center; transition: transform 0.3s, border-color 0.3s; cursor: pointer; text-decoration: none; }
.author-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.author-card img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.author-card .info { flex: 1; min-width: 0; }
.author-card .info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; margin-top: 0; }
.author-card .info p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ===== SEARCH HEADER ===== */
.search-header { max-width: 1400px; margin: 0 auto; padding: 40px 5% 20px; }
.search-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.search-header h1 em { color: var(--accent); font-style: italic; }
.search-header .results-count { color: var(--text-muted); font-size: 0.9rem; }

/* ===== SEARCH BAR ===== */
.search-bar { max-width: 1400px; margin: 0 auto; padding: 0 5% 30px; }
.search-bar-inner { display: flex; gap: 0; max-width: 600px; }
.search-bar-inner input { flex: 1; padding: 12px 20px; background: var(--bg-elevated); border: 1px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; font-size: 0.95rem; outline: none; color: var(--text-primary); font-family: 'Inter', sans-serif; box-sizing: border-box; }
.search-bar-inner input::placeholder { color: var(--text-muted); }
.search-bar-inner input:focus { border-color: var(--accent); }
.search-bar-inner button { background: var(--accent); color: #fff; border: none; padding: 12px 24px; border-radius: 0 8px 8px 0; font-weight: 500; cursor: pointer; transition: background 0.3s; }
.search-bar-inner button:hover { background: var(--accent-hover); }

/* ===== FILTERS ===== */
.filters { max-width: 1400px; margin: 0 auto; padding: 0 5% 20px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filters label { font-size: 0.8rem; color: var(--text-muted); margin-right: 4px; }
.filter-select { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); padding: 8px 14px; border-radius: 6px; font-size: 0.82rem; font-family: 'Inter', sans-serif; cursor: pointer; outline: none; }
.filter-select:focus { border-color: var(--accent); }
.filter-pill { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); padding: 6px 14px; border-radius: 20px; font-size: 0.78rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.filter-pill:hover, .filter-pill.active { border-color: var(--accent); color: var(--accent); background: rgba(196, 91, 106, 0.08); }
.clear-filters { background: none; border: none; color: var(--text-muted); font-size: 0.78rem; cursor: pointer; margin-left: auto; transition: color 0.3s; }
.clear-filters:hover { color: var(--accent); }

/* ===== RESULTS LIST ===== */
.results-section { max-width: 1400px; margin: 0 auto; padding: 0 5% 40px; }
.result-row { display: flex; gap: 18px; background: var(--bg-card); border-radius: 10px; padding: 16px 20px; border: 1px solid var(--border); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; cursor: pointer; align-items: center; margin-bottom: 12px; }
.result-row:hover { transform: translateX(4px); border-color: var(--border-hover); box-shadow: var(--shadow-hover); }
.result-row .thumb { width: 90px; height: 65px; border-radius: 6px; object-fit: cover; flex-shrink: 0; filter: brightness(0.85); transition: filter 0.3s; }
.result-row:hover .thumb { filter: brightness(1); }
.result-row .info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.result-row .info .category { font-size: 0.68rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); }
.result-row .info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.result-row .info .meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 16px; align-items: center; }
.result-row .info .meta span { display: flex; align-items: center; gap: 4px; }
.result-row .info .meta .rating { color: var(--gold); }
.result-row .info .excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; font-style: italic; margin: 0; }
.result-row .info .excerpt .highlight { color: var(--accent); font-weight: 500; }
.result-row .actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 100px; flex-shrink: 0; }
.result-row .actions .published { font-size: 0.75rem; color: var(--text-muted); }
.result-row .actions .views { font-size: 0.78rem; color: var(--text-secondary); }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 60px 5%; }
.no-results .icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; color: var(--text-muted); }
.no-results h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--text-primary); margin-bottom: 8px; }
.no-results p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== LEGAL PAGE LAYOUT ===== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 50px 5%; }
.legal-page h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.legal-page .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.legal-page h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--text-primary); margin-top: 36px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-page h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-secondary); margin-top: 24px; margin-bottom: 12px; }
.legal-page p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { margin-left: 24px; margin-bottom: 16px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.legal-page ul li { margin-bottom: 8px; }
.legal-page a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
.legal-page a:hover { color: var(--accent-hover); text-decoration: underline; }
.legal-page .highlight-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin: 24px 0; }
.legal-page .highlight-box p { margin-bottom: 0; font-size: 0.9rem; }
.legal-page .toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-bottom: 40px; }
.legal-page .toc h3 { margin-top: 0; font-family: 'Inter', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.legal-page .toc ul { list-style: none; margin-left: 0; padding-left: 0; }
.legal-page .toc ul li { margin-bottom: 6px; }
.legal-page .toc ul li a { color: var(--text-secondary); font-size: 0.88rem; }
.legal-page .toc ul li a:hover { color: var(--accent); text-decoration: none; }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 768px) {
    .story-header h1 { font-size: 2rem; }
    .story-content p { font-size: 1.1rem; }
    .author-box { flex-direction: column; text-align: center; }
    .author-box .follow-btn { margin-left: 0; margin-top: 12px; }
    .related-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 1.8rem; }
    .archive-stats { gap: 24px; }
    .months-grid { grid-template-columns: 1fr; }
    .author-list { grid-template-columns: 1fr; }
    .tabs { overflow-x: auto; }
    .filters { gap: 8px; }
    .result-row { flex-wrap: wrap; padding: 14px; }
    .result-row .actions { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; margin-top: 10px; }
    .result-row .thumb { width: 70px; height: 50px; }
    .legal-page h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .search-bar-inner { flex-direction: column; }
    .search-bar-inner input { border-radius: 8px; border-right: 1px solid var(--border); margin-bottom: 8px; }
    .search-bar-inner button { border-radius: 8px; }
    .result-row .info h3 { font-size: 1rem; }
    .result-row .info .excerpt { display: none; }
}

/* WordPress Core Menu Dropdown Fallbacks */
.nav-links li {
    position: relative;
}
.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    padding: 10px 0;
    z-index: 100;
    flex-direction: column;
}
.nav-links li:hover > .sub-menu {
    display: flex;
}
.nav-links .sub-menu li {
    width: 100%;
}
.nav-links .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}
.nav-links .sub-menu a:hover {
    background-color: rgba(196, 91, 106, 0.1);
    color: var(--accent);
    padding-left: 25px;
}
.nav-links .menu-item-has-children > a::after {
    content: "\f0d7"; /* FontAwesome caret-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
}

/* Navbar Search Form */
.nav-search-form {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2px 10px;
    margin-right: 15px;
}
.nav-search-form input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 5px;
    width: 120px;
    transition: width 0.3s ease;
}
.nav-search-form input:focus {
    width: 180px;
    outline: none;
}
.nav-search-form button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
}
.nav-search-form button:hover {
    color: var(--accent);
}

/* Custom Logo Constraint */
.custom-logo-link img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Share Dropdown */
.share-dropdown-wrapper .share-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    flex-direction: column;
    min-width: 150px;
    z-index: 50;
    margin-bottom: 10px;
}
.share-dropdown-wrapper .share-menu.active {
    display: flex;
}
.share-dropdown-wrapper .share-menu a {
    padding: 10px 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}
.share-dropdown-wrapper .share-menu a:hover {
    background: rgba(196, 91, 106, 0.1);
    color: var(--accent);
}

/* ===== HIERARCHICAL CATEGORIES ===== */
.categories-hierarchical { margin-top: 20px; }
.cat-hierarchy-list, .cat-hierarchy-list ul { list-style: none; padding-left: 0; margin: 0; }
.cat-hierarchy-list li { margin-bottom: 8px; }
.cat-hierarchy-list > li { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 20px; margin-bottom: 12px; }
.cat-hierarchy-list > li > a { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--text-primary); text-decoration: none; display: inline-block; transition: color 0.3s; }
.cat-hierarchy-list > li > a:hover { color: var(--accent); }
.cat-hierarchy-list ul.children { margin-top: 10px; padding-left: 20px; border-left: 1px dashed var(--border); }
.cat-hierarchy-list ul.children li a { font-size: 0.9rem; color: var(--text-secondary); text-decoration: none; transition: color 0.3s; display: inline-block; padding: 4px 0; }
.cat-hierarchy-list ul.children li a:hover { color: var(--accent); }
.cat-hierarchy-list .count { color: var(--text-muted); font-size: 0.8rem; margin-left: 6px; font-family: 'Inter', sans-serif; background: var(--bg-deep); padding: 2px 8px; border-radius: 20px; border: 1px solid var(--border); }

/* ===== SITE SWITCHER ===== */
.site-switcher { position: relative; display: inline-block; margin-right: 15px; }
.switcher-btn { background: transparent; border: 1px solid var(--border); color: var(--text-primary); padding: 8px 15px; border-radius: 8px; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: border-color 0.3s; }
.switcher-btn:hover { border-color: var(--accent); }
.switcher-menu { display: none; position: absolute; top: 110%; right: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; min-width: 180px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 100; overflow: hidden; flex-direction: column; }
.switcher-menu.active { display: flex; }
.switcher-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 15px; color: var(--text-secondary); text-decoration: none; transition: background 0.2s, color 0.2s; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.switcher-menu a:last-child { border-bottom: none; }
.switcher-menu a:hover { background: rgba(196, 91, 106, 0.1); color: var(--accent); }
