.collections_rowouter {
    width: 100%;
    height: 260px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border: 2px solid black;
    margin-bottom: 20px;
}

@media screen and (max-width: 875px) { 
    .collections_rowouter {
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        height: fit-content;
    }
}

.collections_leftouter {
    min-width: max-content;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

@media screen and (max-width: 875px) { 
    .collections_leftouter {
        max-width: 100%;
        min-width: unset;
        width: 100%;
        height: max-content;
        padding-right: 0px;
    }
}

.collections_leftinner {
    min-width: max-content;
    max-width: 300px;
    padding-left: 40px;
    box-sizing: border-box;
}

@media screen and (max-width: 1250px) { 
    .collections_leftinner {
        padding-left: 30px;
    }
}

@media screen and (max-width: 1000px) { 
    .collections_leftinner {
        padding-left: 24px;
    }
}

@media screen and (max-width: 875px) { 
    .collections_leftinner {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        height: max-content;
        padding-left: 0px;
    }
}

.collections_leftinner > h2 {
    width: max-content;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.4px;
    font-style: italic;
}

.collections_leftinner > h2:hover {
    text-decoration: underline;
    cursor: pointer;
}

.collections_leftinner > h4 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.4px;
    font-style: normal;
    margin-top: -20px;
    max-width: 100%;
}

@media screen and (max-width: 875px) { 
    .collections_leftinner > h2 {
        width: 100%;
        max-width: calc(100vw - 60px);
        height: max-content;
        line-height: 100%;
    }
    .collections_leftinner > h4 {
        width: 100%;
    }
}

.collections_rightouter {
    width: 100%;
    height: inherit;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    padding-top: 28px;
    padding-bottom: 28px;
    box-sizing: border-box;
}

@media screen and (max-width: 875px) { 
    .collections_rightouter {
        height: 200px;
        min-width: calc(100% + 40px);
        width: auto;
        margin-left: -20px;
        padding-left: 20px;
        margin-top: -20px;
    }
}

.collections_rightouter > img {
    margin-right: 20px;
    flex-shrink: 0; /* prevent shrinking */
    height: 100%; /* use full height of container */
    width: auto; /* maintain aspect ratio */
    max-height: 100%; /* ensure doesn't exceed container height */
    object-fit: contain; /* ensure no stretching occurs */
}

@media screen and (max-width: 875px) {
    .collections_rightouter > img {
        height: 144px; /* fixed height for mobile */
        width: auto;
        object-fit: contain;
    }
}

.load_more_container {
    text-align: center;
    margin: 40px 0;
    margin-top: 0px;
    padding: 20px;
}

.load_more_btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0px;
    transition: background-color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.load_more_btn:hover {
    background-color: #333;
}

