/* ============================================
   WHAT TO SAY IN A SYMPATHY CARD - Styles
   Empathy UX: 18px+ fonts, large tap targets
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #5B8A72;
    --primary-hover: #4a7a62;
    --primary-light: #e8f0ec;
    --secondary: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-medium: #555555;
    --text-light: #888888;
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
    --star-color: #d4a03c;
    --star-active: #c4902c;
    --success: #22c55e;
    --error: #ef4444;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.2s ease;
}

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

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--secondary);
    min-height: 100vh;
}

body.font-large {
    font-size: 20px;
}

body.font-larger {
    font-size: 22px;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

/* ========== HEADER ========== */
.site-header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.1rem;
}

.header-controls {
    display: flex;
    gap: 0.5rem;
}

.header-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: background var(--transition);
    min-height: 44px;
    min-width: 44px;
}

.header-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* ========== DROPDOWN MENU ========== */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.menu-section {
    min-width: 180px;
}

.menu-section-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.menu-subsection {
    margin-bottom: 1rem;
}

.menu-subsection-title {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.menu-subsection-title a {
    color: var(--text-medium);
}

.menu-links {
    list-style: none;
}

.menu-links li {
    margin-bottom: 0.4rem;
}

.menu-links a {
    display: block;
    padding: 0.3rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.menu-links a:hover {
    color: var(--primary);
}

.menu-links a.current {
    color: var(--primary);
    font-weight: bold;
}

.card-icon {
    margin-right: 0.3rem;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #4a7a62 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-instructions {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.main-column {
    min-width: 0;
}

/* ========== MODE TOGGLE ========== */
.mode-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: var(--card-bg);
    padding: 0.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mode-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--text-medium);
    transition: all var(--transition);
}

.mode-btn.active {
    background: var(--primary);
    color: white;
}

.mode-btn:hover:not(.active) {
    background: var(--primary-light);
}

/* ========== FILTERS ========== */
.filters-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.filter-group {
    margin-bottom: 1rem;
    border: none;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group summary {
    cursor: pointer;
    padding: 0.5rem 0;
    font-weight: bold;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group summary::before {
    content: "▶";
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.filter-group[open] summary::before {
    transform: rotate(90deg);
}

.filter-group summary::-webkit-details-marker {
    display: none;
}

.filter-label {
    font-size: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all var(--transition);
    min-height: 44px;
}

.filter-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========== MESSAGES ========== */
.messages-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.messages-count {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ========== AFFILIATE DROPDOWN - CATEGORIZED ========== */
.affiliate-dropdown {
    position: relative;
}

.affiliate-dropdown-btn {
    background: var(--primary-light);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.affiliate-dropdown-btn:hover {
    background: var(--primary);
    color: white;
}

.affiliate-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    z-index: 100;
    margin-top: 0.25rem;
    padding: 0.5rem 0;
}

.affiliate-dropdown-menu.open {
    display: block;
}

.affiliate-category {
    padding: 0.5rem 0;
}

.affiliate-category:not(:last-child) {
    border-bottom: 1px solid var(--card-border);
}

.affiliate-category-label {
    display: block;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.affiliate-option {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background var(--transition);
}

.affiliate-option:hover {
    background: var(--primary-light);
    text-decoration: none;
}

.affiliate-option.disabled {
    color: var(--text-light);
    pointer-events: none;
}

.coming-soon {
    font-size: 0.75rem;
    background: var(--secondary);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    margin-left: auto;
}

/* ========== MESSAGE CARDS - SIDE BY SIDE LAYOUT ========== */
.messages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-card {
    background: var(--secondary);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: relative;
    transition: box-shadow var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.message-card:hover {
    box-shadow: var(--shadow);
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.message-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    background: white;
    color: var(--text-medium);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    border: 1px solid var(--card-border);
}

/* Buttons on RIGHT side */
.message-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-action {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all var(--transition);
    min-height: 44px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.btn-action:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-save {
    position: relative;
    z-index: 10;
}

.btn-save.saved {
    background: var(--star-color);
    color: white;
    border-color: var(--star-color);
}

.btn-copy.copied {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-medium);
}

/* ========== MAIN BODY REVIEW CTA ========== */
.main-review-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--card-border);
}

.btn-main-review {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--star-color) 0%, var(--star-active) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.btn-main-review:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========== REVIEW SECTION ========== */
.review-section {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.review-header {
    margin-bottom: 1.5rem;
}

.review-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.review-header p {
    color: var(--text-medium);
}

.saved-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.saved-card {
    background: var(--secondary);
    border: 2px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.saved-card:hover,
.saved-card.selected {
    border-color: var(--primary);
}

.saved-card.selected {
    background: var(--primary-light);
}

.shortlist-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-medium);
}

.btn-browse {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

/* Message Editor */
.message-editor {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.message-editor h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.editor-message {
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.editor-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.editor-controls label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.editor-controls select,
.editor-controls input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}

.editor-preview h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.preview-box {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 2px dashed var(--card-border);
    font-size: 1.05rem;
    line-height: 1.7;
    white-space: pre-wrap;
}

.editor-actions {
    margin-top: 1rem;
}

.btn-copy-complete {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-copy-complete:hover {
    background: var(--primary-hover);
}

.copy-success {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid var(--success);
    border-radius: var(--radius);
    text-align: center;
}

.copy-success p {
    color: var(--success);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.copy-success-subtitle {
    color: var(--text-medium) !important;
    font-weight: normal !important;
    font-size: 0.9rem;
    margin-bottom: 0.75rem !important;
}

.post-copy-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.post-copy-cta {
    display: inline-block;
    padding: 0.6rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}

.post-copy-cta:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

/* ========== CREATE CARD BUTTON ========== */
.btn-create-card {
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-create-card:hover {
    background: var(--primary);
    color: white;
}

/* ========== SHAREABLE CARD ========== */
.shareable-card {
    background: var(--card-bg);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.shareable-card .card-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.shareable-card .card-signoff {
    font-style: italic;
    color: var(--text-medium);
}

.shareable-card .card-watermark {
    position: absolute;
    font-size: 4rem;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ========== SIDEBAR ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-panel {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.sidebar-panel h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary);
}

.card-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shortlist-preview {
    min-height: 60px;
}

.shortlist-preview .empty-state {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.btn-review-saved {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    margin-top: 1rem;
    cursor: pointer;
}

/* Gifts CTA Box */
.gifts-cta-box {
    text-align: center;
}

.gifts-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gifts-cta-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gifts-cta-box p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.sidebar-gift-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-gift {
    display: block;
    background: var(--primary);
    color: white;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    transition: background var(--transition);
}

.btn-gift:hover {
    background: var(--primary-hover);
    text-decoration: none;
}

/* ========== CARD ECOSYSTEM ========== */
.card-ecosystem {
    background: var(--card-bg);
    padding: 3rem 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.card-ecosystem h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-ecosystem > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.ecosystem-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.ecosystem-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--secondary);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    transition: all var(--transition);
    min-width: 140px;
}

.ecosystem-card:hover {
    border-color: var(--card-color, var(--primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.ecosystem-card.current {
    border-color: var(--card-color, var(--primary));
    background: var(--primary-light);
}

.ecosystem-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ecosystem-name {
    font-size: 0.9rem;
    font-weight: bold;
}

.ecosystem-label {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-ecosystem {
    margin-bottom: 1.5rem;
}

.footer-ecosystem a {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.footer-divider {
    color: rgba(255,255,255,0.3);
    margin: 0 0.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.footer-copyright a {
    color: rgba(255,255,255,0.8);
}

.footer-affiliate-disclosure {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-affiliate-disclosure a {
    color: rgba(255,255,255,0.7);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .shortlist-panel {
        grid-column: 1 / -1;
    }
    
    /* Stack message card on mobile */
    .message-card {
        flex-direction: column;
    }
    
    .message-actions {
        flex-direction: row;
        width: 100%;
        margin-top: 1rem;
    }
    
    .btn-action {
        flex: 1;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .editor-controls {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .ecosystem-card {
        width: 100%;
        max-width: 250px;
    }
    
    .post-copy-ctas {
        flex-direction: column;
    }
    
    .post-copy-cta {
        width: 100%;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .site-header,
    .filters-section,
    .mode-toggle,
    .sidebar,
    .card-ecosystem,
    .site-footer,
    .message-actions,
    .affiliate-dropdown {
        display: none !important;
    }
    
    .main-content {
        max-width: 100%;
        padding: 0;
    }
    
    .content-wrapper {
        display: block;
    }
    
    .message-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }
}

/* ============================================
   ARTICLE PAGE STYLES
   Integrated from article-styles.css
   ============================================ */

/* Article Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Article Hero Image */
.article-hero-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8dd 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 2px dashed var(--card-border);
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-image-placeholder {
    text-align: center;
    color: var(--text-light);
}

.hero-image-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Article Title */
.article-container h1 {
    font-size: 2rem;
    color: var(--primary-hover);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Article Meta */
.article-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
}

/* Article Headings */
.article-container h2 {
    font-size: 1.5rem;
    color: var(--primary-hover);
    margin: 2rem 0 1rem;
}

.article-container h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

/* Article Paragraphs */
.article-container p {
    margin-bottom: 1.25rem;
}

/* Sample Card Display */
.sample-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    position: relative;
}

.sample-card::before {
    content: "Sample Card";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sample-card .card-message {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sample-card .card-signoff {
    text-align: right;
    color: var(--text-light);
    font-size: 1rem;
}

/* Tip Box */
.tip-box {
    background: #fef9e7;
    border-left: 4px solid var(--star-color);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.tip-box strong {
    color: #b8860b;
}

/* Warning Box */
.warning-box {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.warning-box strong {
    color: #b91c1c;
}

/* Article Lists */
.article-container ul,
.article-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-container li {
    margin-bottom: 0.75rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 1rem 0;
    transition: background var(--transition);
}

.cta-button:hover {
    background: var(--primary-hover);
    color: white;
    text-decoration: none;
}

/* Related Articles Section */
.related-articles {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 3rem 0 2rem;
}

.related-articles h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-hover);
}

.related-articles ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
}

.related-articles a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--primary-hover);
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

.related-articles a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    text-decoration: none;
}

/* Article Affiliate CTAs */
.article-affiliate-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #d4e8dd 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    text-align: center;
}

.article-affiliate-section h3 {
    margin-top: 0;
    color: var(--primary-hover);
    font-size: 1.2rem;
}

.article-affiliate-section p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.article-affiliate-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.article-affiliate-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.article-affiliate-link:hover {
    background: var(--primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Article Cross-Site Links */
.article-ecosystem {
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    text-align: center;
}

.article-ecosystem h3 {
    margin-top: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.article-ecosystem-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.article-ecosystem-links a {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid var(--card-border);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.article-ecosystem-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.article-ecosystem-links a span {
    margin-right: 0.5rem;
}

/* Article Header */
.article-header {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-header a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.article-header a:hover {
    text-decoration: underline;
}

/* Article Footer */
.article-footer {
    background: var(--text-dark);
    color: #ccc;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.article-footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-footer-links {
    margin-bottom: 1rem;
}

.article-footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.95rem;
}

.article-footer-links a:hover {
    color: white;
}

.article-footer-ecosystem {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-footer-ecosystem a {
    color: #aaa;
    text-decoration: none;
    margin: 0 0.5rem;
}

.article-footer-ecosystem a:hover {
    color: white;
}

.article-footer-legal {
    font-size: 0.85rem;
    color: #888;
}

.article-footer-legal a {
    color: #aaa;
}

/* Article Responsive */
@media (max-width: 600px) {
    .article-container {
        padding: 1.5rem 1rem;
    }
    
    .article-container h1 {
        font-size: 1.75rem;
    }
    
    .sample-card {
        padding: 1.25rem 1.5rem;
    }
    
    .article-ecosystem-links {
        flex-direction: column;
    }
    
    .article-ecosystem-links a {
        width: 100%;
    }
    
    .article-affiliate-links {
        flex-direction: column;
    }
    
    .article-affiliate-link {
        width: 100%;
    }
}

/* ============================================
   ADDITIONAL STYLES - January 2026 Update
   ============================================ */

/* ========== MAIN BODY SAVED MESSAGES SECTION ========== */
.saved-messages-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border: 2px solid #d4a03c;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(212, 160, 60, 0.15);
}

.saved-messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.saved-messages-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b6914;
    margin: 0;
}

.saved-messages-preview {
    margin-bottom: 1rem;
}

.saved-preview-item {
    background: white;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    border-left: 3px solid #d4a03c;
}

.saved-preview-item:last-child {
    margin-bottom: 0;
}

.saved-preview-more {
    font-size: 0.85rem;
    color: #8b6914;
    font-style: italic;
    margin-top: 0.5rem;
}

.btn-review-saved-main {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #d4a03c 0%, #c4902c 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-review-saved-main:hover {
    background: linear-gradient(135deg, #c4902c 0%, #b4801c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 160, 60, 0.3);
}

/* ========== SHARE MODAL ========== */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.share-modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
}

.modal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.card-preview-container {
    margin-bottom: 1.5rem;
}

/* ========== SHAREABLE CARD (Enhanced) ========== */
.shareable-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(91, 138, 114, 0.1);
}

.shareable-card .card-corner {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
}

.shareable-card .card-corner-tl {
    top: 0.75rem;
    left: 0.75rem;
}

.shareable-card .card-corner-tr {
    top: 0.75rem;
    right: 0.75rem;
}

.shareable-card .card-corner-bl {
    bottom: 0.75rem;
    left: 0.75rem;
}

.shareable-card .card-corner-br {
    bottom: 0.75rem;
    right: 0.75rem;
}

.shareable-card .card-body {
    padding: 1rem 0;
}

.shareable-card .card-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.shareable-card .card-signoff {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.shareable-card .card-name {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========== MODAL ACTION BUTTONS ========== */
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-modal-action {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
}

.btn-modal-action:hover {
    background: var(--primary);
    color: white;
}

.btn-modal-action .btn-icon {
    font-size: 1.1rem;
}

/* ========== SHARE BUTTONS ========== */
.share-buttons {
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
}

.share-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    text-align: center;
}

.share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.btn-share {
    padding: 0.625rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-share:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== EDITOR ACTIONS ENHANCED ========== */
.editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.editor-actions .btn-copy-complete,
.editor-actions .btn-create-card {
    flex: 1;
    min-width: 180px;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 600px) {
    .modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-modal-action {
        width: 100%;
    }
    
    .share-icons {
        flex-direction: column;
    }
    
    .btn-share {
        width: 100%;
        justify-content: center;
    }
    
    .saved-messages-section {
        padding: 1rem;
    }
    
    .editor-actions {
        flex-direction: column;
    }
    
    .editor-actions .btn-copy-complete,
    .editor-actions .btn-create-card {
        width: 100%;
    }
}
/* ==========================================
   ARTICLE PAGE STYLES
   Add these to the end of styles.css
   ========================================== */

/* Article Page Layout */
.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.article-container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.article-container h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.article-container h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
}

.article-container h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.75rem;
}

.article-container p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article-container ul,
.article-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-container li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Article Tip Boxes */
.article-tip-box {
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5e9 100%);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.article-tip-box strong {
    color: var(--primary-dark);
}

.article-tip-box.green {
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5e9 100%);
    border-left-color: var(--primary);
}

.article-tip-box.green strong {
    color: var(--primary-dark);
}

.article-tip-box.warning {
    background: linear-gradient(135deg, #fff8f0 0%, #ffefef 100%);
    border-left-color: #e57373;
}

.article-tip-box.warning strong {
    color: #c62828;
}

.article-tip-box ul {
    margin: 0.75rem 0 0 1.25rem;
}

.article-tip-box li {
    margin-bottom: 0.5rem;
}

/* Sample Message Cards in Articles */
.sample-message-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
}

.sample-message-card::before {
    content: "Sample Card";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sample-message-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.sample-message-signoff {
    text-align: right;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Article Affiliate CTA Section */
.article-cta-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f0e8 100%);
    border: 2px solid #e8dcc8;
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.article-cta-section.compact {
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.article-cta-section h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.25rem;
}

.article-cta-section p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.article-affiliate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.article-affiliate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 56px;
}

.article-affiliate-btn.flowers {
    background: linear-gradient(135deg, #5B8A72 0%, #4a7a62 100%);
    color: white;
    border: 2px solid #4a7a62;
}

.article-affiliate-btn.flowers:hover {
    background: linear-gradient(135deg, #4a7a62 0%, #3a6a52 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 138, 114, 0.3);
}

.article-affiliate-btn.candles {
    background: linear-gradient(135deg, #5B8A72 0%, #4a7a62 100%);
    color: white;
    border: 2px solid #4a7a62;
}

.article-affiliate-btn.candles:hover {
    background: linear-gradient(135deg, #4a7a62 0%, #3a6a52 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 138, 114, 0.3);
}

.article-affiliate-btn.amazon {
    background: linear-gradient(135deg, #FF9900 0%, #E88B00 100%);
    color: #232F3E;
    border: 2px solid #E88B00;
}

.article-affiliate-btn.amazon:hover {
    background: linear-gradient(135deg, #FFB84D 0%, #FF9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

/* Article Main CTA Button */
.article-main-cta {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 2.5rem 0;
    transition: all 0.2s ease;
}

.article-main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 138, 114, 0.3);
    color: white;
}

/* Related Articles Section */
.related-articles {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0 2rem;
}

.related-articles h2 {
    margin: 0 0 1.25rem 0;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.related-articles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.related-articles-list li {
    margin: 0;
}

.related-articles-list a {
    display: block;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.related-articles-list a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(4px);
}

/* Back to Main Link in Header */
.back-to-main {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    transition: background 0.2s;
}

.back-to-main:hover {
    background: rgba(255,255,255,0.25);
    color: white;
}

/* Article Responsive */
@media (max-width: 768px) {
    .article-page {
        padding: 1rem;
    }
    
    .article-container {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .article-container h1 {
        font-size: 1.6rem;
    }
    
    .article-container h2 {
        font-size: 1.3rem;
    }
    
    .article-affiliate-buttons {
        flex-direction: column;
    }
    
    .article-affiliate-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sample-message-card {
        padding: 1.25rem 1.5rem;
    }
}
/* Amazon Affiliate Button Styles */
.btn-gift-amazon {
    background: linear-gradient(135deg, #FF9900 0%, #E88B00 100%) !important;
    color: #232F3E !important;
}

.btn-gift-amazon:hover {
    background: linear-gradient(135deg, #FFB84D 0%, #FF9900 100%) !important;
}

.post-copy-cta-amazon {
    background: linear-gradient(135deg, #FF9900 0%, #E88B00 100%) !important;
    color: #232F3E !important;
}

.post-copy-cta-amazon:hover {
    background: linear-gradient(135deg, #FFB84D 0%, #FF9900 100%) !important;
}

/* ========== HEADER NAV FOR GIFTS LINK ========== */
.header-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.1);
}

.header-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.header-nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
}
