.ss-editor-block {
    padding: 24px;
    border: 2px dashed #FFD700;
    background: #14161a;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.ss-editor-block h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
}
.ss-editor-block p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.ss-block {
    box-sizing: border-box;
    color: #2C3E50;
    font-family: "Poppins", system-ui, sans-serif;
    line-height: 1.62;
}
.ss-block * {
    box-sizing: border-box;
}

/* Frontend Styles */
.ss-install-section {
    padding: 80px 0;
    border-top: 1px solid #ECEDEF;
    background: #fff;
}
.ss-install-section .ss-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.ss-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 24px;
}
@media (max-width: 700px) {
    .ss-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
.ss-step {
    background: #fff;
    border: 1px solid #E2E4E7;
    border-radius: 14px;
    padding: 24px 22px;
    transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s cubic-bezier(.2,.7,.3,1);
}
.ss-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -12px rgba(20,22,26,.18);
}
.ss-step .n {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #FFD700;
    color: #000;
    font-weight: 800;
    font-size: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.ss-step .n img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.ss-media-upload {
    margin-bottom: 18px;
}
.ss-media-preview-img {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 8px 0;
    border: 1px solid #E2E4E7;
    border-radius: 8px;
}
.ss-editor-video-link {
    display: inline-block;
    margin-top: 10px;
    color: #0056b3;
    font-size: 14px;
    text-decoration: underline;
}
.ss-step h4 {
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 800;
    color: #14161a;
}
.ss-step p {
    font-size: 14px;
    color: #51606e;
    margin: 0;
    line-height: 1.62;
}
.ss-install-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #F0B800;
    margin-bottom: 12px;
}
.ss-install-section .eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: #FFD700;
}
.ss-install-section h2 {
    font-size: clamp(23px, 2.8vw, 31px);
    margin: 0;
    font-weight: 800;
    color: #14161a;
}
.ss-install-edit-mode h2,
.ss-install-edit-mode .eyebrow,
.ss-install-edit-mode .ss-step h4,
.ss-install-edit-mode .ss-step p {
    border: 1px dashed rgba(0,0,0,0.1);
    padding: 2px;
    display: block;
}

@media (max-width: 640px) {
    .ss-install-section {
        padding: 48px 0 !important;
    }
    .ss-install-section .ss-wrap {
        padding: 0 16px !important;
    }
    .ss-steps {
        gap: 14px !important;
        margin-top: 18px !important;
    }
    .ss-step {
        padding: 18px !important;
    }
}
