/* ============================================
   Munro Bagging Tracker - Tool Styles
   ============================================ */

/* Page container constraint */
.munro-page .container {
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================
   Hero
   ============================================ */
.munro-page .munro-hero {
    text-align: center;
    padding: 2.5rem 0 1.5rem;
}

.munro-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--scottish-blue);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.2;
}

.munro-hero-subtitle {
    color: var(--stone-grey);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   Auth Section
   ============================================ */
.munro-auth {
    max-width: 420px;
    margin: 0 auto 2rem;
}

.munro-auth-card {
    background: #fff;
    border: 1px solid rgba(26, 58, 92, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.munro-auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(26, 58, 92, 0.1);
}

.munro-auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--stone-grey);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.munro-auth-tab.active {
    color: var(--scottish-blue);
    border-bottom-color: var(--scottish-blue);
}

.munro-auth-tab:hover {
    color: var(--scottish-blue);
}

.munro-form-group {
    margin-bottom: 1rem;
}

.munro-form-group label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--scottish-blue);
    margin-bottom: 0.3rem;
}

.munro-form-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(26, 58, 92, 0.2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--scottish-blue-deep);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.munro-form-group input:focus {
    outline: none;
    border-color: var(--scottish-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.munro-form-group small {
    display: block;
    font-size: 0.75rem;
    color: var(--stone-grey);
    margin-top: 0.2rem;
}

.munro-form-error {
    color: #c0392b;
    font-size: 0.85rem;
    margin: 0.5rem 0;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================
   Buttons
   ============================================ */
.munro-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.munro-btn:active {
    transform: scale(0.97);
}

.munro-btn-primary {
    background: var(--scottish-blue);
    color: #fff;
    padding: 0.65rem 1.25rem;
    width: 100%;
    justify-content: center;
}

.munro-btn-primary:hover {
    background: var(--scottish-blue-deep);
}

.munro-btn-small {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.munro-btn-small:hover {
    background: rgba(255, 255, 255, 0.25);
}

.munro-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.munro-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Welcome Bar
   ============================================ */
.munro-welcome {
    background: var(--scottish-blue);
    color: #fff;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}

.munro-welcome-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

#munroWelcomeText {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.munro-welcome-actions {
    display: flex;
    gap: 0.5rem;
}

/* ============================================
   Public Profile Banner
   ============================================ */
.munro-profile-banner {
    background: linear-gradient(135deg, var(--scottish-blue) 0%, var(--scottish-blue-deep) 100%);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.munro-profile-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin: 0 0 0.3rem;
}

.munro-profile-banner p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

/* ============================================
   Stats Dashboard
   ============================================ */
.munro-stats {
    margin-bottom: 1.5rem;
}

.munro-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.munro-stat-card {
    background: #fff;
    border: 1px solid rgba(26, 58, 92, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.munro-stat-value {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--scottish-blue);
    line-height: 1.2;
}

.munro-stat-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--stone-grey);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.munro-progress-bar-track {
    background: rgba(26, 58, 92, 0.08);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.munro-progress-bar-fill {
    background: #2e7d32;
    height: 100%;
    border-radius: 20px;
    transition: width 0.6s ease;
}

/* ============================================
   Filter Bar
   ============================================ */
.munro-filters {
    margin-bottom: 1.5rem;
    display: none;
}

.munro-filter-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.munro-search {
    flex: 1;
    min-width: 200px;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(26, 58, 92, 0.2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--scottish-blue-deep);
}

.munro-search:focus {
    outline: none;
    border-color: var(--scottish-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.munro-select {
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(26, 58, 92, 0.2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--scottish-blue-deep);
    background: #fff;
    cursor: pointer;
}

.munro-select:focus {
    outline: none;
    border-color: var(--scottish-blue);
}

/* ============================================
   Munro List
   ============================================ */
.munro-list {
    margin-bottom: 3rem;
    display: none;
}

.munro-section {
    margin-bottom: 0.5rem;
    border: 1px solid rgba(26, 58, 92, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.munro-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(26, 58, 92, 0.03);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--scottish-blue);
    list-style: none;
    user-select: none;
}

.munro-section-header::-webkit-details-marker {
    display: none;
}

.munro-section-header::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid var(--scottish-blue);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-right: 0.6rem;
    transition: transform 0.2s;
}

.munro-section[open] > .munro-section-header::before {
    transform: rotate(90deg);
}

.munro-section-name {
    flex: 1;
}

.munro-section-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--stone-grey);
    background: rgba(26, 58, 92, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.munro-section-count.munro-section-complete {
    background: #e8f5e9;
    color: #2e7d32;
}

.munro-section-body {
    padding: 0.25rem 0;
}

.munro-row {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
    cursor: pointer;
    transition: background 0.15s;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(26, 58, 92, 0.04);
}

.munro-row:last-child {
    border-bottom: none;
}

.munro-row:hover {
    background: rgba(26, 58, 92, 0.02);
}

.munro-row.munro-bagged {
    background: rgba(46, 125, 50, 0.04);
}

.munro-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #2e7d32;
    cursor: pointer;
    flex-shrink: 0;
}

.munro-checkbox:disabled {
    opacity: 0.4;
    cursor: default;
}

.munro-name {
    flex: 1;
    color: var(--scottish-blue-deep);
    font-weight: 500;
}

.munro-height {
    color: var(--stone-grey);
    font-size: 0.8rem;
    min-width: 50px;
    text-align: right;
}

.munro-grid-ref {
    color: var(--stone-grey);
    font-size: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    min-width: 72px;
    text-align: right;
    opacity: 0.7;
}

/* ============================================
   Leaderboard
   ============================================ */
.munro-leaderboard {
    margin-bottom: 3rem;
}

.munro-leaderboard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--scottish-blue);
    margin-bottom: 0.25rem;
}

.munro-leaderboard-subtitle {
    font-size: 0.9rem;
    color: var(--stone-grey);
    margin-bottom: 1rem;
}

.munro-leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
}

.munro-leaderboard-table th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    color: var(--scottish-blue);
    border-bottom: 2px solid rgba(26, 58, 92, 0.15);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.munro-leaderboard-table td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(26, 58, 92, 0.06);
    color: var(--scottish-blue-deep);
}

.munro-leaderboard-table tr:nth-child(even) {
    background: rgba(26, 58, 92, 0.02);
}

.munro-leaderboard-table tr:hover {
    background: rgba(26, 58, 92, 0.04);
}

.munro-rank {
    font-weight: 700;
    width: 40px;
}

.munro-rank-1,
.munro-rank-2,
.munro-rank-3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.munro-rank-1 { background: #d4a84b; }
.munro-rank-2 { background: #9e9e9e; }
.munro-rank-3 { background: #a0522d; }

.munro-leaderboard-user {
    cursor: pointer;
    color: var(--scottish-blue);
    text-decoration: none;
}

.munro-leaderboard-user:hover {
    text-decoration: underline;
}

.munro-lb-photos {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #2e7d32;
    font-weight: 600;
}

.munro-loading {
    text-align: center;
    color: var(--stone-grey);
    font-size: 0.9rem;
    padding: 2rem 0;
}

.munro-leaderboard-empty {
    text-align: center;
    color: var(--stone-grey);
    font-size: 0.9rem;
    padding: 2rem 0;
}

/* ============================================
   SEO Content & FAQ
   ============================================ */
.munro-seo-content {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 58, 92, 0.08);
}

.munro-seo-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--scottish-blue);
    margin-bottom: 0.75rem;
}

.munro-seo-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--scottish-blue);
    margin: 1.25rem 0 0.5rem;
}

.munro-seo-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.munro-seo-content a {
    color: var(--scottish-blue);
    text-decoration: underline;
}

.munro-faq-section {
    margin: 2rem 0;
}

.munro-faq-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--scottish-blue);
    margin-bottom: 1rem;
}

.munro-faq-item {
    border: 1px solid rgba(26, 58, 92, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.munro-faq-item summary {
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--scottish-blue);
    cursor: pointer;
    list-style: none;
}

.munro-faq-item summary::-webkit-details-marker {
    display: none;
}

.munro-faq-item summary::before {
    content: '+';
    display: inline-block;
    width: 1.2rem;
    font-weight: 700;
    color: var(--scottish-blue);
}

.munro-faq-item[open] summary::before {
    content: '\2212';
}

.munro-faq-item p {
    padding: 0 1rem 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.munro-faq-item a {
    color: var(--scottish-blue);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .munro-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .munro-grid-ref {
        display: none;
    }
}

@media (max-width: 640px) {
    .munro-hero h1 {
        font-size: 1.8rem;
    }

    .munro-hero-subtitle {
        font-size: 0.95rem;
    }

    .munro-filter-row {
        flex-direction: column;
    }

    .munro-search,
    .munro-select {
        width: 100%;
    }

    .munro-welcome-inner {
        flex-direction: column;
        text-align: center;
    }

    .munro-row {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .munro-leaderboard-table {
        font-size: 0.8rem;
    }

    .munro-stat-value {
        font-size: 1.4rem;
    }
}

/* ============================================
   Mailing List Opt-in Checkbox
   ============================================ */
.munro-checkbox-group {
    margin-top: 0.25rem;
}

.munro-mailing-opt {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--stone-grey);
    cursor: pointer;
    line-height: 1.4;
}

.munro-mailing-opt input[type="checkbox"] {
    margin-top: 0.15rem;
    width: 16px;
    height: 16px;
    accent-color: var(--scottish-blue);
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================
   Activation Section
   ============================================ */
.munro-activation {
    max-width: 480px;
    margin: 0 auto 2rem;
}

.munro-activation-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.munro-activation-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--scottish-blue-deep);
    margin: 0.75rem 0 0.5rem;
}

.munro-activation-content p {
    color: var(--peat);
    font-size: 0.92rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.munro-activation-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    line-height: 1;
}

.munro-activation-success-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.munro-activation-error-icon {
    background: #fbe9e7;
    color: #c0392b;
}

.munro-activation-email-icon {
    background: #e3f2fd;
    color: var(--scottish-blue);
}

.munro-activation-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: var(--scottish-blue);
    border-radius: 50%;
    animation: munro-spin 0.8s linear infinite;
    margin: 0 auto 0.75rem;
}

@keyframes munro-spin {
    to { transform: rotate(360deg); }
}

.munro-activation-help {
    color: var(--stone-grey) !important;
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
}

/* Resend form and link */
.munro-resend-form {
    display: flex;
    gap: 0.5rem;
    margin: 0.75rem auto 0;
    max-width: 360px;
}

.munro-resend-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
}

.munro-resend-input:focus {
    outline: none;
    border-color: var(--scottish-blue);
    box-shadow: 0 0 0 2px rgba(26, 58, 92, 0.15);
}

.munro-resend-link {
    background: none;
    border: none;
    color: var(--scottish-blue);
    text-decoration: underline;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    padding: 0;
    display: inline;
}

.munro-resend-link:hover {
    color: var(--scottish-blue-deep);
}

.munro-resend-message {
    font-size: 0.85rem;
    color: #2e7d32;
    margin-top: 0.75rem;
}

/* ============================================
   Image Modal
   ============================================ */
.munro-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.munro-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.munro-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.munro-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--stone-grey);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    line-height: 1;
}

.munro-modal-close:hover {
    background: var(--highland-mist);
    color: var(--peat);
}

.munro-modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--scottish-blue-deep);
    margin: 0 0 1rem;
    padding-right: 2rem;
}

.munro-modal-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

/* Camera icon button on Munro rows */
.munro-camera-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
    margin-left: auto;
    flex-shrink: 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: color 0.2s;
}

.munro-camera-btn:hover {
    color: var(--scottish-blue);
    background: rgba(26, 58, 92, 0.08);
}

.munro-camera-btn.munro-camera-approved {
    color: #2e7d32;
}

.munro-camera-btn.munro-camera-approved:hover {
    color: #1b5e20;
    background: rgba(46, 125, 50, 0.08);
}

.munro-camera-btn.munro-camera-pending {
    color: #e67e22;
}

.munro-camera-btn.munro-camera-pending:hover {
    color: #d35400;
    background: rgba(230, 126, 34, 0.08);
}

/* Thumbnail image in camera button */
.munro-camera-thumb {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    border: 2px solid #9ca3af;
}

.munro-camera-btn.munro-camera-approved .munro-camera-thumb {
    border-color: #2e7d32;
}

.munro-camera-btn.munro-camera-pending .munro-camera-thumb {
    border-color: #e67e22;
}

.munro-camera-btn:has(.munro-camera-thumb) {
    padding: 0;
}

/* Upload area */
.munro-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.munro-upload-area:hover {
    border-color: var(--scottish-blue);
    background: rgba(26, 58, 92, 0.03);
}

.munro-upload-area p {
    margin: 0.5rem 0 0.25rem;
    color: var(--peat);
    font-size: 0.92rem;
}

.munro-upload-area small {
    color: var(--stone-grey);
    font-size: 0.8rem;
}

.munro-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Image preview in modal */
.munro-image-preview-wrap {
    text-align: center;
    position: relative;
}

.munro-image-preview {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.munro-image-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.munro-image-status-approved {
    background: #e8f5e9;
    color: #2e7d32;
}

.munro-image-status-pending {
    background: #fff3e0;
    color: #e65100;
}

.munro-btn-danger {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

.munro-btn-danger:hover {
    background: #a93226;
    border-color: #a93226;
}

.munro-reupload-label {
    cursor: pointer;
}

@media (max-width: 640px) {
    .munro-modal-content {
        width: 95%;
        padding: 1.25rem;
        border-radius: 10px;
    }
}

/* ============================================
   Toast Notification
   ============================================ */
.munro-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #c0392b;
    color: #fff;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 9999;
    max-width: 90%;
    text-align: center;
}

.munro-toast-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   Print
   ============================================ */
@media print {
    .munro-auth,
    .munro-welcome,
    .munro-activation,
    .munro-filters,
    .munro-leaderboard,
    .page-cta,
    nav,
    footer {
        display: none !important;
    }

    .munro-section {
        break-inside: avoid;
    }

    .munro-row {
        padding: 0.25rem 0.5rem;
    }
}
