/* BASIC css start */
/* depth 1 */
.listContents {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
.listContent {
    margin-bottom: 1rem;
    width: 50%;

    padding: 0 calc(var(--smallgap) / 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%;
}
.contentBtnsWrapper {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

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

.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 */

