/* ==========================================================================
   SMRT Plans / Levels Styles (List View)
   ========================================================================== */

.smrt-plans-wrap {
    margin-top: 24px;
}

.smrt-plans-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.smrt-plan-list-item {
    background: rgba(25, 25, 35, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.smrt-plan-list-item:hover {
    border-color: rgba(206, 5, 246, 0.3);
    background: rgba(25, 25, 35, 0.6);
}

.smrt-plan-list-item.smrt-plan-current {
    border-color: rgba(206, 5, 246, 0.3);
}

.smrt-plan-list-item.smrt-plan-current::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: #ce05f6;
    opacity: 0.8;
}

/* Left Content Area */
.smrt-plan-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.smrt-plan-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.smrt-plan-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.smrt-current-badge {
    background: rgba(206, 5, 246, 0.15);
    color: #ce05f6;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(206, 5, 246, 0.3);
}

.smrt-plan-price {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.smrt-plan-price strong {
    font-size: 20px;
    color: var(--smrt-accent);
}

.smrt-plan-description {
    color: var(--smrt-text-muted);
    font-size: 14px;
    line-height: 1.5;
}
.smrt-plan-description p {
    margin: 0;
}
.smrt-plan-description ul {
    list-style: none;
    padding: 0; margin: 8px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.smrt-plan-description ul li {
    padding-left: 20px;
    position: relative;
    color: var(--smrt-text);
    font-size: 13px;
}
.smrt-plan-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--smrt-accent);
    font-weight: bold;
}

/* Right Action Area */
.smrt-plan-action {
    flex-shrink: 0;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.smrt-plan-action .smrt-btn {
    width: 100%;
    text-align: center;
}

.smrt-plan-action .smrt-btn-primary {
    background: #1a1a24;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.smrt-plan-action .smrt-btn-primary:hover {
    background: #222230;
    border-color: rgba(206, 5, 246, 0.4);
    box-shadow: 0 4px 12px rgba(206, 5, 246, 0.15);
}

/* Danger / Cancel Button */
.smrt-btn-danger {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #EF4444 !important;
}
.smrt-btn-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #EF4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
    .smrt-plan-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }
    .smrt-plan-action {
        width: 100%;
        min-width: auto;
    }
    .smrt-plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
