body {
    background: #f4f6f8;
    font-family: "Titillium Web", sans-serif!important;
}
h1,
h2,
h3,
h4,
h5{
    font-family: "Titillium Web", sans-serif!important;
}
#top {
    padding: 50px 0;
}
#top .box {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
#top .box .left {
    width: 49%;
}
#top .box .right {
    width: 49%;
}

#top .image {
    height: 100%;
    width: 100%;
    background: #eef2f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
@media (max-width: 1200px) {
    #top .image {
        padding: 30px;
    }
}
#top .image img {
    aspect-ratio: 560/460;
    width: 320px;
}
@media (max-width: 576px) {
    #top .image img {
        max-width: 320px;
        width: 100%;
    }
}
#top .title {
    color: #18253C;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.status{
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
}
/* Approved */
.status.approved {
    background: #e7f5ec;
    color: #146c43;
}
/* Under Review */
.status.under-review {
    background: #fff4e5;
    color: #b45309;
}
/* In Progress */
.status.in-progress {
    background: #e8f1ff;
    color: #1d4ed8;
}
#top .desc {
    margin: 15px 0;
    color: #667085;
    font-size: 18px;
}
#top .msrp {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    color: #0b1f33;
    font-size: 26px;
    font-weight: 700;
}
#top .msrp p {
    font-size: 16px;
    color: #667085;
    margin: 0;
}
#top .msrp p:first-of-type {
    color: #667085;
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}
#top .inner {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
}
#top .inner .wrap {
    width: 49%;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    #top .inner .wrap {
        width: 100%;
    }
}
#top .inner .wrap p {
    color: #667085;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

#top .meta {
    margin-top: 20px;
}
#top .meta .wrap {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #667085;
}
#top .meta .wrap p {
    margin: 0 6px 0 0px;
    font-weight: 700;
}

#info{
    padding-bottom: 50px;
}

#info .wrap {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    height: 100%;
}
#info .wrap h2 {
    font-size: 22px;
    color: #0b1f33;
    font-weight: 700;
    margin-bottom: 20px;
}
#info .wrap ul {
    padding-left: 20px;
}
#info .wrap ul li {
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    #top .box {
        flex-direction: column;
    }
    #top .box .left {
        width: 100%;
        margin-bottom: 20px;
    }
    #top .box .right {
        width: 100%;
    }
}
@media (max-width: 576px) {
    #top .title {
        flex-direction: column;
        align-items: start;
    }
    #top .title .status {
        margin-top: 10px;
    }
}
