#main-container {
    animation: limeFadeIn 0.25s ease-in-out forwards;
}

@keyframes limeFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* .lime-series-wrapper {
    margin-bottom: 25px;
} */

.lime-series-title {
    font-family: 'Playfair Display', Sans-Serif;
    display: block;
    font-size: 18px;
    color: #552832;
    margin-bottom: 15px;
}

.lime-series-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lime-series-image-item {
    flex: 0 0 calc((100% - 30px) / 4); 
    display: block;
    /* width: 70px;
    height: 70px; */
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    aspect-ratio: 5 / 4;
}

.lime-series-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lime-series-image-item:not(.is-active):hover {
    transform: translateY(-2px);
    border-color: #adadad;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.lime-series-image-item.is-active {
    border: 2px solid #b39367;
    box-shadow: 0 2px 6px rgba(179, 147, 103, 0.2);
    cursor: default;
    pointer-events: none;
}