.sv-empty-state {
    width: 100%;
}

.sv-empty-state__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.sv-empty-state__content {
    text-align: center;
}


/* =========================================================
   Visual
   ========================================================= */

.sv-empty-state-visual {
    margin-bottom: 32px;
}

.sv-empty-state-visual__abstract {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;

    color: rgba(40, 40, 40, 0.62);
}


/* =========================================================
   Visual Core
   ========================================================= */

.sv-empty-state-visual__core {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 18px;
    height: 18px;

    border: 1px solid currentColor;
    border-radius: 50%;

    transform: translate(-50%, -50%);

    overflow: hidden;
}


/* =========================================================
   Visual Rings
   ========================================================= */

.sv-empty-state-visual__ring {
    position: absolute;
    top: 50%;
    left: 50%;

    border: 1px solid currentColor;
    border-radius: 50%;

    transform: translate(-50%, -50%);

    overflow: hidden;
}

.sv-empty-state-visual__ring--one {
    width: 60px;
    height: 60px;
}

.sv-empty-state-visual__ring--two {
    width: 90px;
    height: 90px;
}


/* =========================================================
   Visual Orbits
   ========================================================= */

.sv-empty-state-visual__orbit {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    transform-origin: center;
}

.sv-empty-state-visual__orbit--one {
    transform:
        translate(-50%, -50%) translateX(42px);
}

.sv-empty-state-visual__orbit--two {
    transform:
        translate(-50%, -50%) translateX(-42px);
}


/* =========================================================
   Visual Reflection
   ========================================================= */

.sv-empty-state-visual__abstract::after {
    content: "";

    position: absolute;

    top: -20%;
    left: -55%;

    width: 16%;
    height: 140%;

    pointer-events: none;

    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.02) 22%,
            rgba(205, 230, 255, 0.06) 38%,
            rgba(255, 255, 255, 0.20) 48%,
            rgba(220, 240, 255, 0.14) 52%,
            rgba(105, 170, 245, 0.045) 62%,
            rgba(255, 255, 255, 0.01) 80%,
            transparent 100%);

    filter: blur(2px);

    transform: skewX(-17deg);

    opacity: 0;

    z-index: 5;
}


/* =========================================================
   Visual Reflection Trigger
   ========================================================= */

.sv-empty-state-visual__abstract.is-reflecting::after {
    opacity: 1;

    animation:
        sv-empty-state-visual-reflection 1900ms cubic-bezier(0.25, 0.1, 0.25, 1) 1;
}


/* =========================================================
   Content
   ========================================================= */

.sv-empty-state__eyebrow {
    margin: 0 0 14px;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    opacity: 0.62;
}

.sv-empty-state__title {
    max-width: 760px;

    margin: 0 auto 18px;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;

    line-height: 1.06;
    letter-spacing: -0.025em;
}

.sv-empty-state__description {
    max-width: 520px;

    margin: 0 auto 32px;

    font-size: 15px;
    line-height: 1.65;

    opacity: 0.68;
}

/* =========================================================
   Actions
   ========================================================= */

.sv-empty-state__actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;
}


/* =========================================================
   Recommendation Visibility
   ========================================================= */

.sv-empty-state__recommendations[hidden] {
    display: none;
}


/* =========================================================
   Recommendation Layer
   ========================================================= */

.sv-empty-state-recommendation {
    position: relative;

    width: 100%;
    max-width: 900px;

    margin: 32px auto 0;
    padding: 32px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.1);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.06);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-8px);

    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease;
}

.sv-empty-state-recommendation.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* =========================================================
   Recommendation Notch
   ========================================================= */

.sv-empty-state-recommendation::before {
    content: "";

    position: absolute;

    top: -7px;
    left: 50%;

    width: 14px;
    height: 14px;

    background: #ffffff;

    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(0, 0, 0, 0.12);

    transform:
        translateX(-50%) rotate(45deg);

    z-index: 1;
}


/* =========================================================
   Recommendation Heading
   ========================================================= */

.sv-empty-state-recommendation__heading {
    margin-bottom: 20px;

    text-align: center;

    font-size: 12px;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}


/* =========================================================
   Recommendation List
   ========================================================= */

.sv-empty-state-recommendation__list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   Recommendation Card
   ========================================================= */

.sv-empty-state-recommendation__item {
    position: relative;

    display: block;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.1);

    background: #ffffff;

    color: inherit;
    text-decoration: none;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.025);

    transform: translateY(0);

    transition:
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.sv-empty-state-recommendation__item:hover {
    transform: translateY(-5px);

    border-color:
        rgba(100, 165, 255, 0.24);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.055),
        0 0 20px rgba(100, 165, 255, 0.045);
}


/* =========================================================
   Card Reflection
   ========================================================= */

.sv-empty-state-recommendation__item::after {
    content: "";

    position: absolute;

    top: -15%;
    left: -35%;

    width: 18%;
    height: 130%;

    pointer-events: none;

    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.015) 20%,
            rgba(190, 225, 255, 0.06) 38%,
            rgba(255, 255, 255, 0.22) 48%,
            rgba(225, 242, 255, 0.16) 52%,
            rgba(135, 190, 255, 0.055) 62%,
            rgba(255, 255, 255, 0.012) 80%,
            transparent 100%);

    filter: blur(3px);

    transform: skewX(-17deg);

    opacity: 0;

    z-index: 3;
}

.sv-empty-state-recommendation__item:hover::after {
    opacity: 1;

    animation:
        sv-empty-state-card-reflection 1300ms cubic-bezier(0.25, 0.1, 0.25, 1) 1;
}


/* =========================================================
   Recommendation Image
   ========================================================= */

.sv-empty-state-recommendation__image {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.sv-empty-state-recommendation__image--square {
    aspect-ratio: 1 / 1;
}

.sv-empty-state-recommendation__image--landscape {
    aspect-ratio: 4 / 3;
}

.sv-empty-state-recommendation__image--portrait {
    aspect-ratio: 3 / 4;
}

.sv-empty-state-recommendation__image-element {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sv-empty-state-recommendation__item:hover .sv-empty-state-recommendation__image-element {
    transform: scale(1.025);
}


/* =========================================================
   Recommendation Title
   ========================================================= */

.sv-empty-state-recommendation__title {
    position: relative;

    padding: 16px 18px 18px;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.35;
    letter-spacing: 0.01em;

    z-index: 4;
}


/* =========================================================
   Optional Description
   ========================================================= */

.sv-empty-state-recommendation__description {
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   Visual Reflection Animation
   ========================================================= */

@keyframes sv-empty-state-visual-reflection {

    0% {
        left: -55%;
        opacity: 0;
    }

    16% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.75;
    }

    84% {
        opacity: 0.45;
    }

    100% {
        left: 120%;
        opacity: 0;
    }

}


/* =========================================================
   Card Reflection Animation
   ========================================================= */

@keyframes sv-empty-state-card-reflection {

    0% {
        left: -35%;
        opacity: 0;
    }

    15% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.9;
    }

    85% {
        opacity: 0.55;
    }

    100% {
        left: 125%;
        opacity: 0;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 749px) {

    .sv-empty-state__inner {
        padding: 60px 20px;
    }

    .sv-empty-state-recommendation {
        padding: 24px 18px;
    }

    .sv-empty-state-recommendation__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sv-empty-state__eyebrow {
        margin-bottom: 12px;
    
        font-size: 10px;
    
        letter-spacing: 0.15em;
    }
    
    .sv-empty-state__title {
        max-width: 520px;

        margin-bottom: 16px;
    
        font-size: 34px;
    
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .sv-empty-state__description {
        max-width: 420px;
    
        margin-bottom: 28px;
    
        font-size: 14px;
        line-height: 1.6;
    }
    
    .sv-empty-state__actions {
        flex-direction: column;
    
        gap: 14px;
    }

}