#shop {
    width: 94vw;
    padding: 20px 3vw;
    background-color: var(--su-bg);
    font-family: var(--cabin-sans);
}

.shopShelf {
    width: 100%;
    height: fit-content;
    border-radius: 4px;
    background: var(--ma-bg);
    margin-bottom: 25px;
    overflow: hidden;
}

.shopShelfHead {
    width: calc(100% - 30px);
    height: fit-content;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}

.shopShelfHead header {
    font-size: 4em;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.shopShelfHead header ion-icon {
    width: 25px;
    height: 25px;
    color: #000;
    margin-right: 5px;
}

.shopShelfHead header svg {
    width: 25px;
    height: 25px;
    color: #000;
    fill: #000;
    margin-right: 5px;
}

.shopShelfItems {
    width: calc(100% - 24px);
    padding: 12px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.shopShelfflash {
    background: red;
    color: #fff;
}

.shopShelfflash header ion-icon {
    color: yellow;
    fill: yellow;
}

.shopShelfItem {
    width: 16%;
    height: 100%;
}

.ssiImage {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;
}

.shopShelfItem header {
    margin-top: 5px;
    font-size: 3em;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;
}

.ssiPrice {
    margin-top: 4px;
    font-size: 3em;
    font-weight: 600;
    display: none;
}
.ssicompare{
    font-size: 1.7em;
    margin-top: 0px;
    /* color: green; */
}
.ssiExeTime {
    margin-top: 5px;
    font-size: 2.3em;
    color: var(--text-color4)
}

.shopShelfItems::-webkit-scrollbar {
    display: none;
}

.ssiextra {
    font-size: 2em;
    color: #555;
    margin-top: 5px;
    display: none;
}

/* @media (max-width: 1100px) {
} */
@media (max-width: 1000px) {
    .shopShelfItems {
        overflow-x: auto;
    }

    .shopShelfItem {
        width: 20vw;
        margin-right: 15px;
        flex-shrink: 0;
    }
}

@media (max-width: 720px) {
    .shopShelfItem {
        width: 30vw;
    }
}

@media (max-width: 600px) {
    .shopShelfItem {
        width: 38vw;
    }

    .shopShelfItem header {
        font-size: 2.7em;
    }

    .ssiPrice {
        font-size: 2.7em;
    }

    .shopShelfHead header {
        font-size: 3.2em;
        font-weight: 500;
    }

    .shopShelfHead ion-icon {
        width: 18px;
        height: 18px;
    }
}