:root {
    --zyne-primary: #5f7adb;
    --zyne-primary-dark: #536bc8;
    --zyne-text: #050505;
    --zyne-white: #ffffff;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: var(--zyne-text);
    font-family: Arial, Helvetica, sans-serif;
}

.zyne-app {
    width: 100%;
    min-height: 100dvh;
    position: relative;
    padding-bottom: 105px;
}

.zyne-topbar {
    width: 100%;
    height: 86px;
    padding: 18px 20px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.zyne-user-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zyne-user-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #d9d9d9;
    flex-shrink: 0;
}

    .zyne-user-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.zyne-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    padding-top: 8px;
}

    .zyne-user-info strong {
        font-size: 1.15rem;
        font-weight: 500;
        color: #000;
    }

    .zyne-user-info span {
        margin-top: 4px;
        font-size: 0.85rem;
        color: #000;
    }

.zyne-top-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.zyne-icon-button {
    border: 0;
    background: transparent;
    padding: 0;
    color: #000;
    text-decoration: none;
    font-size: 2.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .zyne-icon-button:hover {
        color: var(--zyne-primary);
    }

.zyne-main-content {
    width: 100%;
    padding: 0 20px;
}

.zyne-page-title {
    margin: 0;
    color: var(--zyne-primary);
    font-size: 1.75rem;
    font-weight: 800;
}

.zyne-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: min(390px, calc(100% - 26px));
    height: 62px;
    background: rgba(95, 122, 219, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 4px 6px;
    box-shadow: 0 8px 18px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.25);
    z-index: 999;
}

.zyne-nav-item {
    height: 52px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .2px;
    position: relative;
}

    .zyne-nav-item i {
        font-size: 1.38rem;
        line-height: 1;
        margin-bottom: 1px;
    }

    .zyne-nav-item span {
        line-height: 1;
    }

    .zyne-nav-item.active::after {
        content: "";
        position: absolute;
        bottom: 2px;
        width: 26px;
        height: 4px;
        border-radius: 50px;
        background: #fff;
    }

    .zyne-nav-item:hover {
        color: #fff;
    }

    .zyne-nav-item:hover {
        color: #fff;
        transform: translateY(-1px);
    }

@media (max-width: 430px) {
    .zyne-topbar {
        height: 82px;
        padding: 18px 18px 8px;
    }

    .zyne-user-photo {
        width: 50px;
        height: 50px;
    }

    .zyne-user-info strong {
        font-size: 1rem;
    }

    .zyne-user-info span {
        font-size: 0.8rem;
    }

    .zyne-icon-button {
        font-size: 2rem;
    }

    .zyne-top-actions {
        gap: 18px;
    }

    .zyne-main-content {
        padding: 0 20px;
    }

    .zyne-bottom-nav {
        width: calc(100% - 18px);
        height: 60px;
        border-radius: 16px;
    }

    .zyne-nav-item i {
        font-size: 1.28rem;
    }

    .zyne-nav-item {
        font-size: .54rem;
    }
}

.zyne-menu-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .zyne-menu-modal.show {
        opacity: 1;
        visibility: visible;
    }

.zyne-menu-box {
    width: min(700px, 100%);
    min-height: 430px;
    border-radius: 18px;
    padding: 18px 90px 46px;
    position: relative;
    background: rgba(190, 190, 190, .58);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    border: 1px solid rgba(255, 255, 255, .38);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .45);
}

    .zyne-menu-box h3 {
        margin: 0 0 48px;
        text-align: center;
        color: #000;
        font-size: 1rem;
        font-weight: 500;
    }

.zyne-menu-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #000;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.zyne-menu-option {
    width: 100%;
    height: 54px;
    margin-bottom: 30px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    color: #000;
    text-decoration: none;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    font-size: 1rem;
    font-weight: 800;
    transition: .2s ease;
}

    .zyne-menu-option i {
        font-size: 2rem;
        justify-self: center;
    }

    .zyne-menu-option span {
        text-align: center;
    }

    .zyne-menu-option:hover {
        color: #000;
        background: #fff;
        transform: translateY(-1px);
    }

.zyne-menu-form {
    margin: 0;
}

.zyne-menu-logout {
    cursor: pointer;
}

@media (max-width: 768px) {
    .zyne-menu-box {
        width: 100%;
        min-height: 390px;
        padding: 18px 26px 34px;
    }

        .zyne-menu-box h3 {
            margin-bottom: 42px;
        }

    .zyne-menu-option {
        height: 52px;
        margin-bottom: 26px;
        grid-template-columns: 48px 1fr 48px;
        font-size: .9rem;
    }

        .zyne-menu-option i {
            font-size: 1.65rem;
        }
}


.zyne-toast {
    position: fixed;
    top: calc(20px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    z-index: 5000;
    width: min(420px, calc(100% - 32px));
    min-height: 54px;
    display: grid;
    grid-template-columns: 42px 1fr 32px;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: zyneToastIn .28s ease forwards;
}

.zyne-toast-success {
    background: rgba(34, 197, 94, .88);
}

.zyne-toast-error {
    background: rgba(220, 53, 69, .9);
}

.zyne-toast-icon {
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zyne-toast-text {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.25;
}

.zyne-toast-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.zyne-toast.hide {
    animation: zyneToastOut .25s ease forwards;
}

@keyframes zyneToastIn {
    from {
        opacity: 0;
        transform: translate(-50%, -18px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes zyneToastOut {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -18px);
    }
}

.zyne-nav-item {
    position: relative;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: .2s ease;
}

    .zyne-nav-item i,
    .zyne-nav-item span {
        transition: .2s ease;
    }

    .zyne-nav-item.active {
        color: #ffffff;
    }

        .zyne-nav-item.active i {
            transform: translateY(-1px) scale(1.08);
        }

        .zyne-nav-item.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 26px;
            height: 4px;
            border-radius: 20px;
            background: #ffffff;
        }


.zyne-msg-button {
    position: relative;
}

.zyne-badge-msg {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff3b30;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255,59,48,.35);
    border: 2px solid #fff;
}

.zyne-prof-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #ffc107;
    font-size: .86rem;
    margin-top: 6px;
}

    .zyne-prof-stars span {
        margin-left: 5px;
        color: #7b8498;
        font-size: .76rem;
        font-weight: 700;
    }



.zyne-prof-category span {
    display: block;
}

.zyne-category-rotator {
    position: relative;
    height: 22px;
    overflow: hidden;
}

    .zyne-category-rotator span {
        position: absolute;
        inset: 0;
        opacity: 0;
        animation: zyneCategoryFade 8s infinite;
    }

        .zyne-category-rotator span:nth-child(1) {
            animation-delay: 0s;
        }

        .zyne-category-rotator span:nth-child(2) {
            animation-delay: 2s;
        }

        .zyne-category-rotator span:nth-child(3) {
            animation-delay: 4s;
        }

        .zyne-category-rotator span:nth-child(4) {
            animation-delay: 6s;
        }

@keyframes zyneCategoryFade {
    0%, 20% {
        opacity: 1;
    }

    25%, 100% {
        opacity: 0;
    }
}


.zyne-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity .35s ease, visibility .35s ease;
}

    .zyne-page-loader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.zyne-loader-card {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border: 1px solid #edf0f7;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(38, 41, 43, .12);
}

.zyne-loader-spinner {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 6px solid #eef2ff;
    border-top-color: #5f7adb;
    animation: zyneSpin 1s linear infinite;
}

.zyne-loader-card h2 {
    margin: 0;
    color: #26292b;
    font-size: 1.45rem;
    font-weight: 900;
}

.zyne-loader-card p {
    margin: 8px 0 20px;
    color: #6b7280;
    font-size: .92rem;
}

.zyne-loader-progress {
    width: 100%;
    height: 9px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
    margin-bottom: 12px;
}

.zyne-loader-progress-bar {
    height: 100%;
    width: 0%;
    background: #5f7adb;
    border-radius: 999px;
    transition: width .15s ease;
}

#zyneLoaderPercent {
    color: #5f7adb;
    font-size: 1rem;
    font-weight: 900;
}

@keyframes zyneSpin {
    to {
        transform: rotate(360deg);
    }
}

.zyne-edit-account-page {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
    padding: 24px 16px 120px;
}

.zyne-edit-account-box {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.zyne-edit-back {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #5f7adb;
    font-weight: 900;
    text-decoration: none;
    margin-bottom: 18px;
}

.zyne-edit-header {
    text-align: center;
    margin-bottom: 22px;
}

.zyne-edit-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 24px;
    background: #eef2ff;
    color: #5f7adb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 14px 35px rgba(95, 122, 219, .16);
}

.zyne-edit-header h1 {
    margin: 0;
    color: #26292b;
    font-size: 1.75rem;
    font-weight: 900;
}

.zyne-edit-header p {
    max-width: 480px;
    margin: 10px auto 0;
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.55;
}

.zyne-edit-card {
    background: #fff;
    border: 1px solid #edf0f7;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(38, 41, 43, .09);
}

.zyne-edit-field {
    margin-bottom: 18px;
}

    .zyne-edit-field label {
        display: block;
        color: #26292b;
        font-size: .9rem;
        font-weight: 900;
        margin-bottom: 8px;
    }

.zyne-edit-input-wrap {
    min-height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 17px;
    background: #fff;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    transition: .18s ease;
}

    .zyne-edit-input-wrap:focus-within {
        border-color: #5f7adb;
        box-shadow: 0 0 0 4px rgba(95, 122, 219, .12);
    }

    .zyne-edit-input-wrap i {
        color: #5f7adb;
        font-size: 1.15rem;
        justify-self: center;
    }

    .zyne-edit-input-wrap input {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        color: #26292b;
        font-size: .95rem;
        font-weight: 700;
        padding: 0 14px 0 0;
    }

        .zyne-edit-input-wrap input::placeholder {
            color: #9ca3af;
            font-weight: 500;
        }

.zyne-edit-error {
    display: block;
    margin-top: 6px;
    color: #be123c;
    font-size: .8rem;
    font-weight: 800;
}

.zyne-edit-validation {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: .86rem;
    font-weight: 800;
}

    .zyne-edit-validation:empty {
        display: none;
    }

.zyne-edit-alert {
    background: #f8f9ff;
    border: 1px solid #dbe3ff;
    color: #4b5563;
    border-radius: 18px;
    padding: 14px;
    font-size: .88rem;
    line-height: 1.45;
    margin: 6px 0 18px;
    display: flex;
    gap: 10px;
}

    .zyne-edit-alert i {
        color: #5f7adb;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

.zyne-edit-button {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 17px;
    background: #5f7adb;
    color: #fff;
    font-size: .96rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 10px 24px rgba(95, 122, 219, .28);
    transition: .18s ease;
}

    .zyne-edit-button:hover {
        background: #536bc8;
        transform: translateY(-1px);
    }

@media (max-width: 768px) {
    .zyne-edit-account-page {
        padding-top: 20px;
    }

    .zyne-edit-header h1 {
        font-size: 1.45rem;
    }

    .zyne-edit-card {
        padding: 16px;
        border-radius: 24px;
    }

    .zyne-edit-input-wrap {
        min-height: 50px;
        border-radius: 16px;
    }
}

.zyne-edit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 768px) {
    .zyne-edit-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.zyne-edit-select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #26292b;
    font-size: .95rem;
    font-weight: 700;
    padding: 0 14px 0 0;
    appearance: none;
}

.zyne-empty-card {
    background: #fff;
    border: 1px dashed #c7d2fe;
    border-radius: 28px;
    padding: 36px 20px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(38,41,43,.06);
}

    .zyne-empty-card i {
        color: #f5b301;
        font-size: 2.7rem;
    }

    .zyne-empty-card h2 {
        margin: 12px 0 6px;
        color: #26292b;
        font-size: 1.25rem;
        font-weight: 900;
    }

    .zyne-empty-card p {
        color: #6b7280;
        margin: 0;
    }

.zyne-review-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zyne-review-card {
    background: #fff;
    border: 1px solid #edf0f7;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 14px 35px rgba(38,41,43,.08);
}

.zyne-review-top {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
}

.zyne-review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eef2ff;
    color: #5f7adb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 1.45rem;
}

    .zyne-review-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.zyne-review-info strong {
    display: block;
    color: #26292b;
    font-size: .98rem;
    font-weight: 900;
}

.zyne-review-info span {
    color: #6b7280;
    font-size: .82rem;
}

.zyne-review-stars {
    margin-top: 12px;
    color: #f5b301;
    display: flex;
    gap: 3px;
    font-size: 1.05rem;
}

.zyne-review-comment {
    margin: 10px 0 0;
    color: #374151;
    line-height: 1.55;
    font-size: .94rem;
}

    .zyne-review-comment.muted {
        color: #9ca3af;
        font-style: italic;
    }

.zyne-review-footer {
    border-top: 1px solid #edf0f7;
    margin-top: 14px;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .zyne-review-footer > span {
        color: #9ca3af;
        font-size: .78rem;
        font-weight: 700;
    }

.zyne-review-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .zyne-review-actions form {
        margin: 0;
    }

.zyne-review-btn {
    min-height: 36px;
    border-radius: 13px;
    border: none;
    padding: 0 12px;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
}

    .zyne-review-btn.edit {
        background: #eef2ff;
        color: #5f7adb;
    }

    .zyne-review-btn.delete {
        background: #fff1f2;
        color: #be123c;
    }

.zyne-edit-textarea {
    width: 100%;
    min-height: 150px;
    border: 1px solid #e5e7eb;
    border-radius: 17px;
    padding: 13px 14px;
    outline: none;
    color: #26292b;
    font-size: .95rem;
    resize: vertical;
}

    .zyne-edit-textarea:focus {
        border-color: #5f7adb;
        box-shadow: 0 0 0 4px rgba(95,122,219,.12);
    }

.zyne-rating-edit {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

    .zyne-rating-edit label {
        min-height: 64px;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        background: #fff;
        color: #cbd5e1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        cursor: pointer;
        transition: .18s ease;
    }

    .zyne-rating-edit input {
        display: none;
    }

    .zyne-rating-edit i {
        font-size: 1.25rem;
    }

    .zyne-rating-edit span {
        font-size: .76rem;
        font-weight: 900;
    }

    .zyne-rating-edit label:has(input:checked) {
        border-color: #f5b301;
        background: #fff8db;
        color: #f5b301;
    }

@media (max-width: 768px) {
    .zyne-review-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .zyne-review-actions {
        width: 100%;
    }

        .zyne-review-btn,
        .zyne-review-actions form {
            width: 100%;
        }

    .zyne-review-btn {
        min-height: 42px;
    }

    .zyne-rating-edit {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

        .zyne-rating-edit label {
            min-height: 58px;
            border-radius: 15px;
        }
}

.zyne-about-card,
.zyne-delete-card {
    background: #fff;
    border: 1px solid #edf0f7;
    border-radius: 28px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(38,41,43,.09);
}

.zyne-about-icon,
.zyne-delete-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}

.zyne-about-icon {
    background: #eef2ff;
    color: #5f7adb;
}

.zyne-delete-icon {
    background: #fff1f2;
    color: #be123c;
}

.zyne-about-card h1,
.zyne-delete-card h1 {
    margin: 0;
    color: #26292b;
    font-size: 1.65rem;
    font-weight: 900;
}

.zyne-about-card > p,
.zyne-delete-card > p {
    margin: 12px auto 0;
    max-width: 560px;
    color: #6b7280;
    line-height: 1.55;
    font-size: .95rem;
}

.zyne-about-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    text-align: left;
}

    .zyne-about-list div {
        background: #f8f9ff;
        border: 1px solid #e2e7ff;
        border-radius: 18px;
        padding: 14px;
        display: grid;
        grid-template-columns: 38px 1fr;
        gap: 10px;
        align-items: center;
    }

    .zyne-about-list i {
        color: #5f7adb;
        font-size: 1.35rem;
        justify-self: center;
    }

    .zyne-about-list span {
        color: #374151;
        font-size: .9rem;
        font-weight: 700;
        line-height: 1.35;
    }

.zyne-about-warning {
    background: #f9fafb;
    border: 1px solid #edf0f7;
    border-radius: 18px;
    padding: 14px;
    color: #4b5563;
    display: flex;
    gap: 10px;
    text-align: left;
    font-size: .88rem;
    line-height: 1.45;
    margin-bottom: 18px;
}

    .zyne-about-warning i {
        color: #5f7adb;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

.zyne-delete-profile-link {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    background: #fff1f2;
    color: #be123c;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

    .zyne-delete-profile-link:hover {
        background: #ffe4e6;
        color: #9f1239;
    }

.zyne-delete-warning {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    border-radius: 18px;
    padding: 14px;
    margin: 22px 0;
    font-size: .92rem;
    line-height: 1.45;
}

.zyne-delete-button {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 16px;
    background: #be123c;
    color: #fff;
    font-size: .95rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 12px 26px rgba(190,18,60,.22);
}

    .zyne-delete-button:hover {
        background: #9f1239;
    }

.zyne-cancel-delete-button {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    font-weight: 900;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .zyne-cancel-delete-button:hover {
        background: #e5e7eb;
        color: #111827;
    }

.zyne-photo-page {
    padding: 30px 15px 90px;
    background: #f5f7fb;
    min-height: 100vh;
}

.zyne-photo-card {
    max-width: 520px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.zyne-photo-header h1 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.zyne-photo-header p {
    color: #6c757d;
    margin-bottom: 25px;
}

.zyne-photo-preview-box {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.zyne-photo-preview,
.zyne-photo-fallback {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef1f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.10);
}

    .zyne-photo-fallback i {
        font-size: 70px;
        color: #5f7adb;
    }

.zyne-photo-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.zyne-btn-save {
    background: #5f7adb;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 12px;
}

    .zyne-btn-save:hover {
        background: #4c68cf;
        color: #fff;
    }

.zyne-btn-back {
    background: #eef1f8;
    border-radius: 14px;
    padding: 12px;
}

.zyne-btn-remove {
    border-radius: 14px;
    padding: 12px;
    background: #fff0f0;
    color: #d63333;
    border: none;
}

@media(max-width:576px) {

    .zyne-photo-card {
        padding: 22px;
    }

    .zyne-photo-actions {
        grid-template-columns: 1fr;
    }
}

.zyne-ads-area {
    width: 100%;
    margin: 18px 0 24px;
}

.zyneAdsSwiper {
    width: 100%;
    max-width: 851px;
    aspect-ratio: 851 / 315;
    border-radius: 22px;
    overflow: hidden;
    background: #26292b;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

    .zyneAdsSwiper .swiper-slide {
        width: 100%;
        height: 100%;
        background: #2e3239;
    }

.zyne-ad-link {
    display: block;
    width: 100%;
    height: 100%;
}

    .zyne-ad-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.zyneAdsSwiper .swiper-button-next,
.zyneAdsSwiper .swiper-button-prev {
    color: #ffffff;
    width: 34px;
    height: 34px;
}

    .zyneAdsSwiper .swiper-button-next::after,
    .zyneAdsSwiper .swiper-button-prev::after {
        font-size: 18px;
        font-weight: 700;
    }

.zyneAdsSwiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: .45;
}

.zyneAdsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}