#breadcrumb {
    font-size: 0.75rem;
    line-height: 1rem;
    position: fixed;
    left: 0;
    top: 3.25rem;
    background-color: #fff;
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07))
        drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    width: 100%;
}

#breadcrumb > div {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

#breadcrumb > div > div {
    display: inline;
}

#breadcrumb > div > div:nth-child(2) {
    margin-inline: 0.25rem;
}

#breadcrumb > div > div:first-child > i {
    color: rgb(220, 38, 38);
}

#breadcrumb > div > div:first-child > a {
    display: inline;
}

#item-info-container {
    margin-top: 2.5rem;
}

/* MAIN ITEM INFO */

#info-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

#info-main > div {
    width: 100%;
}

#item-info-banner {
    display: flex;
    background: linear-gradient(to right, #dd5e89, #f7bb97);
    padding: 0.75rem;
    border-radius: 0.5rem;
    height: 15rem;
    overflow: hidden;
}

#item-info-banner > div {
    display: flex;
    flex-direction: column;
}

#item-info-banner-first {
    gap: 0.5rem;
    justify-content: center;
}
#item-info-banner-last {
    flex: 1 1 0%;
    color: #fff;
}

#item-preview {
    aspect-ratio: 1 / 1;
    width: 100px;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

#item-preview > img {
    width: 100%;
}

#favorite {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #fff;
    justify-content: center;
}

#favorite > div:first-child {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
}

#favorite i {
    transition: color 300ms ease-in-out;
}

.isFavorite i {
    color: #c40808;
}

#item-info-banner-last > h2 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
    text-align: center;
}

#item-info-banner-last > div {
    overflow: auto;
    flex: 1 1 0%;
    height: 100%;
}

#item-info-banner-last > div > ul {
    margin-left: 1.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    list-style-type: disc;
}

#item-name {
    margin-top: 0.5rem;
}

#item-name h1 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

#rating-container {
    display: flex;
    margin-top: 0.5rem;
    gap: 0.5rem;
}

#rating {
    display: flex;
    gap: 1px;
    justify-content: flex-start;
    align-items: center;
    height: 1rem;
    color: rgb(234, 179, 8);
}

#rating-count {
    font-size: 0.75rem;
    line-height: 1rem;
}

#item-about {
    margin-top: 0;
    padding: 0.75rem 0.5rem;
    border-width: 1px;
    border-radius: 0.5rem;
    border-color: rgb(203, 213, 225);
}

#item-about > h2 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
}

#item-about > div {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(71, 85, 105);
}

#item-about-details > div {
    display: flex;
    margin-top: 0.5rem;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: flex-start;
}

#item-about-details > div > div:first-child {
    display: flex;
    padding-top: 0.25rem;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
}

#item-about-details > div > div:nth-child(2) {
    flex: 1 1 0%;
}

#item-colors {
    margin-top: 1rem;
}

#item-colors > h2 {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
}

#item-colors > div {
    display: flex;
    margin-top: 0.25rem;
    gap: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
}

#item-colors > div > button {
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    background-color: rgb(241, 245, 249);

    transition: outline 100ms ease-in-out;
}

#item-colors > div > button.active-color {
    outline: 2px solid rgb(239, 68, 68);
}

#item-price {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

#item-price > div {
    font-weight: 700;
    color: rgb(220, 38, 38);
}

#item-price > div > del {
    color: rgb(107, 114, 128);
}

#item-actions {
    margin-top: 1rem;
    color: #fff;
}

#item-actions > div {
    display: flex;
    gap: 0.5rem;
    height: 4rem;
}

#buy-now {
    display: flex;
    padding: 0.5rem;
    flex-direction: column;
    flex: 1 1 0%;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    text-align: center;
    background-color: rgb(239, 68, 68);
}

#buy-now > div:first-child {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

#buy-now > div:nth-child(2) {
    font-size: 0.75rem;
    line-height: 1rem;
}

#add-to-cart {
    display: flex;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    border-width: 2px;
    border-color: rgb(239, 68, 68);
    width: 4rem;
    color: rgb(239, 68, 68);
}

#add-to-cart > div:nth-child(2) {
    font-weight: 600;
    font-size: 8px;
}

/* ITEM DESCRIPTIONS */

#item-descriptions {
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    border-width: 1px;
    border-color: rgb(203, 213, 225);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#ddnb {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgb(243, 244, 246);
}

#ddnb > h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: rgb(220, 38, 38);
}

#ddnb > ul {
    margin-top: 0.25rem;
    margin-left: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    list-style-type: disc;
}

#short-description {
    padding-left: 0.75rem;
    margin-top: 1rem;
    border-color: rgb(209, 213, 219);
    border-left-width: 6px;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

#short-description > blockquote > p {
    text-align: justify;
}

#short-description > blockquote > p > a {
    color: rgb(220, 38, 38);
}

.desc-part {
    margin-top: 1rem;
}

.desc-part > h2 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.desc-part > p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: justify;
}

.desc-part > h2 + p {
    margin-top: 0.5rem;
}

.desc-part > img {
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin-inline: auto;
}

/* RESPONSIVE */

@media (min-width: 425px) {
    #item-preview {
        width: 140px;
    }
}

@media (min-width: 1024px) {
    #info-main {
        flex-direction: row;
    }

    #item-actions {
        margin-top: 2.5rem;
    }
}

@media (min-width: 1280px) {
}
