﻿
:root {
    --sf-black: #0e0e0e;
    --sf-dark: #1a1a1a;
    --sf-charcoal: #2a2a2a;
    --sf-accent: #6b0572;
    --sf-accent-light: #9b3fa2;
    --sf-accent-bright: #c06ec6;
    --sf-accent-pale: #f3e4f4;
    --sf-accent-glow: #8a2090;
    --sf-white: #fafafa;
    --sf-muted: #888;
    --sf-bg: #f7f3f8;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}



/* ========== TOP BAR ========== */
.sf-topbar {
    background: var(--sf-black);
    color: var(--sf-muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 0;
}

    .sf-topbar a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.25s;
    }

        .sf-topbar a:hover {
            color: #fff;
            text-decoration: none;
        }

    .sf-topbar .separator {
        margin: 0 12px;
        opacity: 0.3;
    }

/* ========== MAIN NAV ========== */

.sf-navbar {
    background: var(--sf-black);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.35s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 16px; /* baza fixă — meniul nu mai depinde de CSS-ul layout-ului */
    font-family: var(--font-body); /* Outfit — consistent pe toate layout-urile */
}

    .sf-navbar.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }

    .sf-navbar .container-fluid {
        max-width: 1360px;
    }

/* Logo */
.sf-logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    gap: 10px;
}

.sf-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--sf-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sf-logo-text {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

    .sf-logo-text span {
        color: var(--sf-accent-pale);
    }

/* Nav items */
.sf-nav-main {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sf-nav-main > li > a {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 22px 16px;
        font-size: 1.0rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        text-decoration: none !important;
        position: relative;
        transition: color 0.25s;
    }

        .sf-nav-main > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: #fff;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sf-nav-main > li:hover > a,
        .sf-nav-main > li > a:focus {
            color: #fff;
        }

            .sf-nav-main > li:hover > a::after {
                transform: scaleX(1);
            }

        .sf-nav-main > li > a .caret-icon {
            font-size: 0.55rem;
            opacity: 0.4;
            transition: transform 0.3s, opacity 0.3s;
        }

    .sf-nav-main > li:hover > a .caret-icon {
        transform: rotate(180deg);
        opacity: 0.7;
    }

/* CTA button */
.sf-cta {
    background: var(--sf-accent);
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 22px !important;
    font-size: 0.78rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .sf-cta:hover {
        background: #fff;
        color: var(--sf-black) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(255,255,255,0.15);
    }

/* ========== MEGA DROPDOWNS ========== */
.sf-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--sf-accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 20px rgba(107,5,114,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 36px 0 40px;
    z-index: 1060;
}

.sf-nav-main > li:hover > .sf-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sf-mega .sf-mega-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--sf-accent);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(107,5,114,0.1);
    display: block;
}

    .sf-mega .sf-mega-heading i {
        color: var(--sf-accent-light);
        margin-right: 8px;
        font-size: 0.85rem;
    }

.sf-mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sf-mega-links li a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 7px 0;
        font-size: 1.0rem;
        font-weight: 400;
        color: #555;
        text-decoration: none !important;
        transition: all 0.2s;
    }

        .sf-mega-links li a::before {
            content: '';
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--sf-accent);
            opacity: 0;
            transition: opacity 0.2s;
            flex-shrink: 0;
        }

        .sf-mega-links li a:hover {
            color: var(--sf-accent);
            padding-left: 6px;
        }

            .sf-mega-links li a:hover::before {
                opacity: 1;
            }

        .sf-mega-links li a .badge-new {
            background: var(--sf-accent);
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .sf-mega-links li a .badge-hot {
            background: #4a0350;
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

/* Feature card inside mega */
.sf-mega-feature {
    background: linear-gradient(145deg, #6b0572, #8a2090);
    border-radius: 14px;
    padding: 28px 24px;
    color: #fff;
    text-decoration: none !important;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    /* height: 100%; */
}

    .sf-mega-feature::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        background: #fff;
        opacity: 0.08;
        border-radius: 50%;
    }

    .sf-mega-feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(107,5,114,0.35);
        color: #fff;
    }

    .sf-mega-feature .icon {
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 14px;
    }

    .sf-mega-feature .sf-mega-feature-title {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
    }

    .sf-mega-feature p {
        font-size: 0.85rem;
        opacity: 0.7;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .sf-mega-feature .arrow {
        color: rgba(255,255,255,0.85);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.04em;
    }

        .sf-mega-feature .arrow i {
            transition: transform 0.3s;
            margin-left: 6px;
        }

    .sf-mega-feature:hover .arrow i {
        transform: translateX(4px);
    }

/* ========== PROMO RIBBON ========== */
.sf-promo-bar {
    background: linear-gradient(90deg, var(--sf-accent), #9b3fa2, var(--sf-accent));
    background-size: 200% 100%;
    animation: shimmer 6s ease infinite;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

    .sf-promo-bar a {
        color: #fff;
        text-decoration: underline;
        font-weight: 700;
    }

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ========== MOBILE TOGGLE ========== */
.sf-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
    width: 36px;
    height: 36px;
}

    .sf-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 7px;
        transition: all 0.3s ease;
    }

        .sf-toggle span:nth-child(1) {
            top: 10px;
        }

        .sf-toggle span:nth-child(2) {
            top: 17px;
        }

        .sf-toggle span:nth-child(3) {
            top: 24px;
        }

    .sf-toggle.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 17px;
    }

    .sf-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .sf-toggle.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 17px;
    }

/* ========== MOBILE OVERLAY ========== */
.sf-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

    .sf-mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

/* ========== MOBILE NAV ========== */
.sf-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 92%;
    max-width: 420px;
    background: var(--sf-white);
    z-index: 1100;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

    .sf-mobile-nav.open {
        transform: translateX(0);
    }

/* Header */
.sf-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 2px solid var(--sf-accent);
    background: var(--sf-white);
    flex-shrink: 0;
}

.sf-mobile-close {
    width: 40px;
    height: 40px;
    background: var(--sf-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--sf-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

    .sf-mobile-close:hover {
        background: var(--sf-accent);
        color: #fff;
    }

/* Scrollable body */
.sf-mobile-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px;
}

/* Category accordion items */
.sf-m-item {
    margin: 0;
}

    .sf-m-item > a {
        display: flex;
        align-items: center;
        padding: 15px 22px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--sf-black);
        text-decoration: none !important;
        letter-spacing: 0.04em;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: all 0.25s;
    }

        .sf-m-item > a:active {
            background: rgba(107,5,114,0.06);
        }

        .sf-m-item > a .sf-m-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            margin-right: 14px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .sf-m-item > a .sf-m-title {
            flex: 1;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .sf-m-item > a .sf-m-desc {
            display: block;
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--sf-muted);
            text-transform: none;
            letter-spacing: 0;
            margin-top: 2px;
        }

        .sf-m-item > a i.fa-chevron-down {
            font-size: 0.6rem;
            opacity: 0.3;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
            margin-left: 8px;
        }

    .sf-m-item.expanded > a {
        background: rgba(107,5,114,0.06);
    }

        .sf-m-item.expanded > a i.fa-chevron-down {
            transform: rotate(180deg);
            opacity: 0.6;
        }

        .sf-m-item.expanded > a .sf-m-icon {
            transform: scale(1.05);
        }

/* Icon color themes — purple monochrome variations */
.sf-m-icon.icon-laser {
    background: rgba(107,5,114,0.1);
    color: #6b0572;
}

.sf-m-icon.icon-corp {
    background: rgba(107,5,114,0.08);
    color: #8a2090;
}

.sf-m-icon.icon-fata {
    background: rgba(107,5,114,0.12);
    color: #7b1282;
}

.sf-m-icon.icon-beauty {
    background: rgba(107,5,114,0.1);
    color: #6b0572;
}

.sf-m-icon.icon-preturi {
    background: rgba(107,5,114,0.08);
    color: #9b3fa2;
}

.sf-m-icon.icon-shop {
    background: rgba(107,5,114,0.08);
    color: #8a2090;
}

.sf-m-icon.icon-promo {
    background: rgba(107,5,114,0.12);
    color: #6b0572;
}

.sf-m-icon.icon-contact {
    background: rgba(107,5,114,0.06);
    color: #7b1282;
}

/* Sub-menu panel */
.sf-m-sub {
    display: none;
    background: linear-gradient(180deg, #f5f0f6, #f1ecf2);
    overflow: hidden;
}

.sf-m-sub-inner {
    padding: 16px 22px 20px;
}

/* Section headers inside sub */
.sf-m-section {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 16px 0 8px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sf-black);
}

    .sf-m-section:first-child {
        margin-top: 0;
    }

    .sf-m-section i {
        color: var(--sf-accent);
        font-size: 0.75rem;
        width: 20px;
        text-align: center;
    }

    .sf-m-section::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, rgba(107,5,114,0.3), transparent);
        margin-left: 4px;
    }

/* Sub-menu links */
.sf-m-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 2px 0;
    font-size: 0.82rem;
    font-weight: 400;
    color: #555555;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.2s;
}

    .sf-m-sub-link:active,
    .sf-m-sub-link:hover {
        background: rgba(255,255,255,0.7);
        color: var(--sf-black);
        text-decoration: none;
    }

    .sf-m-sub-link::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--sf-accent);
        opacity: 0.4;
        flex-shrink: 0;
    }

    .sf-m-sub-link:hover::before,
    .sf-m-sub-link:active::before {
        opacity: 1;
    }

    .sf-m-sub-link .badge-new,
    .sf-m-sub-link .badge-hot {
        font-size: 0.55rem;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 3px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-left: auto;
        flex-shrink: 0;
    }

    .sf-m-sub-link .badge-new {
        background: var(--sf-accent);
        color: #fff;
    }

    .sf-m-sub-link .badge-hot {
        background: #4a0350;
        color: #fff;
    }

/* Feature card inside mobile sub */
.sf-m-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, #6b0572, #8a2090);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    text-decoration: none !important;
    transition: transform 0.2s;
}

    .sf-m-feature:active {
        transform: scale(0.98);
    }

    .sf-m-feature .sf-mf-icon {
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .sf-m-feature .sf-mf-text .sf-mf-title {
        font-family: var(--font-display);
        font-size: 0.88rem;
        font-weight: 600;
        color: #fff;
        margin: 0 0 2px;
        border: none;
        padding: 0;
        display: block;
    }

    .sf-m-feature .sf-mf-text p {
        font-size: 0.72rem;
        color: rgba(255,255,255,0.5);
        margin: 0;
        line-height: 1.4;
    }

    .sf-m-feature .sf-mf-arrow {
        margin-left: auto;
        color: rgba(255,255,255,0.7);
        font-size: 0.75rem;
        flex-shrink: 0;
    }

/* Quick links row */
.sf-m-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 22px 8px;
}

    .sf-m-quick a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 14px;
        background: var(--sf-bg);
        border-radius: 10px;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--sf-charcoal);
        text-decoration: none !important;
        transition: all 0.2s;
        text-align: left;
    }

        .sf-m-quick a:active {
            background: rgba(107,5,114,0.15);
        }

        .sf-m-quick a i {
            color: var(--sf-accent);
            font-size: 0.8rem;
            width: 18px;
            text-align: center;
            flex-shrink: 0;
        }

/* Footer */
.sf-mobile-footer {
    flex-shrink: 0;
    padding: 16px 22px 20px;
    background: var(--sf-white);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.sf-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--sf-accent);
    color: #fff !important;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(107,5,114,0.3);
}

    .sf-cta-mobile:active {
        transform: scale(0.98);
        background: #4a0350;
    }

.sf-mobile-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
}

    .sf-mobile-contact a {
        font-size: 0.9rem;
        color: var(--sf-muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .sf-mobile-contact a i {
            color: var(--sf-accent);
        }

/* ========== DEMO CONTENT ========== */
.sf-demo-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(ellipse at 30% 0%, rgba(107,5,114,0.12) 0%, transparent 60%), radial-gradient(ellipse at 70% 100%, rgba(107,5,114,0.08) 0%, transparent 50%), var(--sf-bg);
}

    .sf-demo-hero h1 {
        font-family: var(--font-display);
        font-size: 3.2rem;
        font-weight: 700;
        color: var(--sf-black);
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

        .sf-demo-hero h1 span {
            color: var(--sf-accent);
        }

    .sf-demo-hero p {
        font-size: 1.1rem;
        color: var(--sf-muted);
        max-width: 520px;
        line-height: 1.7;
    }

.sf-demo-badge {
    display: inline-block;
    background: var(--sf-black);
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .sf-nav-main > li > a {
        padding: 22px 11px;
        font-size: 0.78rem;
    }
}
/* Hide mobile elements on desktop */
@media (min-width: 992px) {
    .sf-mobile-nav,
    .sf-mobile-overlay,
    .sf-toggle {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .sf-nav-desktop {
        display: none !important;
    }

    .sf-toggle {
        display: block;
    }

    .sf-demo-hero h1 {
        font-size: 2.2rem;
    }
}


/* ========== MEGA BANNER IMAGE ========== */
.sf-mega-banner {
    position: relative;
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-bottom: 28px;
    border-radius: 12px;
    text-decoration: none !important;
}

.sf-mega-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-mega-banner:hover img {
    transform: scale(1.04);
}

.sf-mega-banner .sf-mega-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(107,5,114,0.85) 0%, rgba(107,5,114,0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 36px;
    z-index: 1;
}

.sf-mega-banner .sf-mega-banner-text {
    color: #fff;
}

    .sf-mega-banner .sf-mega-banner-text h4 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0 0 4px;
        letter-spacing: -0.01em;
    }

    .sf-mega-banner .sf-mega-banner-text p {
        font-size: 0.82rem;
        opacity: 0.7;
        margin: 0;
        line-height: 1.5;
    }

.sf-mega-banner .sf-mega-banner-cta {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
}

.sf-mega-banner:hover .sf-mega-banner-cta {
    background: #fff;
    color: var(--sf-black);
}

@media (max-width: 1199px) {
    .sf-mega-banner {
        height: 110px;
    }

        .sf-mega-banner .sf-mega-banner-text h4 {
            font-size: 1.1rem;
        }
}


/* ========== MOBILE PHONE BUTTON ========== */
.sf-mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sf-accent);
    color: #fff !important;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    animation: phoneRing 3s ease infinite;
}

.sf-mobile-phone:hover,
.sf-mobile-phone:active {
    background: var(--sf-accent-light);
    transform: scale(1.08);
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }

    3% {
        transform: rotate(12deg);
    }

    6% {
        transform: rotate(-12deg);
    }

    9% {
        transform: rotate(8deg);
    }

    12% {
        transform: rotate(-8deg);
    }

    15% {
        transform: rotate(0deg);
    }
}

.sf-mobile-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff !important;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

    .sf-mobile-msg:hover,
    .sf-mobile-msg:active {
        background: var(--sf-accent);
        border-color: var(--sf-accent);
        transform: scale(1.08);
    }


.sf-page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sf-page-loader.active {
    display: flex;
    opacity: 1;
}

.sf-loader-content {
    text-align: center;
}

/* ── Inelele concentrice ── */
.sf-loader-rings {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.sf-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.sf-ring-1 {
    inset: 0;
    border-top-color: #6b0572;
    border-right-color: #6b0572;
    animation: sfSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.sf-ring-2 {
    inset: 12px;
    border-bottom-color: #9b3fa2;
    border-left-color: #9b3fa2;
    animation: sfSpin 1.6s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

.sf-ring-3 {
    inset: 24px;
    border-top-color: #c06ec6;
    border-right-color: #c06ec6;
    animation: sfSpin 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.sf-loader-logo {
    position: absolute;
    inset: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, #6b0572, #9b3fa2);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(107, 5, 114, 0.5);
    animation: sfPulse 2s ease-in-out infinite;
}

@keyframes sfSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes sfPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(107, 5, 114, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(107, 5, 114, 0.7), 0 0 80px rgba(107, 5, 114, 0.2);
        transform: scale(1.06);
    }
}

/* ── Textul cu puncte animate ── */
.sf-loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.sf-loader-dots::after {
    content: '';
    animation: sfDots 1.5s steps(4, end) infinite;
}

@keyframes sfDots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}


/* ========== BLAZOR RECONNECT MODAL ========== */
/* Ascuns implicit */
#components-reconnect-modal.sf-reconnect-hide {
    display: none;
}

/* Când Blazor adaugă starea - afișează */
#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: flex !important;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.sf-reconnect-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sf-reconnect-dialog {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #1a1a1a, #0e0e0e);
    border: 1px solid rgba(107, 5, 114, 0.3);
    border-radius: 18px;
    padding: 36px 32px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(107, 5, 114, 0.15);
    animation: sf-reconnect-appear 0.3s ease-out;
}

@keyframes sf-reconnect-appear {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sf-reconnect-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6b0572, #9b3fa2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(107, 5, 114, 0.4);
}

    .sf-reconnect-icon i {
        font-size: 1.5rem;
        color: #fff;
    }

.sf-reconnect-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.sf-reconnect-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0 0 22px;
}

.sf-reconnect-btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(145deg, #6b0572, #9b3fa2);
    color: #fff;
    border: none;
    padding: 10px 28pxș border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(107, 5, 114, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .sf-reconnect-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(107, 5, 114, 0.45);
    }

/* Când conexiunea eșuează total — schimbă textul și arată butonul */
#components-reconnect-modal.components-reconnect-failed .sf-reconnect-icon i,
#components-reconnect-modal.components-reconnect-rejected .sf-reconnect-icon i {
    animation: none;
}

    #components-reconnect-modal.components-reconnect-failed .sf-reconnect-icon i::before,
    #components-reconnect-modal.components-reconnect-rejected .sf-reconnect-icon i::before {
        content: "\f071"; /* fa-exclamation-triangle */
    }

#components-reconnect-modal.components-reconnect-failed .sf-reconnect-btn,
#components-reconnect-modal.components-reconnect-rejected .sf-reconnect-btn {
    display: inline-block;
}

#components-reconnect-modal.components-reconnect-failed .sf-reconnect-title::after {
    content: "";
}

#components-reconnect-modal.components-reconnect-rejected .sf-reconnect-title::after {
    content: "";
}


/* ========== SEARCH MODAL ========== */
.sf-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sf-search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.sf-search-modal {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: 94%;
    max-width: 640px;
    max-height: 80vh;
    background: var(--sf-dark);
    border: 1px solid rgba(107, 5, 114, 0.25);
    border-radius: 18px;
    z-index: 99991;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(107, 5, 114, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 60px;
}

    .sf-search-modal.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

.sf-search-header {
    display: flex;
    align-items: center;
    padding: 6px 8px 6px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 8px;
    flex-shrink: 0;
}

.sf-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-search-icon {
    color: var(--sf-accent-light);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sf-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    padding: 14px 0;
}

    .sf-search-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

.sf-search-kbd {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.sf-search-close {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

    .sf-search-close:hover {
        background: var(--sf-accent);
        color: #fff;
    }

.sf-search-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px 20px;
    -webkit-overflow-scrolling: touch;
}

    .sf-search-body::-webkit-scrollbar {
        width: 4px;
    }

    .sf-search-body::-webkit-scrollbar-thumb {
        background: rgba(107,5,114,0.5);
        border-radius: 4px;
    }

.sf-search-empty,
.sf-search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.55);
}

    .sf-search-empty i,
    .sf-search-no-results i {
        font-size: 2rem;
        margin-bottom: 12px;
        display: block;
        color: var(--sf-accent-light);
        opacity: 0.7;
    }

    .sf-search-empty p,
    .sf-search-no-results p {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.5;
    }

/* Result item */
.sf-search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    margin-bottom: 4px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .sf-search-item:hover,
    .sf-search-item.active {
        background: rgba(107, 5, 114, 0.15);
    }

.sf-search-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(107, 5, 114, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sf-accent-light);
    font-size: 0.85rem;
}

.sf-search-item-info {
    flex: 1;
    min-width: 0;
}

.sf-search-item-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .sf-search-item-title mark {
        background: rgba(107, 5, 114, 0.4);
        color: #fff;
        border-radius: 2px;
        padding: 0 2px;
    }

.sf-search-item-cat {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 2px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sf-search-item-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.sf-search-item:hover .sf-search-item-arrow {
    color: var(--sf-accent-light);
    transform: translateX(3px);
}

.sf-search-cat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 14px 4px;
    margin: 0;
}

@media (max-width: 640px) {
    .sf-search-modal {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin-top: 0;
        top: 0;
        max-width: 100%;
    }

    .sf-search-kbd {
        display: none;
    }
}

.sf-reconnect-btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(145deg, #6b0572, #9b3fa2);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(107, 5, 114, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}


/*<!-- ==================BUTON REZUMAT================ -->
<!-- Butonul de Rezumat -->*/

#btn-rezumat {
    position: fixed;
    bottom: 70px;
    right: 10px;
    background: linear-gradient(135deg, #670a71, #6e2078);
    color: #fff;
    border: none !important;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(75,0,82,0.4);
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

#btn-rezumat:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(75,0,82,0.5);
}

@media (min-width: 992px) {
    #btn-rezumat {
        left: max(10px, calc((100vw - 1360px) / 2 + 10px));
    }
}

#btn-rezumat:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(75,0,82,0.5);
}

.rezumat-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .rezumat-overlay.active {
        display: flex;
    }

.rezumat-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: rezumatSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes rezumatSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rezumat-header {
    display: flex;
    flex-direction: column;
    padding: 20px 28px;
    border-bottom: 1px solid #f0e8f2;
    flex-shrink: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
}

    .rezumat-header h3 {
        font-family: 'Playfair Display', Georgia, serif;
        color: #4b0052;
        margin: 0;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .rezumat-header .rezumat-close {
        width: 36px;
        height: 36px;
        background: #f8f3f9;
        border: none;
        border-radius: 50%;
        font-size: 1.2rem;
        color: #999;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .rezumat-header .rezumat-close:hover {
            background: #4b0052;
            color: #fff;
        }

.rezumat-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 10px 10px;
    -webkit-overflow-scrolling: touch;
}

    .rezumat-body::-webkit-scrollbar {
        width: 4px;
    }

    .rezumat-body::-webkit-scrollbar-thumb {
        background: rgba(75,0,82,0.3);
        border-radius: 4px;
    }

.rezumat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .rezumat-list li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 12px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
    }

        .rezumat-list li:last-child {
            border-bottom: none;
        }

/* ── Indicator vizual pe stânga ── */
.rez-accent {
    width: 4px;
    border-radius: 4px;
    align-self: stretch;
    flex-shrink: 0;
    transition: width 0.25s, opacity 0.25s;
}

/* ── Textul ── */
.rez-text {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
}

/* ── Săgeata de navigare ── */
.rez-arrow {
    flex-shrink: 0;
    font-size: 0.6rem;
    opacity: 0;
    color: var(--sf-accent-light, #9b3fa2);
    transition: opacity 0.25s, transform 0.25s;
    transform: translateX(-4px);
}

/* ── H1 — Titlu principal — card bold ── */
.rezumat-list li[data-level="1"] {
    background: linear-gradient(135deg, #4b0052, #6e2078);
    padding: 14px 18px;
    margin-top: 6px;
}

    .rezumat-list li[data-level="1"]:first-child {
        margin-top: 0;
    }

    .rezumat-list li[data-level="1"] .rez-accent {
        background: rgba(255,255,255,0.3);
    }

    .rezumat-list li[data-level="1"] .rez-text {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1.0rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: -0.01em;
    }

    .rezumat-list li[data-level="1"] .rez-arrow {
        color: rgba(255,255,255,0.6);
    }

    .rezumat-list li[data-level="1"]:hover {
        transform: translateX(3px);
        box-shadow: 0 4px 20px rgba(75,0,82,0.3);
    }

        .rezumat-list li[data-level="1"]:hover .rez-arrow {
            opacity: 1;
            transform: translateX(0);
            color: #fff;
        }

/* ── H2 — Secțiune principală ── */
.rezumat-list li[data-level="2"] {
    background: #f8f3f9;
    padding: 12px 16px;
    margin-top: 4px;
}

    .rezumat-list li[data-level="2"] .rez-accent {
        background: linear-gradient(180deg, #6b0572, #9b3fa2);
    }

    .rezumat-list li[data-level="2"] .rez-text {
        font-size: 0.92rem;
        font-weight: 600;
        color: #4b0052;
    }

    .rezumat-list li[data-level="2"]:hover {
        background: #f0e4f2;
        transform: translateX(3px);
    }

        .rezumat-list li[data-level="2"]:hover .rez-arrow {
            opacity: 1;
            transform: translateX(0);
        }

/* ── H3 — Sub-secțiune ── */
.rezumat-list li[data-level="3"] {
    padding: 10px 16px 10px 28px;
    background: transparent;
}

    .rezumat-list li[data-level="3"] .rez-accent {
        background: var(--sf-accent-light, #9b3fa2);
        opacity: 0.5;
    }

    .rezumat-list li[data-level="3"] .rez-text {
        font-size: 0.88rem;
        font-weight: 500;
        color: #555;
    }

    .rezumat-list li[data-level="3"]:hover {
        background: #faf6fb;
        transform: translateX(2px);
    }

        .rezumat-list li[data-level="3"]:hover .rez-arrow {
            opacity: 0.7;
            transform: translateX(0);
        }

        .rezumat-list li[data-level="3"]:hover .rez-accent {
            opacity: 1;
        }

/* ── H4 — Detaliu ── */
.rezumat-list li[data-level="4"] {
    padding: 8px 16px 8px 44px;
    background: transparent;
}

    .rezumat-list li[data-level="4"] .rez-accent {
        background: #ccc;
        opacity: 0.5;
        width: 3px;
    }

    .rezumat-list li[data-level="4"] .rez-text {
        font-size: 0.84rem;
        font-weight: 400;
        color: #777;
    }

    .rezumat-list li[data-level="4"]:hover {
        background: #faf6fb;
    }

        .rezumat-list li[data-level="4"]:hover .rez-arrow {
            opacity: 0.5;
            transform: translateX(0);
        }

/* ── H5 — Sub-detaliu ── */
.rezumat-list li[data-level="5"] {
    padding: 7px 16px 7px 58px;
    background: transparent;
}

    .rezumat-list li[data-level="5"] .rez-accent {
        background: #ddd;
        opacity: 0.4;
        width: 2px;
    }

    .rezumat-list li[data-level="5"] .rez-text {
        font-size: 0.82rem;
        font-weight: 400;
        color: #999;
    }

    .rezumat-list li[data-level="5"]:hover {
        background: #faf6fb;
    }

/* ── H6 — Minim ── */
.rezumat-list li[data-level="6"] {
    padding: 6px 16px 6px 70px;
    background: transparent;
}

    .rezumat-list li[data-level="6"] .rez-accent {
        background: #eee;
        opacity: 0.3;
        width: 2px;
    }

    .rezumat-list li[data-level="6"] .rez-text {
        font-size: 0.8rem;
        font-weight: 400;
        color: #aaa;
    }

/* ── Cursor pe toate nivelurile ── */
.rezumat-list li[data-scroll-target] {
    cursor: pointer;
}
/* ── Click / Hover ── */
.rezumat-list li[data-scroll-target] {
    cursor: pointer;
    transition: background 0.2s, padding-left 0.2s;
}

    .rezumat-list li[data-scroll-target]:hover {
        background: #f8f3f9;
    }

        .rezumat-list li[data-scroll-target]:hover .rez-line {
            transform: scaleX(1.3);
            transform-origin: left;
            opacity: 1;
        }


.rez-price-btn {
    display: block;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: linear-gradient(135deg, #4b0052, #6e2078);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    animation: rezPricePulse 2s ease-in-out infinite;
}

    .rez-price-btn:hover {
        transform: translateY(-1px);
        color: #fff !important;
    }

.rez-ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white !important;
    border: 1px solid rgba(107,5,114,0.3);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

    .rez-ai-btn:hover {
        background: linear-gradient(135deg, #4b0052, #6e2078);
        color: #fff !important;
        border-color: #6e2078;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(75,0,82,0.4);
    }

    .rez-ai-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

.rez-ai-result {
    padding: 5px 5px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #333;
}

    .rez-ai-result b {
        color: #4b0052;
    }

    .rez-ai-result ul {
        padding-left: 18px;
        margin: 8px 0;
    }

    .rez-ai-result li {
        margin-bottom: 4px;
    }

.rez-ai-loading {
    text-align: center;
    padding: 30px 20px;
}

    .rez-ai-loading i {
        font-size: 1.8rem;
        color: #9b3fa2;
        display: block;
        margin-bottom: 12px;
    }

    .rez-ai-loading p {
        color: #888;
        font-size: 0.85rem;
        margin: 0;
    }


