.spw-widget-container {
    border: 1px solid #e2e2e2;
    padding: 25px;
    border-radius: 8px;
    background: #f9f9f9;
    max-width: 600px;
    margin: 20px;
    font-family: sans-serif;
}

.spw-quiz-header h3 {
    margin-top: 0;
    color: #2c3e50;
}

.spw-progress-bar {
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    margin: 15px 0 25px 0;
    overflow: hidden;
}

.spw-progress-fill {
    height: 100%;
    background: #f1c40f; /* Solar Yellow */
    transition: width 0.3s ease;
}

.spw-quiz-section {
    display: none;
}

.spw-quiz-section.active {
    display: block;
}

.spw-question {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.spw-question label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.spw-options label {
    font-weight: normal;
    margin-right: 15px;
    cursor: pointer;
}

.spw-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.spw-btn:hover {
    background: #219150;
}

#spw-result-message {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #f1c40f;
    margin-bottom: 20px;
}


/* --- CALCULATOR STYLES --- */
.spw-input-group {
    margin-bottom: 25px;
}

.spw-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    padding: 5px 10px;
    max-width: 200px;
}

.spw-input-wrapper input {
    border: none;
    background: transparent;
    font-size: 18px;
    width: 100%;
    outline: none;
}

.spw-unit {
    color: #888;
    font-weight: 600;
}

input[type=range] {
    width: 100%;
    margin-top: 10px;
}

.spw-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: -5px;
    margin-bottom: 5px;
}

/* Results Grid */
.spw-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.spw-result-card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.spw-result-card.highlight {
    background: #fcf8e3; /* Light yellow bg */
    border-color: #faebcc;
}

.spw-result-card .label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spw-result-card .value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.spw-result-card.highlight .value {
    color: #27ae60; /* Green for savings/net cost */
}

.spw-result-card .sub {
    display: block;
    font-size: 11px;
    color: #999;
}

.spw-btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .spw-result-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CHECKLIST STYLES --- */

.spw-checklist-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.spw-checklist-section:last-child {
    border-bottom: none;
}

.spw-check-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Checked State - Nice Green */
.spw-check-item.checked {
    background: #eafaf1; /* Light Green */
    border-color: #27ae60;
}

.spw-check-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.spw-check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: #27ae60;
}

.spw-details {
    margin-top: 5px;
    margin-left: 35px; /* Align with text, not checkbox */
    color: #666;
    font-size: 0.9em;
}

.spw-text-link {
    background: none;
    border: none;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.spw-text-link:hover {
    color: #c0392b; /* Red on hover for Reset */
}

.spw-checklist-actions {
    text-align: right;
    margin-top: 10px;
}

/* --- FUNKY CALCULATOR STYLES --- */

.spw-unit-prefix {
    color: #888;
    font-weight: 600;
    margin-right: 5px;
}

.spw-result-card.big-result {
    background: #eafaf1; /* Light Green */
    border-color: #27ae60;
    padding: 25px;
    margin-bottom: 20px;
}

.spw-result-card.big-result .value {
    font-size: 36px;
    color: #27ae60;
}

.spw-breakdown-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 6px;
}

.spw-breakdown-box h5 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #f1c40f;
    display: inline-block;
    padding-bottom: 5px;
}

#spw-year-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

#spw-year-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    font-size: 16px;
}

#spw-year-list li.gap {
    border: none;
    font-weight: bold;
    color: #ccc;
    letter-spacing: 2px;
}

/* --- FUNKY CALCULATOR NOTIFICATION STYLE --- */

.spw-section-label {
    font-size: 12px;
    font-weight: 700;
    color: #f1c40f; /* Solar Yellow */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.spw-notification-card {
    background: #fff;
    border: 2px solid #27ae60;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.15);
}

.spw-notification-icon {
    font-size: 40px;
    margin-bottom: 10px;
    background: #eafaf1;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.spw-notification-card h4 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 22px;
}

.spw-notify-stat {
    margin: 15px 0;
}

.spw-notify-stat .label {
    display: block;
    color: #888;
    font-size: 14px;
}

.spw-notify-stat .value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.spw-notify-stat.main .value {
    font-size: 42px;
    color: #27ae60; /* Success Green */
}

.spw-notify-details {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

#spw-year-list {
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    list-style: none;
}

#spw-year-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

#spw-year-list li:last-child {
    border-bottom: none;
}

/* --- ROI CALCULATOR VISUAL --- */

.spw-roi-visual {
    margin: 30px 0;
    padding: 0 10px;
}

.spw-visual-track {
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.spw-visual-fill {
    height: 100%;
    background: #f1c40f; /* Solar Yellow for the "Debt" period */
    border-radius: 10px 0 0 10px;
    transition: width 1s ease-in-out;
}

/* Add a green section for the "Profit" period (using pseudo-element) */
.spw-visual-track::after {
    content: "Profit Zone";
    position: absolute;
    right: 10px;
    top: 2px;
    font-size: 10px;
    color: #888;
    z-index: 1;
}

.spw-visual-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

#visual-payback-label {
    color: #2c3e50;
    font-weight: 700;
}

/* --- ROI SPECIFIC STYLES --- */

.spw-roi-visual-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.spw-roi-visual {
    margin: 10px 0 0 0;
}

.spw-visual-track {
    height: 18px;
    background: #e0e0e0;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.spw-visual-fill {
    height: 100%;
    background: #f1c40f; /* Solar Yellow representing "Paying Back" */
    border-radius: 9px 0 0 9px;
    transition: width 1s ease-in-out;
}

/* Profit Zone Label */
.spw-visual-track::after {
    content: "Profit Zone →";
    position: absolute;
    right: 8px;
    top: 2px;
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 1;
}

.spw-visual-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
}

#visual-payback-label {
    color: #2c3e50;
    font-weight: 700;
}

/* Mini Grid for Notification Cards */
.spw-result-grid.mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.spw-result-grid.mini .spw-result-card {
    padding: 10px;
    box-shadow: none;
    background: #fcfcfc;
    border: 1px solid #eee;
}

.spw-result-grid.mini .value {
    font-size: 18px;
}

/* --- ROI SPECIFIC STYLES --- */

.spw-roi-visual-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.spw-roi-visual {
    margin: 10px 0 0 0;
}

.spw-visual-track {
    height: 18px;
    background: #e0e0e0;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.spw-visual-fill {
    height: 100%;
    background: #f1c40f; /* Solar Yellow representing "Paying Back" */
    border-radius: 9px 0 0 9px;
    transition: width 1s ease-in-out;
}

/* Profit Zone Label */
.spw-visual-track::after {
    content: "Profit Zone →";
    position: absolute;
    right: 8px;
    top: 2px;
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 1;
}

.spw-visual-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
}

#visual-payback-label {
    color: #2c3e50;
    font-weight: 700;
}

/* Mini Grid for Notification Cards */
.spw-result-grid.mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.spw-result-grid.mini .spw-result-card {
    padding: 10px;
    box-shadow: none;
    background: #fcfcfc;
    border: 1px solid #eee;
}

.spw-result-grid.mini .value {
    font-size: 18px;
}

/* --- READINESS CHECKLIST STYLES --- */

.spw-readiness-header {
    background: #f1c40f;
    color: black;
    padding: 15px;
    border-radius: 8px 8px 0 0;
    margin: -25px -25px 20px -25px; /* Pull to edges of container */
    text-align: center;
}

.spw-readiness-header h4 {
    color: black;
    margin: 0 0 5px 0;
}

.spw-sticky-progress {
    background: #ecf0f1;
    height: 6px;
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.spw-sticky-fill {
    height: 100%;
    background: #27ae60;
    width: 0%;
    transition: width 0.3s ease;
}

.spw-readiness-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.spw-readiness-item:last-child {
    border-bottom: none;
}

.spw-readiness-item.completed {
    background: #f0f9f4; /* Light Green */
}

.spw-readiness-item.completed h5 {
    color: #27ae60;
    text-decoration: line-through;
}

.spw-checkbox-wrapper {
    margin-right: 15px;
    margin-top: 3px;
}

.spw-checkbox-wrapper input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #27ae60;
}

.spw-item-content {
    flex-grow: 1;
}

.spw-item-content h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #34495e;
}

.spw-item-content p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #7f8c8d;
}

.spw-toggle-why {
    background: none;
    border: none;
    color: #3498db;
    font-size: 12px;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.spw-why-box {
    background: #e8f6f3;
    padding: 10px;
    margin-top: 8px;
    border-radius: 4px;
    font-size: 13px;
    color: #16a085;
    border-left: 3px solid #1abc9c;
}

/* --- 7. DIY TROUBLESHOOTER STYLES (NEW) --- */

#spw-diag-stage {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.spw-diag-card {
    text-align: center;
    width: 100%;
}

#spw-diag-question {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.spw-diag-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spw-diag-btn {
    background: white;
    border: 1px solid #3498db;
    color: #3498db;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.spw-diag-btn:hover {
    background: #3498db;
    color: white;
}

/* Diagnostic Result */
#spw-diag-result {
    text-align: center;
    background: #fdfdfd;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    width: 100%;
}

.spw-result-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

#spw-result-title {
    color: #e74c3c; /* Alert Red */
    font-size: 20px;
    margin: 0 0 10px 0;
}

#spw-result-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spw-diag-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 11px;
    color: #aaa;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MAINTENANCE SCHEDULE STYLES --- */

.spw-maint-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.spw-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #7f8c8d;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px; /* Overlap border */
    transition: all 0.2s;
}

.spw-tab-btn:hover {
    color: #2c3e50;
}

.spw-tab-btn.active {
    color: #27ae60;
    border-bottom-color: #27ae60;
    font-weight: 700;
}

.spw-season-list {
    display: none;
}

.spw-season-list.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.spw-season-intro {
    background: #eafaf1;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #27ae60;
}

.spw-maint-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.spw-maint-item.checked {
    background: #f9f9f9;
    border-color: #eee;
    opacity: 0.7;
}

.spw-maint-item.checked span {
    text-decoration: line-through;
    color: #aaa;
}

.spw-maint-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.spw-maint-item input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #27ae60;
}

.spw-maint-item span {
    font-size: 15px;
    color: #34495e;
}

/* Mobile responsive for tabs */
@media (max-width: 400px) {
    .spw-maint-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* --- WARRANTY TRACKER STYLES --- */

.spw-grid-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.spw-grid-inputs select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

.spw-tracker-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.spw-tracker-list {
    margin-top: 15px;
}

.spw-track-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.spw-track-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.spw-track-title {
    font-weight: 700;
    color: #2c3e50;
}

.spw-track-date {
    font-size: 12px;
    color: #95a5a6;
}

.spw-track-bar-bg {
    height: 10px;
    background: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.spw-track-fill {
    height: 100%;
    width: 0%;
    transition: width 1s ease;
}

/* Status Colors */
.spw-track-fill.good { background: #27ae60; }
.spw-track-fill.warn { background: #e67e22; }
.spw-track-fill.expired { background: #c0392b; }

.spw-track-status {
    font-size: 12px;
    text-align: right;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 500px) {
    .spw-grid-inputs {
        grid-template-columns: 1fr;
    }
}

/* --- WARRANTY TRACKER V2 (Vertical List) --- */

.spw-warranty-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spw-warr-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #ccc; /* Default neutral border */
}

/* Active State */
.spw-warr-card.active-tracking {
    border-left-color: #27ae60; /* Green active strip */
    background: #fdfdfd;
}

.spw-warr-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.spw-warr-icon {
    font-size: 28px;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.spw-warr-meta h4 {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.spw-meta-desc {
    font-size: 12px;
    color: #95a5a6;
}

/* Form Styles */
.spw-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.spw-field {
    flex: 1;
}

.spw-field label {
    display: block;
    font-size: 11px;
    color: #7f8c8d;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.warr-date-input, .warr-term-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box; /* Fix padding width issues */
}

.spw-btn-sm {
    background: #34495e;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
}

.spw-btn-sm:hover {
    background: #2c3e50;
}

/* Result Styles */
.spw-warr-bar-container {
    height: 10px;
    background: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.spw-warr-bar-fill {
    height: 100%;
    width: 0%;
    transition: width 1s ease;
}

/* Bar Colors */
.spw-warr-bar-fill.good { background: #27ae60; }
.spw-warr-bar-fill.warn { background: #f39c12; }
.spw-warr-bar-fill.expired { background: #c0392b; }

.spw-warr-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.warr-expire-date {
    color: #95a5a6;
    font-weight: normal;
}

/* --- DICTIONARY & MODAL STYLES (FINAL) --- */

/* 1. Floating Trigger Button */
#spw-dict-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #f1c40f; /* Solar Yellow */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    cursor: pointer;
    z-index: 99999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#spw-dict-trigger:hover {
    transform: scale(1.1);
}

/* 2. Modal Overlay */
#spw-dict-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 100000;
}

.spw-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.85); /* Dark Blue Blur */
    backdrop-filter: blur(5px);
}

/* 3. Modal Content */
.spw-modal-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    height: 80vh; /* Fixed height for scrolling */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#spw-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    z-index: 10;
}

#spw-modal-close:hover { color: #e74c3c; }

/* 4. Dictionary Layout (Shared by Inline & Modal) */
.spw-dict-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spw-dict-wrapper.inline-mode {
    height: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    max-height: 500px;
}

.spw-dict-header {
    background: #f9f9f9;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.spw-dict-header h3 { margin: 0 0 15px 0; color: #2c3e50; }

#spw-dict-search {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.spw-dict-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
    background: #fff;
}

/* 5. Term Items */
.spw-term-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.spw-term-item:last-child { border-bottom: none; }

.spw-term-title {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 5px;
}

.spw-term-def {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

#spw-no-results {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}

/* Scrollbar beautification */
.spw-dict-body::-webkit-scrollbar { width: 8px; }
.spw-dict-body::-webkit-scrollbar-track { background: #f1f1f1; }
.spw-dict-body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.spw-dict-body::-webkit-scrollbar-thumb:hover { background: #aaa; }

/* --- DICTIONARY MASTER STYLES --- */

/* 1. Inline Search Widget */
.spw-dict-inline-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.spw-dict-inline-header h3 { margin-top: 0; color: #2c3e50; }
.spw-dict-inline-header p { color: #7f8c8d; margin-bottom: 20px; }

.spw-inline-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#spw-inline-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

#spw-inline-go {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

#spw-inline-go:hover { background: #219150; }

/* 2. Pin Toggle Switch */
.spw-inline-options {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.spw-pin-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.spw-pin-toggle input { display: none; }

.spw-pin-slider {
    width: 36px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    position: relative;
    margin-right: 10px;
    transition: .3s;
}

.spw-pin-slider:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: .3s;
}

input:checked + .spw-pin-slider { background-color: #f1c40f; }
input:checked + .spw-pin-slider:before { transform: translateX(16px); }

/* 3. Floating Trigger */
#spw-dict-trigger {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 55px; height: 55px;
    background: #f1c40f;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    line-height: 58px; /* Optical centering for emoji */
    font-size: 26px;
    cursor: pointer;
    z-index: 99999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#spw-dict-trigger:hover { transform: scale(1.1); }

/* 4. Modal Styles */
#spw-dict-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 100000;
}

.spw-modal-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(4px);
}

.spw-modal-content {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; max-width: 600px;
    height: 85vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
    overflow: hidden;
}

.spw-modal-header {
    padding: 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
}

.spw-modal-header h3 { margin: 0; font-size: 20px; color: #2c3e50; }

#spw-modal-close {
    background: none; border: none; font-size: 28px;
    color: #999; cursor: pointer; line-height: 1;
}
#spw-modal-close:hover { color: #e74c3c; }

.spw-modal-search-row {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

#spw-modal-input {
    width: 100%; padding: 12px;
    border: 1px solid #ddd; border-radius: 6px; font-size: 16px;
    box-sizing: border-box;
}

.spw-dict-body {
    flex: 1; overflow-y: auto; padding: 0 20px;
}

.spw-term-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.spw-term-item:last-child { border-bottom: none; }

.spw-term-title { font-size: 18px; font-weight: 700; color: #27ae60; margin-bottom: 5px; }
.spw-term-def { color: #555; line-height: 1.6; }

/* Scrollbar */
.spw-dict-body::-webkit-scrollbar { width: 8px; }
.spw-dict-body::-webkit-scrollbar-track { background: #fff; }
.spw-dict-body::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }

/* --- AERO GLASS BADGE STYLES (NEW) --- */

.spw-glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    border-radius: 50px; /* Pill shape */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-family: sans-serif;
    max-width: 100%;
}

/* Light Theme (Glass) */
.spw-badge-light {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #2c3e50;
}

.spw-badge-light .spw-badge-icon {
    font-size: 20px;
}

/* Dark Theme (Glass) */
.spw-badge-dark {
    background: rgba(44, 62, 80, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
}

.spw-badge-dark .spw-badge-icon {
    font-size: 20px;
    filter: brightness(1.2);
}

.spw-badge-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Compact Toggle Switch inside Badge */
.spw-badge-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    margin-bottom: 0; /* Reset global label margins */
}

.spw-badge-switch input { 
    opacity: 0; width: 0; height: 0; 
}

.spw-badge-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.spw-badge-slider:before {
    position: absolute;
    content: "";
    height: 14px; width: 14px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* Active Colors */
input:checked + .spw-badge-slider {
    background-color: #f1c40f; /* Solar Yellow */
}

input:checked + .spw-badge-slider:before {
    transform: translateX(14px);
}

/* Hover Effect for Badge */
.spw-glass-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* --- CONTENT LOCKER STYLES --- */

.spw-locker-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.spw-locker-wrapper.unlocked {
    border-color: #48bb78; /* Green border when unlocked */
    background: #f0fff4;
}

/* The Gate (Form Side) */
.spw-locker-gate {
    padding: 30px;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.spw-gate-message h3 {
    margin-top: 0;
    color: #2d3748;
    font-size: 1.4rem;
}
.spw-gate-message p { color: #718096; }

.spw-mailerlite-container {
    margin: 20px auto;
    max-width: 400px; /* Keep form contained */
}

.spw-privacy-note {
    margin-top: 15px;
    color: #a0aec0;
    font-size: 0.85rem;
}

/* The Content (Download Side) */
.spw-locker-content {
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.spw-unlocked-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.spw-unlock-icon {
    font-size: 3rem;
    color: #48bb78;
    background: #c6f6d5;
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
}

.spw-btn-download {
    background: #2b6cb0;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spw-btn-download:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3);
    color: white;
}

/* --- MY DOWNLOADS LIBRARY GRID --- */
.spw-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.spw-lib-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.spw-lib-thumb {
    height: 150px;
    background-color: #edf2f7;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-size: 3rem;
}

.spw-lib-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.spw-lib-info h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #2d3748;
}

.spw-lib-info .spw-btn-sm {
    margin-top: auto;
    text-align: center;
    background: #edf2f7;
    color: #4a5568;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.spw-lib-info .spw-btn-sm:hover {
    background: #e2e8f0;
    color: #2d3748;
}

/* --- SMART FORM WRAPPER (Generic) --- */
.spw-smart-form-wrapper {
    width: 100%;
    position: relative;
    min-height: 120px;
}

.spw-form-container {
    width: 100%;
}

.spw-subscriber-view {
    text-align: center;
    padding: 20px;
    background: #fdfdfd;
    border: 2px dashed #27ae60;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 150px;
}

.spw-sub-inner {
    max-width: 100%;
}

/* Fluid Text Scaling */
.spw-fluid-text {
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    /* Scales between 1.1rem and 1.5rem depending on container width */
    font-size: clamp(1.1rem, 2.5vw, 1.5rem); 
    line-height: 1.2;
}

.spw-fluid-sub {
    margin: 5px 0 15px 0;
    color: #7f8c8d;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.spw-fluid-btn {
    display: inline-block;
    padding: 8px 15px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    white-space: nowrap;
    border: 1px solid #27ae60;
    color: #27ae60;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.spw-fluid-btn:hover {
    background: #27ae60;
    color: white;
}

/* --- LOCKER & LIBRARY STYLES --- */
.spw-locker-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.spw-locker-wrapper.unlocked {
    border-color: #48bb78;
    background: #f0fff4;
}

.spw-locker-gate, .spw-locker-content { padding: 30px; text-align: center; }
.spw-gate-message h3 { margin-top: 0; color: #2d3748; }
.spw-privacy-note { margin-top: 15px; color: #a0aec0; font-size: 0.85rem; }

.spw-unlock-icon {
    font-size: 3rem; color: #48bb78; background: #c6f6d5;
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
}

.spw-btn-download {
    background: #2b6cb0; color: white; padding: 12px 25px;
    border-radius: 50px; font-weight: bold; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s;
}
.spw-btn-download:hover { transform: translateY(-2px); background: #2c5282; color: white; }

/* Library Grid */
.spw-library-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.spw-lib-item {
    background: white; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden;
    display: flex; flex-direction: column;
}
.spw-lib-thumb {
    height: 140px; background: #edf2f7; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #cbd5e0;
}
.spw-lib-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.spw-lib-info h4 { margin: 0 0 10px 0; font-size: 1rem; color: #2d3748; }
.spw-lib-info .spw-btn-sm {
    margin-top: auto; text-align: center; background: #edf2f7; color: #4a5568;
    text-decoration: none; padding: 6px; border-radius: 4px; font-size: 0.85rem; font-weight: 600;
}
.spw-lib-info .spw-btn-sm:hover { background: #e2e8f0; color: #2d3748; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- MY DOWNLOADS DASHBOARD (ENHANCED) --- */

.spw-dashboard-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.spw-dash-title {
    margin: 0;
    font-size: 1.8rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spw-dash-title i {
    color: #f1c40f; /* Solar Gold */
}

.spw-empty-message {
    background: #fdfdfd;
    border-left: 4px solid #f1c40f;
    padding: 20px;
    margin-bottom: 30px;
    color: #555;
    font-size: 1.05rem;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.spw-empty-message em {
    font-style: italic;
    color: #7f8c8d;
}

/* --- GHOST CARDS (Skeleton UI) --- */
.spw-library-grid.ghost-mode {
    opacity: 0.7;
    pointer-events: none; /* Can't click ghosts */
}

.spw-ghost-card {
    background: #fff;
    border: 2px dashed #e2e8f0; /* Dashed border implies placeholder */
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 240px;
}

.spw-ghost-thumb {
    height: 120px;
    background: #f7f9fc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #e2e8f0;
}

.spw-ghost-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spw-skeleton-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    width: 100%;
}

.spw-skeleton-line.short { width: 60%; }
.spw-skeleton-line.btn { 
    height: 35px; 
    width: 100%; 
    margin-top: auto; 
    border-radius: 4px;
    background: #edf2f7;
}

/* Animation for the ghosts to feel "alive" */
@keyframes pulse-gray {
    0% { background-color: #f7f9fc; }
    50% { background-color: #edf2f7; }
    100% { background-color: #f7f9fc; }
}

.spw-ghost-thumb, .spw-skeleton-line {
    animation: pulse-gray 2s infinite ease-in-out;
}

/* --- BUTTON STYLES (Based on Variables) --- */
.btn-style-gold-dark { background: #f1c40f; color: #222; }
.btn-style-gold-dark:hover { background: #d4ac0d; color: #000; }

.btn-style-gold-green { background: #f1c40f; color: #067864; }
.btn-style-gold-green:hover { background: #d4ac0d; color: #045c4c; }

.btn-style-green-white { background: #12a062; color: #ffffff; }
.btn-style-green-white:hover { background: #0e8550; color: #fff; }

.btn-style-teal-light { background: #067864; color: #f8f9fa; }
.btn-style-teal-light:hover { background: #036761; color: #fff; }

/* --- STARTER KIT CAROUSEL --- */
.spw-starter-kit-container {
    padding: 20px 0;
    margin-bottom: 40px;
}

.spw-kit-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spw-kit-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.spw-kit-thumb.no-img {
    background: #f8f9fa;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: #ccc;
}

.spw-kit-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.spw-kit-body h4 {
    margin: 0 0 10px 0;
    color: #222;
    font-size: 1.1rem;
}

.spw-kit-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.spw-kit-btn {
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: block;
    transition: transform 0.2s;
}
.spw-kit-btn:hover { transform: translateY(-2px); }

/* Swiper Fixes */
.swiper-pagination { position: relative; margin-top: 20px; }
.swiper-button-next, .swiper-button-prev { color: #f1c40f; }

/* --- SMART FORM WRAPPER --- */
.spw-smart-form-wrapper { width: 100%; position: relative; min-height: 120px; }
.spw-form-container { width: 100%; }
.spw-subscriber-view {
    text-align: center; padding: 20px; background: #fdfdfd; border: 2px dashed #27ae60;
    border-radius: 8px; width: 100%; box-sizing: border-box;
    display: flex; justify-content: center; align-items: center;
    height: 100%; min-height: 150px;
}
.spw-sub-inner { max-width: 100%; }
.spw-fluid-text { margin: 0; color: #2c3e50; font-weight: 700; font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.2; }
.spw-fluid-sub { margin: 5px 0 15px 0; color: #7f8c8d; font-size: clamp(0.85rem, 2vw, 1rem); }
.spw-fluid-btn {
    display: inline-block; padding: 8px 15px; font-size: clamp(0.8rem, 2vw, 0.9rem);
    white-space: nowrap; border: 1px solid #27ae60; color: #27ae60;
    border-radius: 4px; text-decoration: none; transition: all 0.2s;
}
.spw-fluid-btn:hover { background: #27ae60; color: white; }

/* --- LOCKER & LIBRARY STYLES --- */
.spw-locker-wrapper {
    border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #fff;
    margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease;
}
.spw-locker-wrapper.unlocked { border-color: #48bb78; background: #f0fff4; }
.spw-locker-gate, .spw-locker-content { padding: 30px; text-align: center; }
.spw-gate-message h3 { margin-top: 0; color: #2d3748; }
.spw-privacy-note { margin-top: 15px; color: #a0aec0; font-size: 0.85rem; }
.spw-unlock-icon {
    font-size: 3rem; color: #48bb78; background: #c6f6d5; width: 80px; height: 80px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
}
.spw-btn-download {
    background: #2b6cb0; color: white; padding: 12px 25px; border-radius: 50px;
    font-weight: bold; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s;
}
.spw-btn-download:hover { transform: translateY(-2px); background: #2c5282; color: white; }

/* --- DASHBOARD HEADER --- */
.spw-dashboard-header {
    margin-bottom: 30px; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.spw-dash-title { margin: 0; font-size: 1.8rem; color: #2c3e50; display: flex; align-items: center; gap: 12px; }
.spw-dash-title i { color: #f1c40f; }
.spw-dash-counter {
    background: #222; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
}

/* --- LIBRARY GRID --- */
.spw-library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.spw-lib-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s; }
.spw-lib-item.locked { border-style: dashed; opacity: 0.8; }
.spw-lib-thumb {
    height: 140px; background: #edf2f7; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #cbd5e0;
}
.spw-lib-thumb.ghost { color: #a0aec0; background: #f7fafc; }
.spw-lib-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.spw-lib-info h4 { margin: 0 0 10px 0; font-size: 1rem; color: #2d3748; }

/* Unlocked Button */
.spw-lib-info .spw-btn-sm {
    margin-top: auto; text-align: center; padding: 8px; border-radius: 4px;
    font-size: 0.85rem; font-weight: 600; text-decoration: none;
}

/* Locked Elements */
.spw-blur-title { filter: blur(4px); user-select: none; opacity: 0.5; }
.spw-teaser-text { font-size: 0.85rem; color: #718096; font-style: italic; margin-bottom: 15px; }
.spw-locked-label {
    margin-top: auto; align-self: flex-start; background: #edf2f7; color: #718096;
    padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; text-transform: uppercase; font-weight: 700;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- STARTER KIT SLIDER (HERO STYLE) --- */
.spw-starter-kit-container {
    padding: 30px 0;
    margin-bottom: 50px;
    position: relative;
}

.spw-starter-swiper {
    padding-bottom: 50px !important; /* Space for controls */
}

/* Slide Layout */
.spw-kit-slide-inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

/* Desktop: Side-by-Side */
@media (min-width: 768px) {
    .spw-kit-slide-inner {
        flex-direction: row;
        align-items: stretch;
    }
    .spw-kit-visual {
        flex: 0 0 45%;
        min-height: 100%;
    }
    .spw-kit-content {
        flex: 1;
        padding: 40px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Visual Side */
.spw-kit-visual {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    min-height: 250px; /* Mobile height */
}

.spw-kit-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0;
}

.spw-kit-thumb.no-img {
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: #dfe6ed;
}

/* Content Side */
.spw-kit-content {
    padding: 30px;
    text-align: left;
}

.spw-kit-content h3 {
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: #222;
    line-height: 1.2;
}

.spw-kit-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.spw-kit-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.1rem;
}
.spw-kit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- SLIDER CONTROLS --- */
.spw-slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 40px;
    z-index: 10;
}

.swiper-pagination {
    position: static !important; /* Override default absolute */
    width: auto !important;
}

.swiper-pagination-bullet-active {
    background: #f1c40f !important;
}

.swiper-button-next, .swiper-button-prev {
    position: static !important;
    margin: 0 !important;
    height: 30px;
    width: 30px;
    color: #2c3e50 !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

/* Play Button */
.spw-autoplay-control {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1c40f;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
    pointer-events: none;
}

.spw-autoplay-control.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
    0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(241, 196, 15, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}

/* --- COLLECT BADGE --- */
.spw-locker-wrapper { position: relative; }

.spw-collect-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.spw-collect-badge:hover {
    background: #f1c40f;
    color: #222;
    border-color: #f1c40f;
}

.spw-collect-badge.collected {
    background: #eafaf1;
    color: #27ae60;
    border-color: #27ae60;
    cursor: default;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake-anim {
    animation: shake 0.4s ease-in-out;
}

/* --- COLLECTED OVERLAY STATE --- */
.spw-unlocked-card { position: relative; }

.spw-collected-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.spw-btn-dashboard {
    display: inline-block;
    background: #f1c40f;
    color: #067864; /* Teal text on Gold */
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.spw-btn-dashboard:hover {
    transform: translateY(-2px);
    background: #d4ac0d;
    color: #045c4c;
}

/* Faded background when collected */
.spw-locker-wrapper.is-collected .spw-standard-view {
    transition: opacity 0.5s ease;
}

/* --- BUTTON STYLES --- */
.btn-style-gold-dark { background: #f1c40f; color: #222; }
.btn-style-gold-dark:hover { background: #d4ac0d; color: #000; }
.btn-style-gold-green { background: #f1c40f; color: #067864; }
.btn-style-gold-green:hover { background: #d4ac0d; color: #045c4c; }
.btn-style-green-white { background: #12a062; color: #ffffff; }
.btn-style-green-white:hover { background: #0e8550; color: #fff; }
.btn-style-teal-light { background: #067864; color: #f8f9fa; }
.btn-style-teal-light:hover { background: #036761; color: #fff; }

/* --- STARTER KIT CAROUSEL --- */
.spw-starter-kit-container { padding: 30px 0; margin-bottom: 50px; position: relative; }
.spw-starter-swiper { padding-bottom: 50px !important; }
.spw-kit-slide-inner { background: #fff; border: 1px solid #eee; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; display: flex; flex-direction: column; height: 100%; min-height: 400px; }
@media (min-width: 768px) { .spw-kit-slide-inner { flex-direction: row; align-items: stretch; } .spw-kit-visual { flex: 0 0 45%; min-height: 100%; } .spw-kit-content { flex: 1; padding: 40px !important; display: flex; flex-direction: column; justify-content: center; } }
.spw-kit-visual { background: #f8f9fa; position: relative; overflow: hidden; min-height: 250px; }
.spw-kit-thumb { width: 100%; height: 100%; background-size: cover; background-position: center; position: absolute; top: 0; left: 0; }
.spw-kit-thumb.no-img { display: flex; align-items: center; justify-content: center; font-size: 4rem; color: #dfe6ed; }
.spw-kit-content { padding: 30px; text-align: left; }
.spw-kit-content h3 { font-size: 2rem; margin: 0 0 15px 0; color: #222; line-height: 1.2; }
.spw-kit-desc { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.6; }
.spw-kit-btn { display: inline-block; padding: 15px 35px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; font-size: 1.1rem; }
.spw-kit-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.spw-slider-controls { position: absolute; bottom: 0; left: 0; width: 100%; display: flex; justify-content: center; align-items: center; gap: 20px; height: 40px; z-index: 10; }
.swiper-pagination { position: static !important; width: auto !important; }
.swiper-pagination-bullet-active { background: #f1c40f !important; }
.swiper-button-next, .swiper-button-prev { position: static !important; margin: 0 !important; height: 30px; width: 30px; color: #2c3e50 !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; font-weight: bold; }
.spw-autoplay-control { width: 30px; height: 30px; border-radius: 50%; background: #f1c40f; color: #222; display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; opacity: 0; transform: scale(0.8); transition: all 0.3s; pointer-events: none; }
.spw-autoplay-control.visible { opacity: 1; transform: scale(1); pointer-events: auto; animation: pulse-yellow 2s infinite; }
@keyframes pulse-yellow { 0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(241, 196, 15, 0); } 100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); } }

/* --- SMART FORM WRAPPER --- */
.spw-smart-form-wrapper { width: 100%; position: relative; min-height: 120px; }
.spw-form-container { width: 100%; }
.spw-subscriber-view { text-align: center; padding: 20px; background: #fdfdfd; border: 2px dashed #27ae60; border-radius: 8px; width: 100%; box-sizing: border-box; display: flex; justify-content: center; align-items: center; height: 100%; min-height: 150px; }
.spw-sub-inner { max-width: 100%; }
.spw-fluid-text { margin: 0; color: #2c3e50; font-weight: 700; font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.2; }
.spw-fluid-sub { margin: 5px 0 15px 0; color: #7f8c8d; font-size: clamp(0.85rem, 2vw, 1rem); }
.spw-fluid-btn { display: inline-block; padding: 8px 15px; font-size: clamp(0.8rem, 2vw, 0.9rem); white-space: nowrap; border: 1px solid #27ae60; color: #27ae60; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.spw-fluid-btn:hover { background: #27ae60; color: white; }

/* --- LOCKER & LIBRARY STYLES --- */
.spw-locker-wrapper { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #fff; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.spw-locker-wrapper.unlocked { border-color: #48bb78; background: #f0fff4; }
.spw-locker-gate, .spw-locker-content { padding: 30px; text-align: center; }
.spw-gate-message h3 { margin-top: 0; color: #2d3748; }
.spw-privacy-note { margin-top: 15px; color: #a0aec0; font-size: 0.85rem; }
.spw-unlock-icon { font-size: 3rem; color: #48bb78; background: #c6f6d5; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.spw-btn-download { background: #2b6cb0; color: white; padding: 12px 25px; border-radius: 50px; font-weight: bold; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s; }
.spw-btn-download:hover { transform: translateY(-2px); background: #2c5282; color: white; }

/* --- DASHBOARD --- */
.spw-dashboard-header { margin-bottom: 30px; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.spw-dash-title { margin: 0; font-size: 1.8rem; color: #2c3e50; display: flex; align-items: center; gap: 12px; }
.spw-dash-title i { color: #f1c40f; }
.spw-dash-counter { background: #222; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; }
.spw-library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.spw-lib-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s; }
.spw-lib-item.locked { border-style: dashed; opacity: 0.8; }
.spw-lib-thumb { height: 140px; background: #edf2f7; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #cbd5e0; }
.spw-lib-thumb.ghost { color: #a0aec0; background: #f7fafc; }
.spw-lib-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.spw-lib-info h4 { margin: 0 0 10px 0; font-size: 1rem; color: #2d3748; }
.spw-lib-info .spw-btn-sm { margin-top: auto; text-align: center; padding: 8px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.spw-blur-title { filter: blur(4px); user-select: none; opacity: 0.5; }
.spw-teaser-text { font-size: 0.85rem; color: #718096; font-style: italic; margin-bottom: 15px; }
.spw-locked-label { margin-top: auto; align-self: flex-start; background: #edf2f7; color: #718096; padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Rich Text Fixes for Slider --- */
.spw-kit-desc p {
    margin: 0 0 15px 0; /* Clean separation between points */
}
.spw-kit-desc p:last-child {
    margin-bottom: 0;
}

/* --- BUTTON STYLES --- */
.btn-style-gold-dark { background: #f1c40f; color: #222; }
.btn-style-gold-dark:hover { background: #d4ac0d; color: #000; }
.btn-style-gold-green { background: #f1c40f; color: #067864; }
.btn-style-gold-green:hover { background: #d4ac0d; color: #045c4c; }
.btn-style-green-white { background: #12a062; color: #ffffff; }
.btn-style-green-white:hover { background: #0e8550; color: #fff; }
.btn-style-teal-light { background: #067864; color: #f8f9fa; }
.btn-style-teal-light:hover { background: #036761; color: #fff; }

/* --- STARTER KIT CAROUSEL --- */
.spw-starter-kit-container { padding: 30px 0; margin-bottom: 50px; position: relative; }
.spw-starter-swiper { padding-bottom: 50px !important; }
.spw-kit-slide-inner { background: #fff; border: 1px solid #eee; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; display: flex; flex-direction: column; height: 100%; min-height: 400px; }
@media (min-width: 768px) { .spw-kit-slide-inner { flex-direction: row; align-items: stretch; } .spw-kit-visual { flex: 0 0 45%; min-height: 100%; } .spw-kit-content { flex: 1; padding: 40px !important; display: flex; flex-direction: column; justify-content: center; } }
.spw-kit-visual { background: #f8f9fa; position: relative; overflow: hidden; min-height: 250px; }

/* FIXED: Image Containment */
.spw-kit-thumb { 
    width: 100%; height: 100%; 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center; 
    position: absolute; top: 0; left: 0; 
}

.spw-kit-thumb.no-img { display: flex; align-items: center; justify-content: center; font-size: 4rem; color: #dfe6ed; position: static; height: 100%; }
.spw-kit-content { padding: 30px; text-align: left; }
.spw-kit-content h3 { font-size: 2rem; margin: 0 0 15px 0; color: #222; line-height: 1.2; }
.spw-kit-desc { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.6; }
.spw-kit-desc p { margin: 0 0 15px 0; }
.spw-kit-desc p:last-child { margin-bottom: 0; }
.spw-kit-btn { display: inline-block; padding: 15px 35px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; font-size: 1.1rem; }
.spw-kit-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.spw-slider-controls { position: absolute; bottom: 0; left: 0; width: 100%; display: flex; justify-content: center; align-items: center; gap: 20px; height: 40px; z-index: 10; }
.swiper-pagination { position: static !important; width: auto !important; }
.swiper-pagination-bullet-active { background: #f1c40f !important; }
.swiper-button-next, .swiper-button-prev { position: static !important; margin: 0 !important; height: 30px; width: 30px; color: #2c3e50 !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; font-weight: bold; }
.spw-autoplay-control { width: 30px; height: 30px; border-radius: 50%; background: #f1c40f; color: #222; display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; opacity: 0; transform: scale(0.8); transition: all 0.3s; pointer-events: none; }
.spw-autoplay-control.visible { opacity: 1; transform: scale(1); pointer-events: auto; animation: pulse-yellow 2s infinite; }
@keyframes pulse-yellow { 0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(241, 196, 15, 0); } 100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); } }

/* --- SMART FORM WRAPPER --- */
.spw-smart-form-wrapper { width: 100%; position: relative; min-height: 120px; }
.spw-form-container { width: 100%; }
.spw-subscriber-view { text-align: center; padding: 20px; background: #fdfdfd; border: 2px dashed #27ae60; border-radius: 8px; width: 100%; box-sizing: border-box; display: flex; justify-content: center; align-items: center; height: 100%; min-height: 150px; }
.spw-sub-inner { max-width: 100%; }
.spw-fluid-text { margin: 0; color: #2c3e50; font-weight: 700; font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.2; }
.spw-fluid-sub { margin: 5px 0 15px 0; color: #7f8c8d; font-size: clamp(0.85rem, 2vw, 1rem); }
.spw-fluid-btn { display: inline-block; padding: 8px 15px; font-size: clamp(0.8rem, 2vw, 0.9rem); white-space: nowrap; border: 1px solid #27ae60; color: #27ae60; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.spw-fluid-btn:hover { background: #27ae60; color: white; }

/* --- LOCKER & LIBRARY STYLES --- */
.spw-locker-wrapper { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #fff; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s ease; position: relative; }
.spw-locker-wrapper.unlocked { border-color: #48bb78; background: #f0fff4; }
.spw-locker-gate, .spw-locker-content { padding: 30px; text-align: center; }
.spw-gate-message h3 { margin-top: 0; color: #2d3748; }
.spw-privacy-note { margin-top: 15px; color: #a0aec0; font-size: 0.85rem; }

/* Collect Badge */
.spw-collect-badge { position: absolute; top: 15px; right: 15px; background: #fff; border: 1px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: #555; cursor: pointer; z-index: 10; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.spw-collect-badge:hover { background: #f1c40f; color: #222; border-color: #f1c40f; }
.spw-collect-badge.collected { background: #eafaf1; color: #27ae60; border-color: #27ae60; cursor: default; }
@keyframes shake { 0% { transform: translateX(0); } 25% { transform: translateX(-5px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-5px); } 100% { transform: translateX(0); } }
.shake-anim { animation: shake 0.4s ease-in-out; }

/* Unlocked Card Thumbnails */
.spw-unlocked-card { display: flex; flex-direction: column; align-items: center; gap: 15px; position: relative; }
.spw-unlock-icon { font-size: 3rem; color: #48bb78; background: #c6f6d5; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.spw-unlocked-thumb { width: 100%; height: 200px; background-size: contain; background-repeat: no-repeat; background-position: center; margin-bottom: 15px; border-radius: 8px; }

.spw-btn-download { background: #2b6cb0; color: white; padding: 12px 25px; border-radius: 50px; font-weight: bold; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s; }
.spw-btn-download:hover { transform: translateY(-2px); background: #2c5282; color: white; }

/* Collected Overlay */
.spw-collected-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; text-align: center; background: rgba(255, 255, 255, 0.95); padding: 20px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); z-index: 10; }
.spw-btn-dashboard { display: inline-block; background: #f1c40f; color: #067864; padding: 12px 25px; border-radius: 50px; font-weight: 800; text-decoration: none; font-size: 1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.2s; }
.spw-btn-dashboard:hover { transform: translateY(-2px); background: #d4ac0d; color: #045c4c; }
.spw-locker-wrapper.is-collected .spw-standard-view { transition: opacity 0.5s ease; }

/* --- DASHBOARD --- */
.spw-dashboard-header { margin-bottom: 30px; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.spw-dash-title { margin: 0; font-size: 1.8rem; color: #2c3e50; display: flex; align-items: center; gap: 12px; }
.spw-dash-title i { color: #f1c40f; }
.spw-dash-counter { background: #222; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; }
.spw-empty-message { background: #fdfdfd; border-left: 4px solid #f1c40f; padding: 20px; margin-bottom: 30px; color: #555; font-size: 1.05rem; border-radius: 0 4px 4px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.spw-empty-message em { font-style: italic; color: #7f8c8d; }

/* Library Grid */
.spw-library-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.spw-library-grid.ghost-mode { opacity: 0.7; pointer-events: none; }
.spw-lib-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s; }
.spw-lib-item.locked { border-style: dashed; opacity: 0.8; }

/* FIXED: Library Image Containment */
.spw-lib-thumb { 
    height: 160px; 
    background-color: #f7f9fc; 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center; 
    display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #cbd5e0; 
}
.spw-lib-thumb.ghost { color: #a0aec0; background: #f7fafc; }
.spw-lib-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.spw-lib-info h4 { margin: 0 0 10px 0; font-size: 1rem; color: #2d3748; }
.spw-lib-info .spw-btn-sm { margin-top: auto; text-align: center; padding: 8px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.spw-blur-title { filter: blur(4px); user-select: none; opacity: 0.5; }
.spw-teaser-text { font-size: 0.85rem; color: #718096; font-style: italic; margin-bottom: 15px; }
.spw-locked-label { margin-top: auto; align-self: flex-start; background: #edf2f7; color: #718096; padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; }

/* Ghost Animation */
.spw-ghost-card { background: #fff; border: 2px dashed #e2e8f0; border-radius: 8px; padding: 20px; display: flex; flex-direction: column; gap: 15px; min-height: 240px; }
.spw-ghost-thumb { height: 120px; background: #f7f9fc; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #e2e8f0; }
.spw-ghost-lines { display: flex; flex-direction: column; gap: 10px; }
.spw-skeleton-line { height: 12px; background: #e2e8f0; border-radius: 6px; width: 100%; }
.spw-skeleton-line.short { width: 60%; }
.spw-skeleton-line.btn { height: 35px; width: 100%; margin-top: auto; border-radius: 4px; background: #edf2f7; }
@keyframes pulse-gray { 0% { background-color: #f7f9fc; } 50% { background-color: #edf2f7; } 100% { background-color: #f7f9fc; } }
.spw-ghost-thumb, .spw-skeleton-line { animation: pulse-gray 2s infinite ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- STARTER KIT GATE --- */
.spw-kit-gate {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
}

