.post-ad-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}
.post-ad-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}
.page-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.user-info-badge {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.user-info-badge i {
    color: #e91e8c;
    font-size: 16px;
}

/* ─── SKOKKA-STYLE 3-TRACK PROGRESS BAR ─── */
.steps-progress-bar {
    margin-bottom: 30px;
}
.step-progress-tracks {
    display: flex;
    gap: 6px;
}
.step-track {
    flex: 1;
    height: 5px;
    background: #e2e8f0;
    border-radius: 4px;
    transition: background 0.3s;
}

/* ─── STEP BADGE & TITLE ─── */
.step-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.step-page-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}
.step-counter-badge {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
}
.edit-ad-link {
    font-size: 13px;
    color: #e91e8c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}
.edit-ad-link:hover { text-decoration: underline; }

/* ─── AD SUMMARY PREVIEW BAR ─── */
.ad-summary-preview {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ad-summary-preview strong { font-weight: 700; color: #111827; }
.ad-summary-preview span { color: #6b7280; font-size: 12px; }

/* ─── PHOTO UPLOAD ─── */
.skokka-upload-box {
    background: #fff;
    border: 2px dashed #fbcfe8;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.skokka-upload-box:hover {
    border-color: #e91e8c;
    background: #fdf2f8;
}

/* ─── FREE ADS NOTICE ─── */
.free-ads-notice {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #0369a1;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── NEED HELP CARD ─── */
.need-help-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 20px;
}
.need-help-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.need-help-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}
.need-help-links {
    display: flex;
    gap: 16px;
}
.help-link-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #16a34a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.help-link-wa i { font-size: 16px; }
.help-link-tg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.help-link-tg i { font-size: 16px; }

/* ─── PROMOTE LAYOUT (sidebar) ─── */
.promote-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.promote-main {
    flex: 1;
    min-width: 0;
}
.promote-sidebar {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    padding-top: 60px;
}
.promote-sidebar-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}
.publish-free-link {
    display: inline-block;
    color: #e91e8c;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.publish-free-link:hover { text-decoration: underline; }

/* Forms & Cards */
.form-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.form-section-header {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-section-header i {
    color: #e91e8c;
}
.form-section-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: -12px;
    margin-bottom: 24px;
}
.guest-register-banner {
    background: #fdf2f8;
    border: 1px dashed #fbcfe8;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}
.guest-register-banner h4 {
    color: #be185d;
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
}
.guest-register-banner p {
    font-size: 12px;
    color: #9d174d;
    margin: 0;
}

/* Switch Styles */
.switches-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.switch-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.switch-container {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}
.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}
.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
.switch-container input:checked + .switch-slider {
    background-color: #e91e8c;
}
.switch-container input:checked + .switch-slider:before {
    transform: translateX(24px);
}
.switch-label {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

/* Upload Style */
.drag-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    display: block;
    transition: all 0.2s;
}
.drag-upload-box:hover {
    border-color: #e91e8c;
    background: #fdf2f8;
}
.upload-icon {
    font-size: 32px;
    color: #94a3b8;
    margin-bottom: 12px;
}
.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 4px 0;
}
.upload-rules {
    font-size: 11px;
    color: #94a3b8;
}
.preview-img-container {
    position: relative;
    width: 140px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid #cbd5e1;
}
.preview-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.remove-preview-btn {
    position: absolute;
    top: 6px; right: 6px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.gallery-img-preview {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}
.gallery-img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Grid Checkbox */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}
.checkbox-tag-label {
    display: block;
    cursor: pointer;
}
.checkbox-tag-label input {
    display: none;
}
.checkbox-tag-text {
    display: block;
    text-align: center;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 550;
    color: #475569;
    background: #fff;
    transition: all 0.2s;
}
.checkbox-tag-label input:checked + .checkbox-tag-text {
    background: #e91e8c;
    border-color: #e91e8c;
    color: #fff;
}

/* Promo visibility cards */
.coupon-box {
    background: #f1f5f9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.promo-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.promo-option-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}
.promo-option-card:hover {
    border-color: #cbd5e1;
}
.promo-option-card.active {
    border-color: #e91e8c;
    background: #fffdfa;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.05);
}
.promo-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.classic-badge { background: #e2e8f0; color: #475569; }
.flash-badge { background: #fdf2f8; color: #db2777; border: 1px solid #fbcfe8; }
.top-badge { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }

.promo-option-details h4 {
    margin: 8px 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.promo-option-details p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    max-width: 550px;
    line-height: 1.5;
}
.promo-option-price {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}
.promo-option-card.active .promo-option-price {
    color: #e91e8c;
}

/* Schedule Panel Styles */
.top-schedule-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-top: 15px;
    margin-bottom: 25px;
}
.schedule-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.schedule-subtitle {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 20px;
}
.time-segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}
.time-segment-card {
    cursor: pointer;
    display: block;
}
.time-segment-card input {
    display: none;
}
.time-segment-inner {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    text-align: center;
    transition: all 0.2s;
}
.time-segment-inner:hover {
    border-color: #94a3b8;
}
.segment-icon {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.segment-name {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}
.segment-hours {
    font-size: 10px;
    color: #64748b;
}
.time-segment-card input:checked + .time-segment-inner {
    border-color: #e91e8c;
    background: #fdf2f8;
}
.time-segment-card input:checked + .time-segment-inner .segment-icon {
    color: #e91e8c;
}

.publish-section {
    text-align: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    margin-top: 20px;
}
.publish-section p {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 15px;
}

/* Steps Transition */
.ad-step-content {
    display: none;
}
.ad-step-content.active {
    display: block;
}
.action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

/* Photos disclaimer */
.photos-disclaimer {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #0369a1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.photos-disclaimer i { color: #0ea5e9; }

@media (max-width: 768px) {
    .promote-layout {
        flex-direction: column;
    }
    .promote-sidebar {
        width: 100%;
        padding-top: 0;
    }
}

.post-ad-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}
.page-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.user-info-badge {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}
.user-info-badge i {
    color: #e91e8c;
    font-size: 16px;
}

/* Progress Header */
.steps-progress-bar {
    position: relative;
    margin-bottom: 40px;
}
.step-progress-track {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}
.step-progress-fill {
    height: 100%;
    background: #e91e8c;
    transition: width 0.3s ease;
}
.steps-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #cbd5e1;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}
.step-text {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-top: 8px;
    transition: all 0.3s;
}
.step-indicator.active .step-num {
    border-color: #e91e8c;
    background: #e91e8c;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.2);
}
.step-indicator.active .step-text {
    color: #e91e8c;
}
.step-indicator.completed .step-num {
    border-color: #10b981;
    background: #10b981;
    color: #fff;
}
.step-indicator.completed .step-text {
    color: #10b981;
}

/* Forms & Cards */
.form-section-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.form-section-header {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-section-header i {
    color: #e91e8c;
}
.form-section-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: -12px;
    margin-bottom: 24px;
}
.guest-register-banner {
    background: #fdf2f8;
    border: 1px dashed #fbcfe8;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}
.guest-register-banner h4 {
    color: #be185d;
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
}
.guest-register-banner p {
    font-size: 12px;
    color: #9d174d;
    margin: 0;
}

/* Switch Styles (YES/NO Toggles) */
.switches-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.switch-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.switch-container {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}
.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}
.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
.switch-container input:checked + .switch-slider {
    background-color: #e91e8c;
}
.switch-container input:checked + .switch-slider:before {
    transform: translateX(24px);
}
.switch-label {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

/* Upload Style */
.drag-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    display: block;
    transition: all 0.2s;
}
.drag-upload-box:hover {
    border-color: #e91e8c;
    background: #fdf2f8;
}
.upload-icon {
    font-size: 32px;
    color: #94a3b8;
    margin-bottom: 12px;
}
.upload-title {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 4px 0;
}
.upload-rules {
    font-size: 11px;
    color: #94a3b8;
}
.preview-img-container {
    position: relative;
    width: 140px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid #cbd5e1;
}
.preview-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.remove-preview-btn {
    position: absolute;
    top: 6px; right: 6px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.gallery-img-preview {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}
.gallery-img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Grid Checkbox */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}
.checkbox-tag-label {
    display: block;
    cursor: pointer;
}
.checkbox-tag-label input {
    display: none;
}
.checkbox-tag-text {
    display: block;
    text-align: center;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 550;
    color: #475569;
    background: #fff;
    transition: all 0.2s;
}
.checkbox-tag-label input:checked + .checkbox-tag-text {
    background: #e91e8c;
    border-color: #e91e8c;
    color: #fff;
}

/* Promo visibility cards */
.coupon-box {
    background: #f1f5f9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.promo-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.promo-option-card {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}
.promo-option-card:hover {
    border-color: #cbd5e1;
}
.promo-option-card.active {
    border-color: #e91e8c;
    background: #fffdfa;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.05);
}
.promo-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.classic-badge { background: #e2e8f0; color: #475569; }
.flash-badge { background: #fdf2f8; color: #db2777; border: 1px solid #fbcfe8; }
.top-badge { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }

.promo-option-details h4 {
    margin: 8px 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.promo-option-details p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    max-width: 550px;
    line-height: 1.5;
}
.promo-option-price {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}
.promo-option-card.active .promo-option-price {
    color: #e91e8c;
}

/* Schedule Panel Styles */
.top-schedule-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-top: 15px;
    margin-bottom: 25px;
}
.schedule-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.schedule-subtitle {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 20px;
}
.time-segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}
.time-segment-card {
    cursor: pointer;
    display: block;
}
.time-segment-card input {
    display: none;
}
.time-segment-inner {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    text-align: center;
    transition: all 0.2s;
}
.time-segment-inner:hover {
    border-color: #94a3b8;
}
.segment-icon {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.segment-name {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}
.segment-hours {
    font-size: 10px;
    color: #64748b;
}
.time-segment-card input:checked + .time-segment-inner {
    border-color: #e91e8c;
    background: #fdf2f8;
}
.time-segment-card input:checked + .time-segment-inner .segment-icon {
    color: #e91e8c;
}

.publish-section {
    text-align: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    margin-top: 20px;
}
.publish-section p {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 15px;
}

/* Steps Transition */
.ad-step-content {
    display: none;
}
.ad-step-content.active {
    display: block;
}
.action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

/* CUSTOM HELPERS EXTRACTED FROM INLINE STYLING */
.accent-success {
    accent-color: #16a34a;
}
.accent-telegram {
    accent-color: #0088cc;
}
.auth-photos-banner {
    background: #fdf2f8;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #fbcfe8;
    margin-bottom: 20px;
}
.auth-photos-label {
    color: #be185d;
    font-weight: 600;
    font-size: 12px;
}
.gallery-upload-icon {
    font-size: 36px;
    color: #cbd5e1;
}
.gallery-upload-title {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 8px;
}
.btn-step-2-submit {
    border-radius: 30px;
    font-size: 16px;
    padding: 16px;
}
.btn-publish-submit {
    display: inline-flex;
    width: auto;
    padding: 15px 40px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .wizard-steps {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .wizard-step {
        flex-shrink: 0;
    }
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
    }
    .action-footer {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .action-footer button, .action-footer a {
        width: 100%;
        text-align: center;
    }
}

