/* BASIC css start */
/* 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 */

