/* =========================
   Base Styles (default)
============================ */
.cat-details-container {
    background-color: white;
    font-family: "Cinzel Decorative", serif;;
    margin-top: 10vh;
    height: 90vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cat-details-image {
    height: 12rem;
    width: 12rem;
    border-radius: 8px;
}

.cat-details-text {
    font-size: 10px;
    width: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cat-name {
    font-size: 20px;
    font-weight: bold;
}

.cat-price {
    opacity: 0.7;
    margin-bottom: 1rem;
}

.cat-details-sub-text {
    display: flex;
}

.cat-detail-label {
    margin-right: 1rem;
}

.cat-detail {
    opacity: 0.8;
}

.cat-details-link {
    background-color: black;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.cat-details-link:hover {
    background-color: rgba(0, 0, 0, 0.408);
    transition: all 0.15s ease;
}

/* =========================
   Smallest phones (≥320px)
============================ */
@media (min-width: 320px) {
}

/* =========================
   Small devices (≥480px)
============================ */
@media (min-width: 480px) {
}

/* =========================
   Tablets (≥768px)
============================ */
@media (min-width: 768px) {
}

/* =========================
   Small desktops (≥992px)
============================ */
@media (min-width: 992px) {
    .cat-details-container {
        flex-direction: row;
    }

    .cat-name {
        font-size: 24px;
    }

    .cat-price {
        font-size: 20px;
    }

    .cat-details-image {
        height: 40rem;
        width: 40rem;
        margin-right: 3rem;
    }

    .cat-details-text {
        font-size: 14px;
        align-items: baseline;
    }

    .cat-details-link {
        text-align: center;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 5px;
        margin-right: 10rem;
        margin-top: 1rem;
    }
}

/* =========================
   Large desktops (≥1200px)
============================ */
@media (min-width: 1200px) {
}