/* ==========================================================================
   Stelarax Roadmap - EXAKT wie Shopware
   ========================================================================== */

.srm-roadmap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 880px;
    margin: 0 auto;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.srm-section {
    margin-bottom: 70px;
}

.srm-section:last-child {
    margin-bottom: 0;
}

.srm-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.srm-section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

/* ==========================================================================
   Items - EXAKT wie Shopware
   ========================================================================== */

.srm-items {
    border-top: 1px solid #e5e7eb;
}

.srm-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background 0.15s;
}

.srm-item:hover {
    background: #fafafa;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Blaue Linie */
.srm-item-bar {
    width: 4px;
    height: 22px;
    background: #0065ff;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Text */
.srm-item-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.5;
}

/* ==========================================================================
   Popup
   ========================================================================== */

.srm-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    justify-content: center;
    padding-top: 120px;
}

.srm-popup.is-open {
    display: flex;
}

.srm-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.srm-popup-container {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: popIn 0.2s ease;
}

@keyframes popIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.srm-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

.srm-popup-close:hover {
    color: #1a1a2e;
}

.srm-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #0065ff;
    margin: 0;
    padding: 24px 50px 16px 24px;
}

.srm-popup-body {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.srm-popup-body p {
    margin: 0;
}

.srm-popup-meta {
    padding: 16px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #6b7280;
    border-radius: 0 0 8px 8px;
}

.srm-popup-meta:empty {
    display: none;
}

.srm-popup-meta strong {
    color: #1a1a2e;
}

/* ==========================================================================
   Empty
   ========================================================================== */

.srm-empty {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}
