/* BASIC css start */
.listPageContainer {
    width: 100vw;
    min-width: 1024px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-color: #edf8fd;
}

.mainIntro {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 2.75rem;
    padding: 3rem 0;
    text-align: center;
}
.mainIntro .stitchTypoSvg {
    width: 18rem;
}
.mainIntro .stitchVideo {
}
.mainIntro .stitchVideo video {
    width: 100%;
    max-width: 1540px;
    overflow: hidden;
    border-radius: 1.75rem;
}
.mainIntro a {
    box-shadow: 0 0 4px #21a3d7;
    padding: 1.125rem 3rem;
    border-radius: 2rem;
    background-color: #fff;
    color: #21a3d7;
    font-weight: 600;
    margin-top: 0.5rem;
}
.mainIntro a:hover {
    background-color: #21a3d7;
    color: #fff;
}
.mainIntroMeta {
    margin-bottom: 3rem;
}

.mainIntroMeta h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #21a3d7;
}
.mainIntroMeta h5 {
    color: #21a3d7;
}
.mainIntroMeta h5 span {
    color: #21a3d7;
    font-weight: 500;
    border-bottom: 1px solid #21a3d7;
}
.mainImgs {
    max-width: 1920px;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 2rem;
    margin-bottom: 5rem;
}
@media (max-width: 699px) {
    .listPageContainer {
        min-width: 300px;
    }
    .mainIntro {
        gap: 1rem;
        padding: 2rem 0;
    }
    .mainIntro .stitchTypoSvg {
        width: 10rem;
    }
    .mainIntro .stitchVideo {
        width: 90%;
    }
    .mainIntro .stitchVideo video {
        border-radius: 1.5rem;
    }

    .mainIntro a {
        box-shadow: 0 0 4px #21a3d7;
        padding: 0.875rem 3rem;
        border-radius: 2rem;
        background-color: #fff;
        color: #21a3d7;
        font-weight: 600;
    }
    .mainIntro a:hover {
        background-color: #21a3d7;
        color: #fff;
    }
    .mainIntroMeta {
        margin-bottom: 3rem;
    }

    .mainIntroMeta h4 {
        font-size: 1.25rem;
    }
    .mainIntroMeta h5 {
        padding: 0 2rem;
    }
}

.disneysItems {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}
.disneysItems h2 {
    font-size: 3rem;
    font-family: "Archivo Black";
    margin-top: 2rem;
    border-radius: 100%;
    background: #fff3a2;
    width: 15rem;
    text-align: center;
    line-height: 6rem;
    border-top: 10px solid;
    border-bottom: 10px solid;
    border-left: 3px solid;
    border-right: 3px solid;
}

.h2stitch {
    color: #21a3d7;
}
.h2angel {
    color: #ff93cd;
}
.h2scrump {
    color: #7ed4af;
}

/* pc products loop */

/* depth 1 */
.listContents {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: var(--smallgap);
}
.listContent {
    margin-bottom: 2rem;

    width: calc((100vw - var(--smallgap) * 5) / 4);
    max-width: calc((var(--content-max-width) - var(--smallgap) * 5) / 4);
    min-width: calc((var(--pc-min-width) - var(--smallgap) * 5) / 4);
}
.contentImgWrapper {
    width: 100%;
    aspect-ratio: 3/4;
    box-shadow: 1px 1px 5px #00000020;
    margin-bottom: 0.5em;
}
.contentImg {
    width: 100%;
    height: 100%;
}
.contentImg > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.contentImg2 {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.listContent:hover .contentImg2 {
    display: block;
}

.contentBtnsWrapper {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.contentBtn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 3rem;
    background: #ffffffdd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 2px 7px #00000020;
}
.contentBtn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btnWish path {
    stroke: var(--black);
    fill: #ffffff00;
}
.btnWish:hover path {
    transition: 0.3s;
    fill: var(--brandcolor);
}
.wish-on path {
    fill: var(--brandcolor);
    stroke: var(--brandcolor);
}
.btnOption path {
    stroke: var(--black);
    fill: #ffffff00;
}
.contentMeta h5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}
.contentMeta p {
    color: var(--darkgrey);
    margin-top: 0.375em;
}
.contentSoldout {
    color: var(--brandcolor);
}

/* BASIC css end */

