#item-image-header-wrapper {
    position: relative;
    width: 100%;
    height: 15rem;
    margin-top: -2rem;
    margin-bottom: 1rem;
    display: block;
    z-index: 1;
    animation: fadeInDown 0.8s ease forwards;
}

#item-image-header-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-top: -2rem;
    margin-bottom: 1rem;
    display: block;
    
}

#item-image-header-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 85%, 
        #f9f9f9 100%);
}

#item-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1rem;
    font-size: 2.5rem;
}

.item-title {
    height: auto;
    margin-bottom: 0.5rem;
    font-size: 1em;
    font-weight: bold;
    color: #242424;
 }
 
 .item-description {
    height: auto;
    margin-bottom: 0.5rem;
    font-size: 0.5em;
    color: #242424;
 }

 .item-price {
    height: auto;
    margin-bottom: 0.5rem;
    font-size: 0.4em;
    font-style: italic;
    color: #242424;
 }
 
 .item-paragraph {
    width: 90%;
   max-width: 800px;
   margin: 0 auto;
   padding: 1rem;
   text-align: justify;
   font-size: 1.2rem;
   line-height: 1.6;
   color: #222;
   opacity: 0;
   animation: fadeInUp 0.8s ease forwards;
 }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}