/* ── Splash-screen styles (prefixed with splash__ to avoid conflicts) ── */
.splash__root {
    position: relative;
    width: 100%;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
}

.splash__loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    user-select: none;
}

.splash__loader > * {
    margin-bottom: 1em;
}
.splash__loader > *:last-child {
    margin-bottom: 0;
}

.splash__loader-message {
    margin-bottom: 200px !important;
    font-size: 14px;
    color: #555;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

/* ── Fading-circle spinner ── */
.splash__fading-circle {
    width: 24px;
    height: 24px;
    position: relative;
}

.splash__fading-circle .splash__circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.splash__fading-circle .splash__circle::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 13%;
    height: 13%;
    background-color: #000000;
    border-radius: 100%;
    animation: splash__circleFadeDelay 1.2s infinite ease-in-out both;
}

.splash__fading-circle .splash__circle2 {
    transform: rotate(30deg);
}
.splash__fading-circle .splash__circle3 {
    transform: rotate(60deg);
}
.splash__fading-circle .splash__circle4 {
    transform: rotate(90deg);
}
.splash__fading-circle .splash__circle5 {
    transform: rotate(120deg);
}
.splash__fading-circle .splash__circle6 {
    transform: rotate(150deg);
}
.splash__fading-circle .splash__circle7 {
    transform: rotate(180deg);
}
.splash__fading-circle .splash__circle8 {
    transform: rotate(210deg);
}
.splash__fading-circle .splash__circle9 {
    transform: rotate(240deg);
}
.splash__fading-circle .splash__circle10 {
    transform: rotate(270deg);
}
.splash__fading-circle .splash__circle11 {
    transform: rotate(300deg);
}
.splash__fading-circle .splash__circle12 {
    transform: rotate(330deg);
}

.splash__fading-circle .splash__circle2::before {
    animation-delay: -1.1s;
}
.splash__fading-circle .splash__circle3::before {
    animation-delay: -1s;
}
.splash__fading-circle .splash__circle4::before {
    animation-delay: -0.9s;
}
.splash__fading-circle .splash__circle5::before {
    animation-delay: -0.8s;
}
.splash__fading-circle .splash__circle6::before {
    animation-delay: -0.7s;
}
.splash__fading-circle .splash__circle7::before {
    animation-delay: -0.6s;
}
.splash__fading-circle .splash__circle8::before {
    animation-delay: -0.5s;
}
.splash__fading-circle .splash__circle9::before {
    animation-delay: -0.4s;
}
.splash__fading-circle .splash__circle10::before {
    animation-delay: -0.3s;
}
.splash__fading-circle .splash__circle11::before {
    animation-delay: -0.2s;
}
.splash__fading-circle .splash__circle12::before {
    animation-delay: -0.1s;
}

@keyframes splash__circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

/* ── Cart icon ── */
.splash__cart-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash__cart-icon {
    width: 175px;
    height: 165px;
}

.splash__cart-icon-container p {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    text-align: center;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}
