.c-card-wrapper {
    position: relative;
    background: var(--color-spicedCrimson);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
}

.c-card-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: skewY(345deg);
    transition: 0.5s;
}

.c-card-wrapper:hover::before {
    top: -75%;
    transform: skewY(390deg);
}

.c-card-wrapper::after {
    content: "";
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 4em;
    color: rgba(0, 0, 0, 0.1);
}

.c-card-img {
    height: 100%;
    width: 100%;
    border-radius: 5%;
}

.c-card-content {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.c-content-title {
    text-align: center;
    font-size: 18px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-content-price {
    font-size: 24px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px
}

.c-content-buy-button {
    position: relative;
    top: 100px;
    opacity: 0;
    padding: 10px 30px;
    margin-top: 15px;
    color: var(--color-black);
    text-decoration: none;
    background: var(--color-white);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s;
}

.c-card-wrapper:hover .c-content-buy-button {
    top: 0;
    opacity: 1;
}

@media screen and  (max-width: 320px) {
    .c-content-buy-button {
        font-size: 12px;
    }
}