.item-body{
    display: flex;
    flex-direction: column;
}

.item-profile{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: var(--spacer-2) var(--spacer-4);
    align-items: center;
}


.item-profile__avatar{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 0px;
}

.gallery {
    display: flex;
    flex-direction: row;
    gap: 0px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }

.gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
.gallery img { 
    width:100%; 
    height:390px; 
    object-fit:cover; 
    aspect-ratio: 1 / 1;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
}
.gallery-modal[hidden] { display: none; }
.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}
.gallery-modal__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.gallery-modal__scroller {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery-modal__scroller::-webkit-scrollbar { display: none; }
.gallery-modal__image {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}
.gallery-modal__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.gallery-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    border: 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}
.gallery-modal__counter {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 999px;
}
.no-scroll {
    overflow: hidden;
}

.listing-header{
    font-size: var(--spacer-6);
    line-height: var(--spacer-6);
    font-weight: 700;
}

.price-lg{
    font-size: var(--spacer-10);
    line-height: var(--spacer-10);
    font-weight: 700;
    color: var(--black1);
}

.item-info-wrapper{
    display: grid;
    grid-template-columns: auto auto auto;
}

.item-info{
    border-left: 1px solid var(--border1);
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-left: var(--spacer-2);
    width: 100%;
}
