div[data-carousel-track] {
    padding-bottom: 40px;
    background: transparent;
}

.plus-btn {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 100;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.place-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--color-white);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 0 1rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.place-desc.open {
    max-height: 300px;
    padding: 0.75rem 1rem;
    overflow-y: auto;
}
.place-desc p {
    margin: 0;
    padding: 0;
}

.place-desc {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.place-desc::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}